summaryrefslogtreecommitdiffhomepage
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-02-22 04:39:46 +0000
committermidipix <writeonce@midipix.org>2024-02-22 04:48:31 +0000
commit4c3598a30c33daf9e49c1db9db01a32b70f3e5a6 (patch)
treeb819f255b4d835e2fa74b465c7f4f9d7e540324d /sofort
parent884a87e3f407ec29969c45d8d2c28f34eed3cf6e (diff)
downloadslibtool-4c3598a30c33daf9e49c1db9db01a32b70f3e5a6.tar.bz2
slibtool-4c3598a30c33daf9e49c1db9db01a32b70f3e5a6.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.sh14
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()