Browse Source

!14973 move libevent dl link from ldflags to cflags

From: @zhoufeng54
Reviewed-by: @kisnwang,@jjfeing
Signed-off-by: @jjfeing
pull/14973/MERGE
mindspore-ci-bot Gitee 5 years ago
parent
commit
a351555376
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cmake/external_libs/libevent.cmake

+ 2
- 2
cmake/external_libs/libevent.cmake 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)


Loading…
Cancel
Save