openjdk: more tweaks.

This commit is contained in:
Jérôme Duval
2018-10-31 15:38:17 +01:00
committed by GitHub
parent b84cd6bf27
commit 153520b6de

View File

@@ -175,8 +175,8 @@ BUILD()
ln -s src $sourceDir
# set the C++ standard as the default changed since gcc6
EXTRA_CXX_FLAGS="-std=gnu++98 -fno-delete-null-pointer-checks -fno-lifetime-dse -fpermissive"
EXTRA_CFLAGS="-Wno-error -fno-delete-null-pointer-checks -fno-lifetime-dse"
EXTRA_CXX_FLAGS="-std=gnu++98 -fno-delete-null-pointer-checks -fno-lifetime-dse"
EXTRA_CFLAGS="-std=gnu++98 -Wno-error -fno-delete-null-pointer-checks -fno-lifetime-dse"
bash ./common/autoconf/autogen.sh
bash ./configure --with-boot-jdk-jvmargs="-Xmx${maxHeapSize}" \
@@ -185,7 +185,7 @@ BUILD()
--with-extra-cxxflags="$EXTRA_CXX_FLAGS" \
--with-extra-cflags="$EXTRA_CFLAGS"
make images
make DEBUG_BINARIES=true SCTP_WERROR= images
}
INSTALL()