0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 20:13:05 +02:00
openvpn3/vars/vars-osx64
Arne Schwabe 38a5f2d413 Increase default C++ level on macOS to C++ 14
Signed-off-by: Arne Schwabe <arne@openvpn.net>
2019-11-07 09:58:54 +01:00

13 lines
444 B
Plaintext

export PLATFORM=osx
[ -z "$DEP_DIR" ] && export DEP_DIR=$HOME/src/mac
export APPLE_FAMILY=1
export DEBUG_BUILD=0
export GPP_CMD=clang++
export GCC_CMD=clang
export MIN_DEPLOY_TARGET="-mmacosx-version-min=10.8"
export PLATFORM_FLAGS="-arch x86_64 $MIN_DEPLOY_TARGET"
export OTHER_COMPILER_FLAGS="-fvisibility=hidden -fvisibility-inlines-hidden"
export CXX_COMPILER_FLAGS="-std=c++14 -stdlib=libc++"
export LIB_OPT_LEVEL="-O3"
export LIB_FPIC=""