targets/OSX/__init__.py
branchpython3
changeset 3779 31c9409a5841
parent 3778 296e459efdfb
child 3799 2b995a4963a4
--- a/targets/OSX/__init__.py	Wed Nov 09 17:29:59 2022 +0800
+++ b/targets/OSX/__init__.py	Wed Nov 09 22:17:13 2022 +0800
@@ -23,7 +23,6 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 
-
 from ..toolchain_gcc import toolchain_gcc
 
 
@@ -33,8 +32,9 @@
 
     def getBuilderCFLAGS(self):
         return toolchain_gcc.getBuilderCFLAGS(self) + \
-                ["-fPIC", "-Wno-deprecated-declarations",
-                 "-Wno-parentheses-equality", "-Wno-varargs"]
+            ["-fPIC", "-Wno-deprecated-declarations",
+             "-Wno-implicit-function-declaration", "-Wno-int-conversion",
+             "-Wno-parentheses-equality", "-Wno-varargs"]
 
     def getBuilderLDFLAGS(self):
         return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared"]