vars: update vars-linux files to use c++17

Signed-off-by: James Yonan <james@openvpn.net>
This commit is contained in:
James Yonan
2023-02-28 21:09:01 -07:00
committed by David Sommerseth
parent 97a4378b42
commit 08fd441207
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ export JAVA_DIR=/usr/lib/jvm/java-7-openjdk-amd64
export PLATFORM=linux export PLATFORM=linux
export DEBUG_BUILD=0 export DEBUG_BUILD=0
export OTHER_COMPILER_FLAGS="-Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread" export OTHER_COMPILER_FLAGS="-Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread"
export CXX_COMPILER_FLAGS="-std=c++14 -stdlib=libc++" export CXX_COMPILER_FLAGS="-std=c++17 -stdlib=libc++"
export LIB_OPT_LEVEL="-O3" export LIB_OPT_LEVEL="-O3"
export LIB_FPIC="-fPIC" export LIB_FPIC="-fPIC"
export GPP_CMD=clang++ export GPP_CMD=clang++

View File

@@ -3,7 +3,7 @@ export JAVA_DIR=/usr/lib/jvm/java-7-openjdk-amd64
export PLATFORM=linux export PLATFORM=linux
export DEBUG_BUILD=1 export DEBUG_BUILD=1
export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread" export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread"
export CXX_COMPILER_FLAGS="-std=c++14 -stdlib=libc++" export CXX_COMPILER_FLAGS="-std=c++17 -stdlib=libc++"
export LIB_OPT_LEVEL="-O0" export LIB_OPT_LEVEL="-O0"
export LIB_FPIC="-fPIC" export LIB_FPIC="-fPIC"
export GPP_CMD=clang++ export GPP_CMD=clang++

View File

@@ -3,7 +3,7 @@ export JAVA_DIR=/usr/lib/jvm/java-7-openjdk-amd64
export PLATFORM=linux export PLATFORM=linux
export DEBUG_BUILD=1 export DEBUG_BUILD=1
export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread" export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread"
export CXX_COMPILER_FLAGS="-std=c++14" export CXX_COMPILER_FLAGS="-std=c++17"
export LIB_OPT_LEVEL="-O0" export LIB_OPT_LEVEL="-O0"
export LIB_FPIC="-fPIC" export LIB_FPIC="-fPIC"
export GPP_CMD=g++ export GPP_CMD=g++

View File

@@ -3,7 +3,7 @@ export JAVA_DIR=/usr/lib/jvm/java-7-openjdk-amd64
export PLATFORM=linux export PLATFORM=linux
export DEBUG_BUILD=0 export DEBUG_BUILD=0
export OTHER_COMPILER_FLAGS="-Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread" export OTHER_COMPILER_FLAGS="-Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread"
export CXX_COMPILER_FLAGS="-std=c++14 -stdlib=libc++" export CXX_COMPILER_FLAGS="-std=c++17 -stdlib=libc++"
export LIB_OPT_LEVEL="-O3" export LIB_OPT_LEVEL="-O3"
export LIB_FPIC="-fPIC" export LIB_FPIC="-fPIC"
export GPP_CMD=clang++ export GPP_CMD=clang++

View File

@@ -3,7 +3,7 @@ export JAVA_DIR=/usr/lib/jvm/java-7-openjdk-amd64
export PLATFORM=linux export PLATFORM=linux
export DEBUG_BUILD=1 export DEBUG_BUILD=1
export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread" export OTHER_COMPILER_FLAGS="-ggdb -Wno-unused-local-typedefs -Wno-unused-variable -Wno-shift-count-overflow -pthread"
export CXX_COMPILER_FLAGS="-std=c++14 -stdlib=libc++" export CXX_COMPILER_FLAGS="-std=c++17 -stdlib=libc++"
export LIB_OPT_LEVEL="-O0" export LIB_OPT_LEVEL="-O0"
export LIB_FPIC="-fPIC" export LIB_FPIC="-fPIC"
export GPP_CMD=clang++ export GPP_CMD=clang++