Skip to content

Commit

Permalink
Merge pull request godotengine#83088 from bruvzg/ios_pre_xc15
Browse files Browse the repository at this point in the history
[iOS] Fix build on Xcode 14 and older.
  • Loading branch information
akien-mga committed Oct 10, 2023
2 parents fb6dc8c + 09d5120 commit b931a6e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions misc/dist/ios_xcode/godot_ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,13 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
OTHER_LDFLAGS = "-ld_classic $linker_flags";
"LD_CLASSIC_1000" = "";
"LD_CLASSIC_1100" = "";
"LD_CLASSIC_1200" = "";
"LD_CLASSIC_1300" = "";
"LD_CLASSIC_1400" = "";
"LD_CLASSIC_1500" = "-ld_classic";
OTHER_LDFLAGS = "$(LD_CLASSIC_$(XCODE_VERSION_MAJOR)) $linker_flags";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "$targeted_device_family";
};
Expand Down Expand Up @@ -294,7 +300,13 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
OTHER_LDFLAGS = "-ld_classic $linker_flags";
"LD_CLASSIC_1000" = "";
"LD_CLASSIC_1100" = "";
"LD_CLASSIC_1200" = "";
"LD_CLASSIC_1300" = "";
"LD_CLASSIC_1400" = "";
"LD_CLASSIC_1500" = "-ld_classic";
OTHER_LDFLAGS = "$(LD_CLASSIC_$(XCODE_VERSION_MAJOR)) $linker_flags";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "$targeted_device_family";
VALIDATE_PRODUCT = YES;
Expand Down

0 comments on commit b931a6e

Please sign in to comment.