targets/Win32/__init__.py
changeset 1279 0eb9f8af479f
parent 685 2db8b87016a0
child 1511 91538d0c242c
equal deleted inserted replaced
1278:74afc7e86d00 1279:0eb9f8af479f
     1 from ..toolchain_gcc import toolchain_gcc
     1 from ..toolchain_gcc import toolchain_gcc
     2 
     2 
     3 class Win32_target(toolchain_gcc):
     3 class Win32_target(toolchain_gcc):
       
     4     dlopen_prefix = ""
     4     extension = ".dll"
     5     extension = ".dll"
     5     def getBuilderLDFLAGS(self):
     6     def getBuilderLDFLAGS(self):
     6         return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lwinmm"]
     7         return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lwinmm"]