diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 14:12:02 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 14:15:06 +0000 |
commit | 187d762e16fa539c802c618f9ce66c9e3da7a980 (patch) | |
tree | 4fca10fc7daf5b7b757d46786018e58ee5ee8f4d | |
parent | 05c9d4eb29be6112f68f5786385df1c6c0dcd02e (diff) | |
download | ntcon-187d762e16fa539c802c618f9ce66c9e3da7a980.tar.bz2 ntcon-187d762e16fa539c802c618f9ce66c9e3da7a980.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 |