targets/Win32/__init__.py
changeset 3799 2b995a4963a4
parent 3750 f62625418bff
equal deleted inserted replaced
3798:e0117f4b0ff1 3799:2b995a4963a4
    29 
    29 
    30 class Win32_target(toolchain_gcc):
    30 class Win32_target(toolchain_gcc):
    31     dlopen_prefix = ""
    31     dlopen_prefix = ""
    32     extension = ".dll"
    32     extension = ".dll"
    33 
    33 
       
    34     def getBuilderCFLAGS(self):
       
    35         return toolchain_gcc.getBuilderCFLAGS(self) + \
       
    36             ["-Wno-implicit-function-declaration", "-Wno-int-conversion"]
       
    37 
    34     def getBuilderLDFLAGS(self):
    38     def getBuilderLDFLAGS(self):
    35         return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lwinmm"]
    39         return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lwinmm"]