diff options
author | Paul Furley <paul@paulfurley.com> | 2013-08-03 13:55:46 +0000 |
---|---|---|
committer | Paul Furley <paul@paulfurley.com> | 2013-08-03 13:55:46 +0000 |
commit | 71b1eb9d5218d81de8baf57dfd8f2b4e69142a2d (patch) | |
tree | 41cfce2e36f449113cecc0c8eeab5ef94b9b1b5d | |
parent | 58c9e90b49b88543ada7511f852c8f85ea3ef25c (diff) | |
download | infinitytier-71b1eb9d5218d81de8baf57dfd8f2b4e69142a2d.tar.gz infinitytier-71b1eb9d5218d81de8baf57dfd8f2b4e69142a2d.zip |
Link against libdl to enable use of dlopen etc in libcrypto.a
-rw-r--r-- | Makefile.linux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.linux b/Makefile.linux index 77327282..dd570911 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -2,15 +2,16 @@ CC=gcc CXX=g++ INCLUDES=-Iext/bin/libcrypto/include -Iext/jsoncpp/include +LDFLAGS=-ldl ARCH=$(shell uname -m) DEFS=-DZT_ARCH="$(ARCH)" -DZT_OSNAME="linux" -DZT_TRACE # Uncomment for a release optimized build -CFLAGS=-Wall -O3 -fno-unroll-loops -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS) +CFLAGS=-Wall -O3 -fno-unroll-loops -fstack-protector -pthread $(INCLUDES) $(LDFLAGS) -DNDEBUG $(DEFS) STRIP=strip --strip-all # Uncomment for a debug build -#CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE -DZT_LOG_STDOUT $(DEFS) +#CFLAGS=-Wall -g -pthread $(INCLUDES) $(LDFLAGS) -DZT_TRACE -DZT_LOG_STDOUT $(DEFS) #STRIP=echo CXXFLAGS=$(CFLAGS) -fno-rtti |