diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 11:56:43 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 12:15:45 +0000 |
commit | fe21e823b69709f72fbe626d4c8d3aba373ab117 (patch) | |
tree | d1fc85edd9b2f6b0e9e3b2c592721f5213960fd7 /configure | |
parent | c92f25951c424b57564f1810d7094e9098f81024 (diff) | |
download | sbpython2-fe21e823b69709f72fbe626d4c8d3aba373ab117.tar.bz2 sbpython2-fe21e823b69709f72fbe626d4c8d3aba373ab117.tar.xz |
build system: configure: LDFLAGS_LAST: refined cross-compilation logic.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -693,9 +693,6 @@ common_defaults() mb_cflags_cmdline="$mb_cflags_cmdline $mb_cflags" mb_ldflags_cmdline="$mb_ldflags_cmdline $mb_ldflags" - # add the prefix's library directory to the linker library path - mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" - # step epilog output_step_epilog } @@ -823,6 +820,19 @@ config_ccenv() exit 2 fi + # add the library directory to the linker library path + if [ "$mb_cchost" = "$mb_native_cchost" ]; then + mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" + else + case "$mb_libdir" in + /*) + mb_ldflags_last="$mb_ldflags_last -L$mb_sysroot/.$mb_libdir" + ;; + *) + mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" + esac + fi + # re-generate Makefile.tmp output_section_break config_copy |