move libevent dl link from ldflags to cflags

Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
This commit is contained in:
zhoufeng 2021-04-12 12:37:57 +08:00
parent c5b9b1b53a
commit 7a3f4aea65
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
set(libevent_CFLAGS "-fstack-protector-all -D_FORTIFY_SOURCE=2 -O2")
set(libevent_CFLAGS "-fstack-protector-all -D_FORTIFY_SOURCE=2 -O2 -ldl")
if(NOT CMAKE_SYSTEM_NAME MATCHES "Darwin")
set(libevent_LDFLAGS "-Wl,-z,now -ldl")
set(libevent_LDFLAGS "-Wl,-z,now")
endif()
if(ENABLE_GITEE)