targets/Win32/__init__.py
author Edouard Tisserant
Tue, 24 May 2011 00:36:08 +0200
changeset 606 780bd150ebba
parent 290 3bd617ae7a05
child 621 a3ce93d63832
permissions -rwxr-xr-x
Fixed runtime with twisted but without Wx (-x 0 -t 1), made non-Zeroconf a default option, i.e when -n not specified
from .. import toolchain_gcc

class Win32_target(toolchain_gcc):
    extension = ".dll"
    def getBuilderLDFLAGS(self):
        return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared",
                     "-Wl,--export-all-symbols",
                     "-Wl,--enable-auto-import",
                     "-Wl,--whole-archive",
                     "-Wl,--no-whole-archive",
                     "-Wl,--exclude-libs,All"]