Skip to content
Snippets Groups Projects
Commit 406bc6fd authored by Piotr Kubaj's avatar Piotr Kubaj
Browse files

java/openjdk11: fix build on powerpc64*

Partially reverts 08cc5022, segfaults are still
present on both powerpc64 and powerpc64le.
parent ead36b22
No related branches found
No related tags found
No related merge requests found
......@@ -157,6 +157,12 @@ CXXFLAGS+= -Wl,-rpath=${LOCALBASE}/lib/gcc${GCC_DEFAULT}
CONFIGURE_ARGS+=--disable-precompiled-headers
.else
MAKE_ENV+= USE_CLANG=true
.if ${ARCH:Mpowerpc64*}
LLVM_VER= 12
BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER}
CC= ${LOCALBASE}/bin/clang${LLVM_VER}
CXX= ${LOCALBASE}/bin/clang++${LLVM_VER}
.endif
.endif
.if ${ARCH} == aarch64 || ${ARCH:Marmv*}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment