diff options
Diffstat (limited to 'build')
-rwxr-xr-x | build | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -45,16 +45,16 @@ common_opts = \ --with-nls \ --with-sysroot="$${OPK_SYSROOT}" \ --disable-libquadmath \ - $(target_opts) + $(target_opts) \ + $(extra_opts) full_opts = \ - $(common_opts) \ --enable-shared \ --enable-threads=posix \ --enable-languages=c,c++ + $(common_opts) bootstrap1_opts = \ - $(common_opts) \ --without-headers \ --with-newlib \ --disable-shared \ @@ -62,6 +62,7 @@ bootstrap1_opts = \ --enable-languages=c,c++ \ --disable-libgomp \ --disable-libssp + $(common_opts) # Abbreviation for build-gcc-config tm = src/gcc/config @@ -109,12 +110,10 @@ configure-native configure-cross: set -e; \ if [ 'x$(OPK_HOST_PLAT)' = 'xbootstrap1' ]; then \ oh-autoconfigure -B "$(builddir)" -t "$(target)" -- \ - $(bootstrap1_opts) \ - $(extra_opts); \ + $(bootstrap1_opts); \ else \ oh-autoconfigure -B "$(builddir)" -t "$(target)" -- \ - $(full_opts) \ - $(extra_opts); \ + $(full_opts); \ fi # This rule sets (host- and) target-dependent paths in files in gcc/config. |