targets/Win32/__init__.py
author lbessard
Wed, 10 Sep 2008 16:44:27 +0200 (2008-09-10)
changeset 252 5c8167203f6e
parent 203 cb9901076a21
child 290 3bd617ae7a05
permissions -rwxr-xr-x
Bug with FBDPanel fixed
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"]