diff options
author | midipix <writeonce@midipix.org> | 2018-12-13 01:58:34 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-13 11:23:57 -0500 |
commit | a02dd0ecb99a1f949c832439fe0fef312701fd45 (patch) | |
tree | f39e070d5271e98ff7afc416938b216ef46e947e /configure | |
parent | 95564ebd3f2d144a75f37c57c5a58e44d2bb7ce6 (diff) | |
download | apimagic-a02dd0ecb99a1f949c832439fe0fef312701fd45.tar.bz2 apimagic-a02dd0ecb99a1f949c832439fe0fef312701fd45.tar.xz |
built system: added the NATIVE_CC_{CFGHOST|CFLAGS|LDFLAGS} variables.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -138,6 +138,9 @@ init_vars() # overrides mb_native_cc=$NATIVE_CC mb_native_cc_host=$NATIVE_CC_HOST + mb_native_cc_cfghost=$NATIVE_CC_CFGHOST + mb_native_cc_cflags=$NATIVE_CC_CFLAGS + mb_native_cc_ldflags=$NATIVE_CC_LDFLAGS mb_native_os=$NATIVE_OS mb_native_os_bits=$NATIVE_OS_BITS @@ -365,7 +368,8 @@ native_defaults() fi if [ -z "$mb_native_cc_host" ]; then - mb_native_cc_host=$($mb_project_dir/sysinfo/host/host.sh --compiler=$mb_native_cc) + mb_native_cc_host=$($mb_project_dir/sysinfo/host/host.sh \ + --compiler=$mb_native_cc --cflags="$mb_native_cc_cflags") fi if [ -z "$mb_compiler" ]; then @@ -553,6 +557,9 @@ config_copy() \ -e 's^@native_cc@^'"$mb_native_cc"'^g' \ -e 's^@native_cc_host@^'"$mb_native_cc_host"'^g' \ + -e 's^@native_cc_cfghost@^'"$mb_native_cc_cfghost"'^g' \ + -e 's^@native_cc_cflags@^'"$mb_native_cc_cflags"'^g' \ + -e 's^@native_cc_ldflags@^'"$mb_native_cc_ldflags"'^g' \ \ -e 's^@native_os@^'"$mb_native_os"'^g' \ -e 's^@native_os_bits@^'"$mb_native_os_bits"'^g' \ |