Skip to content

Commit

Permalink
fix mac ld
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Perron committed Apr 13, 2016
1 parent 221858b commit 010ed1c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions makefiles/Makefile.unix
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,8 @@ ifeq ($(PLATFORM),LINUX)
FLEX = dependencies/install/bin/flex
endif # LINUX
ifeq ($(PLATFORM),MACOSX)
MAC_COMPATIBILITY = -mmacosx-version-min=$(MAC_MIN_VERSION)
CCC = clang++ -fPIC -std=c++11 $(MAC_COMPATIBILITY) -stdlib=libc++
DYNAMIC_LD = ld -arch x86_64 -bundle -flat_namespace -undefined suppress $(MAC_COMPATIBILITY) -lSystem -compatibility_version 1.0 -current_version $(OR_TOOLS_VERSION)
CCC = clang++ -fPIC -std=c++11 -mmacosx-version-min=$(MAC_MIN_VERSION) -stdlib=libc++
DYNAMIC_LD = ld -arch x86_64 -bundle -flat_namespace -undefined suppress -macosx_version_min $(MAC_MIN_VERSION) -lSystem -compatibility_version 1.0 -current_version $(OR_TOOLS_VERSION)

CMAKE := $(shell which cmake)
ifeq ($(CMAKE),)
Expand Down

0 comments on commit 010ed1c

Please sign in to comment.