targets/Win32/__init__.py
changeset 203 cb9901076a21
child 290 3bd617ae7a05
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/targets/Win32/__init__.py	Wed Aug 20 00:11:40 2008 +0200
@@ -0,0 +1,10 @@
+from .. import toolchain_gcc
+
+class Win32_target(toolchain_gcc):
+    extension = ".dll"
+    CustomLDFLAGS = ["-shared",
+                     "-Wl,--export-all-symbols",
+                     "-Wl,--enable-auto-import",
+                     "-Wl,--whole-archive",
+                     "-Wl,--no-whole-archive",
+                     "-Wl,--exclude-libs,All"]