[geany/geany-osx] 48e7bf: Explicitly enable x86_64 architecture for the launcher script

Jiří Techet git-noreply at xxxxx
Tue Oct 12 16:18:56 UTC 2021


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Tue, 12 Oct 2021 16:18:56 UTC
Commit:      48e7bf7659156e53075d0b18a231bc4156188998
             https://github.com/geany/geany-osx/commit/48e7bf7659156e53075d0b18a231bc4156188998

Log Message:
-----------
Explicitly enable x86_64 architecture for the launcher script

This makes sure the launcher script isn't built as a universal binary
including the ARM slice. When the ARM code is included, macOS
assumes Geany is a universal binary and launching Geany fails
because the rest of the code is x86 only.


Modified Paths:
--------------
    Launcher/geany/geany.xcodeproj/project.pbxproj

Modified: Launcher/geany/geany.xcodeproj/project.pbxproj
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -3,7 +3,7 @@
 	archiveVersion = 1;
 	classes = {
 	};
-	objectVersion = 50;
+	objectVersion = 53;
 	objects = {
 
 /* Begin PBXBuildFile section */
@@ -88,6 +88,7 @@
 		B12DCC3F2350EF9300301186 /* Project object */ = {
 			isa = PBXProject;
 			attributes = {
+				BuildIndependentTargetsInParallel = YES;
 				LastUpgradeCheck = 1200;
 				ORGANIZATIONNAME = Geany;
 				TargetAttributes = {
@@ -240,6 +241,7 @@
 		B12DCC4F2350EF9300301186 /* Debug */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
+				ARCHS = x86_64;
 				CODE_SIGN_IDENTITY = "-";
 				CODE_SIGN_STYLE = Automatic;
 				DEVELOPMENT_TEAM = "";
@@ -251,6 +253,7 @@
 		B12DCC502350EF9300301186 /* Release */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
+				ARCHS = x86_64;
 				CODE_SIGN_IDENTITY = "-";
 				CODE_SIGN_STYLE = Automatic;
 				DEVELOPMENT_TEAM = "";



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list