diff options
author | midipix <writeonce@midipix.org> | 2018-12-02 20:32:30 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-10 20:35:57 -0500 |
commit | 543a15487016fc3fd712503111e93d47a7fd088e (patch) | |
tree | d1958adb8fe2dcdecbf9a036a22367f01c788a82 /configure | |
parent | 15f733779f4046b689c4553dfaaa192b2df160cb (diff) | |
download | slibtool-543a15487016fc3fd712503111e93d47a7fd088e.tar.bz2 slibtool-543a15487016fc3fd712503111e93d47a7fd088e.tar.xz |
build system: added NATIVE_CC_HOST support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -113,6 +113,8 @@ init_vars() # overrides mb_native_cc=$NATIVE_CC + mb_native_cc_host=$NATIVE_CC_HOST + mb_native_os=$NATIVE_OS mb_native_os_bits=$NATIVE_OS_BITS mb_native_os_underscore=$NATIVE_OS_UNDERSCORE @@ -346,6 +348,10 @@ native_defaults() mb_native_cc='false' fi + if [ -z "$mb_native_cc_host" ]; then + mb_native_cc_host=$($mb_project_dir/sysinfo/host/host.sh --compiler=$mb_native_cc) + fi + if [ -z "$mb_compiler" ]; then $mb_native_cc -dM -E - < /dev/null | grep -q '__clang__' && mb_compiler='clang' fi @@ -530,6 +536,8 @@ config_copy() -e 's^@psdir@^'"$mb_psdir"'^g' \ \ -e 's^@native_cc@^'"$mb_native_cc"'^g' \ + -e 's^@native_cc_host@^'"$mb_native_cc_host"'^g' \ + \ -e 's^@native_os@^'"$mb_native_os"'^g' \ -e 's^@native_os_bits@^'"$mb_native_os_bits"'^g' \ -e 's^@native_os_underscore@^'"$mb_native_os_underscore"'^g' \ |