diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 13:45:53 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 14:55:59 +0000 |
commit | 53aca8ae2203e6b2d064e5a89ced0c1730c08b79 (patch) | |
tree | 78d5b95da12d0f17518a37ec786a8da9b4e7f73b /sofort | |
parent | bfe912a66f28daac6530cbd413fc4010f065772e (diff) | |
download | ntcon-53aca8ae2203e6b2d064e5a89ced0c1730c08b79.tar.bz2 ntcon-53aca8ae2203e6b2d064e5a89ced0c1730c08b79.tar.xz |
build system: ccenv: added and integrated ccenv_set_cc_sysroot_vars().
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 99a98ef..cf45cb2 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -1495,6 +1495,35 @@ ccenv_output_defs() eval 'ccenv_'${ccenv_cfgtype}'_pkgconf'=\'$ccenv_pkgconf\' } +ccenv_set_cc_sysroot_vars() +{ + if [ "$ccenv_cfgtype" = 'native' ] || [ -z "$mb_sysroot" ]; then + return 0 + fi + + cfgtest_host_section + ccenv_switch_var="--sysroot=${mb_sysroot}" + + if cfgtest_compiler_switch_arg "${ccenv_switch_var}"; then + printf '\n# %s sysroot: cflags and ldflags\n' "$ccenv_cfgtype" \ + >> "$ccenv_mk" + + for ccenv_make_var in '_CFLAGS_SYSROOT' '_LDFLAGS_SYSROOT'; do + printf '%-40s= %s\n' "${ccenv_make_var}" "${ccenv_switch_var}" \ + >> "$ccenv_mk" + done + else + printf '\n# %s sysroot: cflags and ldflags %s\n' "$ccenv_cfgtype" \ + '(not supported: see config.log)' \ + >> "$ccenv_mk" + + for ccenv_make_var in '_CFLAGS_SYSROOT' '_LDFLAGS_SYSROOT'; do + printf '%-40s=\n' "${ccenv_make_var}" \ + >> "$ccenv_mk" + done + fi +} + ccenv_set_cc_switch_vars() { printf '\n# %s cflags: supported compiler switches\n' "$ccenv_cfgtype" \ @@ -1707,6 +1736,7 @@ ccenv_set_toolchain_variables() ccenv_output_defs ccenv_clean_up + ccenv_set_cc_sysroot_vars ccenv_set_cc_switch_vars ccenv_set_cc_linker_switch_vars } |