Skip to content

Commit

Permalink
update minimum macos SDK in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
richard42 committed Jul 14, 2024
1 parent 992b594 commit 368c3e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ ifeq ($(OS), OSX)
CXXFLAGS += -stdlib=libc++
LDLIBS += -ldl
ifeq ($(ARCH_DETECTED), 64BITS)
CFLAGS += -pipe -I /opt/local/include -arch x86_64 -mmacosx-version-min=10.7 -isysroot $(OSX_SDK_PATH)
CFLAGS += -pipe -I /opt/local/include -arch x86_64 -mmacosx-version-min=10.15 -isysroot $(OSX_SDK_PATH)
else
CFLAGS += -pipe -I /opt/local/include -mmmx -msse -fomit-frame-pointer -arch i686 -mmacosx-version-min=10.7 -isysroot $(OSX_SDK_PATH)
CFLAGS += -pipe -I /opt/local/include -mmmx -msse -fomit-frame-pointer -arch i686 -mmacosx-version-min=10.15 -isysroot $(OSX_SDK_PATH)
endif
endif
# use system zlib on OSX
Expand Down

0 comments on commit 368c3e7

Please sign in to comment.