1
0
mirror of https://github.com/wg/wrk synced 2025-03-09 23:17:19 +08:00

fix library linking order

This commit is contained in:
Will 2019-04-18 10:48:58 +09:00
parent 1091676772
commit 9f7214502a

View File

@ -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)