mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
try unbreaking static build
This commit is contained in:
parent
7018c381ee
commit
abaf36a2de
@ -32,9 +32,14 @@ ifeq ($(USE_STATIC),yes)
|
|||||||
# Using 'getaddrinfo' in statically linked applications requires at runtime
|
# Using 'getaddrinfo' in statically linked applications requires at runtime
|
||||||
# the shared libraries from the glibc version used for linking
|
# the shared libraries from the glibc version used for linking
|
||||||
LIBDIR := /usr/lib
|
LIBDIR := /usr/lib
|
||||||
LDLIBS = -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options
|
LDLIBS = $(LIBDIR)/libboost_system.a
|
||||||
LDLIBS += -lssl -lcrypto -lz -ldl -lpthread -lrt
|
LDLIBS += $(LIBDIR)/libboost_date_time.a
|
||||||
LDLIBS += -static-libstdc++ -static-libgcc -static
|
LDLIBS += $(LIBDIR)/libboost_filesystem.a
|
||||||
|
LDLIBS += $(LIBDIR)/libboost_program_options.a
|
||||||
|
LDLIBS += $(LIBDIR)/libssl.a
|
||||||
|
LDLIBS += $(LIBDIR)/libcrypto.a
|
||||||
|
LDLIBS += $(LIBDIR)/libz.a
|
||||||
|
LDLIBS += -lpthread -static-libstdc++ -static-libgcc -lrt
|
||||||
USE_AESNI := no
|
USE_AESNI := no
|
||||||
else
|
else
|
||||||
LDLIBS = -lcrypto -lssl -lz -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread
|
LDLIBS = -lcrypto -lssl -lz -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread
|
||||||
|
Loading…
Reference in New Issue
Block a user