Skip to content

Commit

Permalink
fix library linking order
Browse files Browse the repository at this point in the history
  • Loading branch information
wg committed Apr 18, 2019
1 parent 1091676 commit 9f72145
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
@@ -1,5 +1,5 @@
CFLAGS += -std=c99 -Wall -O2 -D_REENTRANT
LIBS := -lpthread -lm -lssl -lcrypto
LIBS := -lm -lssl -lcrypto -lpthread

TARGET := $(shell uname -s | tr '[A-Z]' '[a-z]' 2>/dev/null || echo unknown)

Expand Down

0 comments on commit 9f72145

Please sign in to comment.