author | Laurent Bessard |
Wed, 08 May 2013 23:31:12 +0200 | |
changeset 1101 | 5a0b439cf576 |
parent 685 | 2db8b87016a0 |
child 1279 | 0eb9f8af479f |
permissions | -rwxr-xr-x |
642 | 1 |
from ..toolchain_gcc import toolchain_gcc |
203 | 2 |
|
3 |
class Win32_target(toolchain_gcc): |
|
4 |
extension = ".dll" |
|
290
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
203
diff
changeset
|
5 |
def getBuilderLDFLAGS(self): |
685 | 6 |
return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lwinmm"] |