From 42c5af5e48c1e74a53bb773d7068bf61953231a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 19 Feb 2018 23:33:33 +0100 Subject: [PATCH] OSX: Remove unnecessary bits assignment --- platform/osx/detect.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 3237cef7115..33faea0082f 100644 --- a/platform/osx/detect.py +++ b/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'])