targets/Win32/__init__.py
author etisserant
Tue, 23 Dec 2008 19:30:45 +0100 (2008-12-23)
changeset 278 38b0da8672e1
parent 203 cb9901076a21
child 290 3bd617ae7a05
permissions -rwxr-xr-x
Updated splash
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"]