diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-12-28 17:05:46 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-12-28 17:05:46 +0100 |
commit | af32c9331b94654384e67c748642e014fd357e94 (patch) | |
tree | 126129f7b0114e57073a7d47604e080f21afe542 | |
parent | 6c47c0077a1ba740c61ca7d099c31fe87b2da2a5 (diff) | |
download | crosstool-ng-af32c9331b94654384e67c748642e014fd357e94.tar.gz crosstool-ng-af32c9331b94654384e67c748642e014fd357e94.tar.bz2 crosstool-ng-af32c9331b94654384e67c748642e014fd357e94.zip |
libc/glibc: cleanup CFLAGS handling
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-rw-r--r-- | scripts/build/libc/glibc-eglibc.sh-common | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/build/libc/glibc-eglibc.sh-common b/scripts/build/libc/glibc-eglibc.sh-common index c3fb06fc..e4bb354d 100644 --- a/scripts/build/libc/glibc-eglibc.sh-common +++ b/scripts/build/libc/glibc-eglibc.sh-common @@ -310,17 +310,11 @@ do_libc_backend_once() { cross_cc=$(CT_Which "${CT_TARGET}-gcc") extra_cc_args+=" ${extra_flags}" - CT_DoLog DEBUG "Using gcc for target : '${cross_cc}'" - CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'" - CT_DoLog DEBUG "Extra config args passed: '${extra_config[*]}'" - CT_DoLog DEBUG "Extra CC args passed : '${extra_cc_args}'" - CT_DoLog DEBUG "Extra flags (multilib) : '${extra_flags}'" - - glibc_cflags="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} ${OPTIMIZE}" case "${CT_LIBC_ENABLE_FORTIFIED_BUILD}" in y) ;; *) glibc_cflags+=" -U_FORTIFY_SOURCE";; esac + glibc_cflags+=" ${CT_TARGET_CFLAGS} ${OPTIMIZE} ${CT_LIBC_GLIBC_EXTRA_CFLAGS}" # ./configure is mislead by our tools override wrapper for bash # so just tell it where the real bash is _on_the_target_! @@ -345,6 +339,12 @@ do_libc_backend_once() { # Run explicitly through CONFIG_SHELL, or the build breaks badly (loop-of-death) # when the shell is not bash... Sigh... :-( + CT_DoLog DEBUG "Using gcc for target : '${cross_cc}'" + CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'" + CT_DoLog DEBUG "Extra config args passed: '${extra_config[*]}'" + CT_DoLog DEBUG "Extra CC args passed : '${glibc_cflags}'" + CT_DoLog DEBUG "Extra flags (multilib) : '${extra_flags}'" + CT_DoExecLog CFG \ BUILD_CC="${CT_BUILD}-gcc" \ CFLAGS="${glibc_cflags}" \ |