media-server icon indicating copy to clipboard operation
media-server copied to clipboard

Fix openssl package finding issue in mac

Open zyearn opened this issue 5 years ago • 1 comments

zyearn avatar Apr 08 '20 13:04 zyearn

you can also fix the __const__ compile error in gcc version >= 11.2.0 (see https://github.com/apache/incubator-brpc/issues/1693)
just set CMAKE_CXX_FLAGS line 52 like this: change -D__const__= to -D__const__=__unused__

set(CMAKE_CXX_FLAGS "${CMAKE_CPP_FLAGS} -DNDEBUG -O2 -D__const__=__unused__ -pipe -W -Wall -Wno-unused-parameter -fPIC -fno-omit-frame-pointer")

EricPengShuai avatar Jan 09 '23 04:01 EricPengShuai