فهرست منبع

OSX: Remove unnecessary bits assignment

Rémi Verschelde 7 سال پیش
والد
کامیت
42c5af5e48
1فایلهای تغییر یافته به همراه1 افزوده شده و 4 حذف شده
  1. 1 4
      platform/osx/detect.py

+ 1 - 4
platform/osx/detect.py

@@ -55,13 +55,10 @@ def configure(env):
     elif (env["target"] == "debug"):
         env.Prepend(CCFLAGS=['-g3', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
 
-    ## Architecture
+    ## Compiler configuration
 
     # Mac OS X no longer runs on 32-bit since 10.7 which is unsupported since 2014
     # As such, we only support 64-bit
-    env["bits"] == "64"
-
-    ## Compiler configuration
 
     if "OSXCROSS_ROOT" not in os.environ: # regular native build
         env.Append(CCFLAGS=['-arch', 'x86_64'])