diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 14:12:02 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 14:15:07 +0000 |
commit | 761d7a4f74fdb642d42f859bd7d3608f6acc46cf (patch) | |
tree | dde74ad7fce9e5f445885ba7d2220d1b190e9e76 | |
parent | 2b98b4615758d3c28ec5413119904c785816d744 (diff) | |
download | sbmake-761d7a4f74fdb642d42f859bd7d3608f6acc46cf.tar.bz2 sbmake-761d7a4f74fdb642d42f859bd7d3608f6acc46cf.tar.xz |
build system: configure: config_ccenv(): refined --sysroot related logic.
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -846,15 +846,18 @@ config_ccenv() exit 2 fi - # add the library directory to the linker library path + # add the include and library directories to the compiler and linker search path if [ "$mb_cchost" = "$mb_native_cchost" ]; then + mb_cflags_last="$mb_cflags_last -I$mb_includedir" mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" else case "$mb_libdir" in /*) + mb_ldflags_last="$mb_cflags_last -I$mb_sysroot/.$mb_includedir" mb_ldflags_last="$mb_ldflags_last -L$mb_sysroot/.$mb_libdir" ;; *) + mb_ldflags_last="$mb_cflags_last -I$mb_includedir" mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" esac fi |