diff options
author | Chris Packham <judge.packham@gmail.com> | 2025-01-03 16:36:10 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2025-01-05 12:01:29 +1300 |
commit | 5014530b4f53fb64eab17d4930490bfc22f45ac3 (patch) | |
tree | 52c3a05c0b9d9551bbc68bbaf4af2962c3ec3dce | |
parent | 649de5f013a426dba4d78148c051e4923eb5b247 (diff) | |
download | crosstool-ng-5014530b4f53fb64eab17d4930490bfc22f45ac3.tar.gz crosstool-ng-5014530b4f53fb64eab17d4930490bfc22f45ac3.tar.bz2 crosstool-ng-5014530b4f53fb64eab17d4930490bfc22f45ac3.zip |
gcc: Support plugins in core gcc compiler
When building for bare metal only do_gcc_core_backend() is used. In
order to support GCC plugins the --enable-plugin needs to be passed to
GCC's configure.
Fixes #2244
Signed-off-by: Chris Packham <judge.packham@gmail.com>
-rw-r--r-- | scripts/build/cc/gcc.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 5a60bc78..2d57459b 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -511,6 +511,12 @@ do_gcc_core_backend() { *) extra_config+=( "--enable-decimal-float=${CT_CC_GCC_DEC_FLOATS}" );; esac + if [ "${CT_CC_GCC_ENABLE_PLUGINS}" = "y" ]; then + extra_config+=( --enable-plugin ) + else + extra_config+=( --disable-plugin ) + fi + case "${CT_ARCH}" in mips) case "${CT_CC_GCC_mips_llsc}" in |