From 23b819a3ccf8ee640b04450685fe859ed9ee05a9 Mon Sep 17 00:00:00 2001 From: midipix Date: Jun 12 2021 12:15:43 +0000 Subject: build system: configure: config_ccenv(): require --sysroot when cross-compiling. --- diff --git a/configure b/configure index d2283e0..e324f8d 100755 --- a/configure +++ b/configure @@ -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()