diff options
author | midipix <writeonce@midipix.org> | 2024-02-22 04:39:46 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-22 04:52:46 +0000 |
commit | 7435d59eb47166f149982bbe3e4de2e6b2ce3ae5 (patch) | |
tree | 2e0cf7e0839049e7065420606988eff38d21cf15 /sofort | |
parent | 9f92707b83632f43aef44f735ad4f7b427b8a435 (diff) | |
download | bautomake-7435d59eb47166f149982bbe3e4de2e6b2ce3ae5.tar.bz2 bautomake-7435d59eb47166f149982bbe3e4de2e6b2ce3ae5.tar.xz |
build system: ccenv.sh: legacy PE targets: define __PE__ and friends as needed.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 0f7f486..30e28fd 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -1412,6 +1412,20 @@ ccenv_set_os_pe_switches() ;; esac fi + + if [ "$ccenv_cc_binfmt" = 'PE' ]; then + if ! cfgtest_macro_definition '__PE__'; then + ccenv_cflags_os="${ccenv_cflags_os} -D__PE__" + fi + + if ! cfgtest_macro_definition '__dllexport'; then + ccenv_cflags_os="${ccenv_cflags_os} -D__dllexport=__attribute__\(\(__dllexport__\)\)" + fi + + if ! cfgtest_macro_definition '__dllimport'; then + ccenv_cflags_os="${ccenv_cflags_os} -D__dllimport=__attribute__\(\(__dllimport__\)\)" + fi + fi } ccenv_output_defs() |