targets/Win32/__init__.py
author greg
Mon, 15 Dec 2008 08:41:16 +0100
changeset 276 0d7426f26c6f
parent 203 cb9901076a21
child 290 3bd617ae7a05
permissions -rwxr-xr-x
fixed : MAX_SEM_COUNT to 1 instead of 10
remove ReleaseSemaphore on debug_sem in InitiateDebugTransfer function
203
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     1
from .. import toolchain_gcc
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     2
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     3
class Win32_target(toolchain_gcc):
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     4
    extension = ".dll"
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     5
    CustomLDFLAGS = ["-shared",
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     6
                     "-Wl,--export-all-symbols",
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     7
                     "-Wl,--enable-auto-import",
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     8
                     "-Wl,--whole-archive",
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     9
                     "-Wl,--no-whole-archive",
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    10
                     "-Wl,--exclude-libs,All"]