Skip to content

Commit

Permalink
Don't strip on OS X. (There may be some better way of fixing this.)
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-seddon committed Apr 11, 2015
1 parent 97a236b commit 7cbaa46
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/Makefile
Expand Up @@ -39,7 +39,14 @@ CXXFLAGS := -O3 -pedantic $(WARNFLAGS)

# Define linker switches

LDFLAGS := -s
LDFLAGS :=

ifeq ($(shell uname -s),Darwin)
# Don't strip on OS X.
else
LDFLAGS := $(LDFLAGS) -s
endif


# Define 2nd party libs to link

Expand Down

0 comments on commit 7cbaa46

Please sign in to comment.