From 15426309b3a85ad9365398c880a86c354b4def3f Mon Sep 17 00:00:00 2001 From: Sam Surtees Date: Sun, 15 Apr 2018 22:24:32 +1000 Subject: [PATCH] Fixed issue with floatingpoint "Strict" causing errors in XCode --- modules/xcode/tests/test_xcode_project.lua | 3 --- modules/xcode/xcode_common.lua | 1 - 2 files changed, 4 deletions(-) diff --git a/modules/xcode/tests/test_xcode_project.lua b/modules/xcode/tests/test_xcode_project.lua index 51c245e5..f2d2498e 100644 --- a/modules/xcode/tests/test_xcode_project.lua +++ b/modules/xcode/tests/test_xcode_project.lua @@ -1610,9 +1610,6 @@ GCC_WARN_UNUSED_VARIABLE = YES; OBJROOT = obj/Debug; ONLY_ACTIVE_ARCH = NO; - OTHER_CFLAGS = ( - "-ffloat-store", - ); SYMROOT = bin/Debug; }; name = Debug; diff --git a/modules/xcode/xcode_common.lua b/modules/xcode/xcode_common.lua index 1fe58ba9..3d73a959 100644 --- a/modules/xcode/xcode_common.lua +++ b/modules/xcode/xcode_common.lua @@ -1144,7 +1144,6 @@ -- build list of "other" C/C++ flags local checks = { ["-ffast-math"] = cfg.floatingpoint == "Fast", - ["-ffloat-store"] = cfg.floatingpoint == "Strict", ["-fomit-frame-pointer"] = cfg.flags.NoFramePointer, }