File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ CXXFLAGS ?= ${CXX_DEBUG} -Wall -Wextra -Wno-unused-parameter -pedantic -Wno-misl
3
3
DEFINES = -D_GLIBCXX_USE_NANOSLEEP=1
4
4
INCFLAGS = -I/usr/include/ -I/usr/local/include/
5
5
LDFLAGS = ${LD_DEBUG} -Wl,-rpath,/usr/local/lib -L/usr/local/lib
6
- LDLIBS = -lcrypto -lssl -lz -lpthread -lboost_system -lboost_program_options
6
+ LDLIBS = -lssl -lcrypto -lz -lpthread -lboost_system -lboost_program_options
7
7
8
8
## NOTE: NEEDED_CXXFLAGS is here so that custom CXXFLAGS can be specified at build time
9
9
## **without** overwriting the CXXFLAGS which we need in order to build.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ CXX = g++
2
2
CXXFLAGS := -Wall -std=c++17
3
3
INCFLAGS = -I/system/develop/headers
4
4
DEFINES = -D_DEFAULT_SOURCE -D_GNU_SOURCE
5
- LDLIBS = -lbe -lbsd -lnetwork -lz -lcrypto -lssl -lboost_system -lboost_program_options -lpthread
5
+ LDLIBS = -lbe -lbsd -lnetwork -lz -lssl -lcrypto -lboost_system -lboost_program_options -lpthread
6
6
7
7
ifeq ($(USE_UPNP),yes)
8
8
DEFINES += -DUSE_UPNP
Original file line number Diff line number Diff line change 18
18
LDLIBS += -lpthread -ldl
19
19
else
20
20
LDFLAGS += -L${SSLROOT}/lib -L${BOOSTROOT}/lib
21
- LDLIBS = -lz -lcrypto -lssl -lboost_system -lboost_filesystem -lboost_program_options -lpthread
21
+ LDLIBS = -lz -lssl -lcrypto -lboost_system -lboost_filesystem -lboost_program_options -lpthread
22
22
ifeq ($(USE_UPNP),yes)
23
23
LDFLAGS += -L${UPNPROOT}/lib
24
24
LDLIBS += -lminiupnpc
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ ifeq ($(USE_UPNP),yes)
40
40
endif
41
41
LDLIBS += -lpthread -ldl
42
42
else
43
- LDLIBS += -lcrypto -lssl -lz -lboost_program_options -lpthread -latomic
43
+ LDLIBS += -lssl -lcrypto -lz -lboost_program_options -lpthread -latomic
44
44
ifeq ($(USE_UPNP),yes)
45
45
LDLIBS += -lminiupnpc
46
46
endif
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ LDFLAGS += -Wl,-dead_strip
7
7
LDFLAGS += -Wl,-dead_strip_dylibs
8
8
9
9
ifeq ($(USE_STATIC),yes)
10
- LDLIBS = -lz /usr/local/lib/libcrypto .a /usr/local/lib/libssl .a /usr/local/lib/libboost_system.a /usr/local/lib/libboost_filesystem.a /usr/local/lib/libboost_program_options.a -lpthread
10
+ LDLIBS = -lz /usr/local/lib/libssl .a /usr/local/lib/libcrypto .a /usr/local/lib/libboost_system.a /usr/local/lib/libboost_filesystem.a /usr/local/lib/libboost_program_options.a -lpthread
11
11
else
12
- LDLIBS = -lz -lcrypto -lssl -lboost_system -lboost_filesystem -lboost_program_options -lpthread
12
+ LDLIBS = -lz -lssl -lcrypto -lboost_system -lboost_filesystem -lboost_program_options -lpthread
13
13
endif
14
14
15
15
ifeq ($(USE_UPNP),yes)
You can’t perform that action at this time.
0 commit comments