0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-19 19:52:15 +02:00
openvpn3/vars/vars-linux-clang-dbg
James Yonan 08fd441207
vars: update vars-linux files to use c++17
Signed-off-by: James Yonan <james@openvpn.net>
2023-03-15 16:13:39 +01:00

13 lines
470 B
Plaintext

export JAVA_DIR=/usr/lib/jvm/java-7-openjdk-amd64
[ -z "$DEP_DIR" ] && export DEP_DIR=$HOME/linux-clang
export PLATFORM=linux
export DEBUG_BUILD=1
export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread"
export CXX_COMPILER_FLAGS="-std=c++17 -stdlib=libc++"
export LIB_OPT_LEVEL="-O0"
export LIB_FPIC="-fPIC"
export GPP_CMD=clang++
export GCC_CMD=clang
export AR_CMD="gcc-ar rc"
export RANLIB_CMD=gcc-ranlib