diff options
author | midipix <writeonce@midipix.org> | 2021-05-31 09:19:57 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-31 09:58:20 +0000 |
commit | d38354d7eb294b4f33ddd385806d77f4dafd0aa8 (patch) | |
tree | c7fe7129ce8deb43dd7d5615cec2a8af184b5ff9 | |
parent | fe9ab623e2c5663e0cda56f215ba47b2bacf6c64 (diff) | |
download | w32lib-d38354d7eb294b4f33ddd385806d77f4dafd0aa8.tar.bz2 w32lib-d38354d7eb294b4f33ddd385806d77f4dafd0aa8.tar.xz |
build system: configure: config_host(): added freestanding environment support.
-rwxr-xr-x | configure | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -859,8 +859,22 @@ config_host() mb_cfghost_cflags="${mb_cfghost_cflags#*: }" - printf 'int main(void){return 0;}' \ - > "$mb_cfghost_tmpname" + if [ $mb_cc_environment = 'freestanding' ]; then + if [ -z "mb_cc_underscore" ]; then + mb_cfghost_start_fn='_start' + else + mb_cfghost_start_fn='start' + fi + + printf 'int %s(void){return 0;}' "$mb_cfghost_start_fn" \ + > "$mb_cfghost_tmpname" + + mb_cfghost_cflags="$mb_cfghost_cflags -ffreestanding" + mb_cfghost_cflags="$mb_cfghost_cflags -nostdlib" + else + printf 'int main(void){return 0;}' \ + > "$mb_cfghost_tmpname" + fi # log printf '\n' >&3 |