-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #1250, Support build on OSX10.14 Mojave. 2.0.258
- Loading branch information
Showing
4 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- Makefile 2018-10-28 13:49:27.000000000 +0800 | ||
+++ ../st-1.9-patch/Makefile 2018-10-28 13:50:07.000000000 +0800 | ||
@@ -139,8 +139,8 @@ CFLAGS += -arch ppc | ||
LDFLAGS += -arch ppc | ||
endif | ||
ifeq ($(INTEL), yes) | ||
-CFLAGS += -arch i386 -arch x86_64 | ||
-LDFLAGS += -arch i386 -arch x86_64 | ||
+CFLAGS += -arch x86_64 | ||
+LDFLAGS += -arch x86_64 | ||
endif | ||
LDFLAGS += -dynamiclib -install_name /sw/lib/libst.$(MAJOR).$(DSO_SUFFIX) -compatibility_version $(MAJOR) -current_version $(VERSION) | ||
OTHER_FLAGS = -Wall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters