diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 11:49:54 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 12:15:41 +0000 |
commit | 801c9fc532625dc0bd05f62c769a683e5b6ab0e3 (patch) | |
tree | 51d03454ffb9604292fbfffbe8f888cb827a2323 | |
parent | 97b9f8b394ea8a1547e7eec4fc0f392df8f626cf (diff) | |
download | apimagic-801c9fc532625dc0bd05f62c769a683e5b6ab0e3.tar.bz2 apimagic-801c9fc532625dc0bd05f62c769a683e5b6ab0e3.tar.xz |
build system: configure: config_ccenv(): require --sysroot when cross-compiling.
-rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -816,8 +816,17 @@ config_ccenv() output_section_break ccenv_set_native_variables + # require --sysroot when cross-compiling + if [ "$mb_cchost" != "$mb_native_cchost" ] && [ -z "$mb_sysroot" ]; then + error_msg ' !!' + error_msg "$mb_package: --sysroot is required when cross-compiling." + exit 2 + fi + + # re-generate Makefile.tmp output_section_break config_copy + } config_custom_cfgdefs() |