Skip to content

Commit

Permalink
Don't allow undefined symbols in shared library.
Browse files Browse the repository at this point in the history
This should avoid inconsistent errors like the one that showed up in
PR #800.
  • Loading branch information
QuLogic committed Jan 5, 2015
1 parent 10f2078 commit 835c3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MKDIR ?= mkdir
WINDRES ?= windres
CFLAGS ?= -Wall -O2
CXXFLAGS ?= -Wall -O2
LDFLAGS ?= -Wall -O2
LDFLAGS ?= -Wall -O2 -Wl,--no-undefined

ifneq (,$(findstring /cygdrive/,$(PATH)))
UNAME := Cygwin
Expand Down

0 comments on commit 835c3d7

Please sign in to comment.