Specify mmacosx-version-min in makefile
So apparently the static linking isn't working
This commit is contained in:
parent
56e3e4353b
commit
3874856f2b
2
makefile
2
makefile
|
@ -1,7 +1,7 @@
|
|||
STD=c++17
|
||||
OS := $(shell uname)
|
||||
ifeq ($(OS), Darwin)
|
||||
CXXFLAGS=-std=$(STD) -c -O3 -fno-exceptions -fPIC -stdlib=libc++ -static-libstdc++ -l:libc++abi.a -static-libgcc
|
||||
CXXFLAGS=-std=$(STD) -c -O3 -fno-exceptions -fPIC -mmacosx-version-min=10.15
|
||||
else
|
||||
CXXFLAGS=-std=$(STD) -c -O3 -fno-exceptions -fPIC
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue