targets/Win32/__init__.py
author etisserant
Tue, 30 Dec 2008 22:43:48 +0100
changeset 283 d0e6fc0701fb
parent 203 cb9901076a21
child 290 3bd617ae7a05
permissions -rwxr-xr-x
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
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"]