Skip to content

Commit 8b16fcc

Browse files
Disable exception handling in Xcode build
Now that muparser no longer relies on exceptions, we can disable them again.
1 parent 11e6cfe commit 8b16fcc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

fish.xcodeproj/project.pbxproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,6 @@
379379
D068222E1F5149B500040321 /* muParserDLL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D06822251F51498700040321 /* muParserDLL.cpp */; };
380380
D068222F1F5149B500040321 /* muParserError.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D06822261F51498700040321 /* muParserError.cpp */; };
381381
D06822301F5149B500040321 /* muParserInt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D06822271F51498700040321 /* muParserInt.cpp */; };
382-
D06822311F5149B500040321 /* muParserTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D06822281F51498700040321 /* muParserTest.cpp */; };
383382
D06822321F5149B500040321 /* muParserTokenReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D06822291F51498700040321 /* muParserTokenReader.cpp */; };
384383
D07B247315BCC15700D4ADB4 /* add-shell in Resources */ = {isa = PBXBuildFile; fileRef = D07B247215BCC15700D4ADB4 /* add-shell */; };
385384
D07B247615BCC4BE00D4ADB4 /* install.sh in Resources */ = {isa = PBXBuildFile; fileRef = D07B247515BCC4BE00D4ADB4 /* install.sh */; };
@@ -822,7 +821,6 @@
822821
D06822251F51498700040321 /* muParserDLL.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = muParserDLL.cpp; sourceTree = "<group>"; };
823822
D06822261F51498700040321 /* muParserError.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = muParserError.cpp; sourceTree = "<group>"; };
824823
D06822271F51498700040321 /* muParserInt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = muParserInt.cpp; sourceTree = "<group>"; };
825-
D06822281F51498700040321 /* muParserTest.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = muParserTest.cpp; sourceTree = "<group>"; };
826824
D06822291F51498700040321 /* muParserTokenReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = muParserTokenReader.cpp; sourceTree = "<group>"; };
827825
D07B247215BCC15700D4ADB4 /* add-shell */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = "add-shell"; path = "build_tools/osx_package_scripts/add-shell"; sourceTree = "<group>"; };
828826
D07B247515BCC4BE00D4ADB4 /* install.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = install.sh; path = osx/install.sh; sourceTree = "<group>"; };
@@ -1082,7 +1080,6 @@
10821080
D06822251F51498700040321 /* muParserDLL.cpp */,
10831081
D06822261F51498700040321 /* muParserError.cpp */,
10841082
D06822271F51498700040321 /* muParserInt.cpp */,
1085-
D06822281F51498700040321 /* muParserTest.cpp */,
10861083
D06822291F51498700040321 /* muParserTokenReader.cpp */,
10871084
);
10881085
path = src;
@@ -1930,7 +1927,6 @@
19301927
D068222E1F5149B500040321 /* muParserDLL.cpp in Sources */,
19311928
D068222F1F5149B500040321 /* muParserError.cpp in Sources */,
19321929
D06822301F5149B500040321 /* muParserInt.cpp in Sources */,
1933-
D06822311F5149B500040321 /* muParserTest.cpp in Sources */,
19341930
D06822321F5149B500040321 /* muParserTokenReader.cpp in Sources */,
19351931
);
19361932
runOnlyForDeploymentPostprocessing = 0;
@@ -2432,6 +2428,7 @@
24322428
DEBUG_INFORMATION_FORMAT = dwarf;
24332429
ENABLE_STRICT_OBJC_MSGSEND = YES;
24342430
ENABLE_TESTABILITY = YES;
2431+
GCC_ENABLE_CPP_EXCEPTIONS = NO;
24352432
GCC_ENABLE_CPP_RTTI = YES;
24362433
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
24372434
GCC_NO_COMMON_BLOCKS = YES;
@@ -2485,6 +2482,7 @@
24852482
DEAD_CODE_STRIPPING = YES;
24862483
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
24872484
ENABLE_STRICT_OBJC_MSGSEND = YES;
2485+
GCC_ENABLE_CPP_EXCEPTIONS = NO;
24882486
GCC_ENABLE_CPP_RTTI = YES;
24892487
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
24902488
GCC_NO_COMMON_BLOCKS = YES;

0 commit comments

Comments
 (0)