mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
kbuild: simplify GCC_PLUGINS enablement in dummy-tools/gcc
With commit 1e860048c5
("gcc-plugins: simplify GCC plugin-dev
capability test") applied, this hunk can be way simplified because
now scripts/gcc-plugins/Kconfig only checks plugin-version.h
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
1cabe74f14
commit
f4c3b83b75
1 changed files with 3 additions and 7 deletions
|
@ -75,16 +75,12 @@ if arg_contain -S "$@"; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# For scripts/gcc-plugin.sh
|
# To set GCC_PLUGINS
|
||||||
if arg_contain -print-file-name=plugin "$@"; then
|
if arg_contain -print-file-name=plugin "$@"; then
|
||||||
plugin_dir=$(mktemp -d)
|
plugin_dir=$(mktemp -d)
|
||||||
|
|
||||||
sed -n 's/.*#include "\(.*\)"/\1/p' $(dirname $0)/../gcc-plugins/gcc-common.h |
|
mkdir -p $plugin_dir/include
|
||||||
while read header
|
touch $plugin_dir/include/plugin-version.h
|
||||||
do
|
|
||||||
mkdir -p $plugin_dir/include/$(dirname $header)
|
|
||||||
touch $plugin_dir/include/$header
|
|
||||||
done
|
|
||||||
|
|
||||||
echo $plugin_dir
|
echo $plugin_dir
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue