summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-12 11:56:43 +0000
committermidipix <writeonce@midipix.org>2021-06-12 12:15:41 +0000
commit4b12b085fb07512d9a94c8ef1863f7b7f1157a60 (patch)
treecdda14e2a78d802ce469d6b9b89b3e6b2a698ecd
parent9185e5033e205766fd775a81feb685e5753d7052 (diff)
downloadbcparser-4b12b085fb07512d9a94c8ef1863f7b7f1157a60.tar.bz2
bcparser-4b12b085fb07512d9a94c8ef1863f7b7f1157a60.tar.xz
build system: configure: LDFLAGS_LAST: refined cross-compilation logic.
-rwxr-xr-xconfigure16
1 files changed, 13 insertions, 3 deletions
diff --git a/configure b/configure
index e324f8d..0982754 100755
--- a/configure
+++ b/configure
@@ -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