Skip to content

Commit

Permalink
java/openjdk11: drop ELFv1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
pkubaj committed Jan 5, 2024
1 parent 51d9f23 commit f16c920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/openjdk11/Makefile
Expand Up @@ -163,10 +163,10 @@ CXX= ${LOCALBASE}/bin/clang++${LLVM_VER}
.if ${ARCH} == aarch64 || ${ARCH:Marmv*} || ${ARCH:Mpowerpc64*}
CONFIGURE_ARGS+= --disable-warnings-as-errors
.endif
.if ${ARCH} == aarch64 || ${ARCH:Marmv*} || (defined(PPC_ABI) && ${PPC_ABI} == ELFv1)
.if ${ARCH} == aarch64 || ${ARCH:Marmv*}
CONFIGURE_ARGS+= --disable-dtrace
.endif
.if (defined(PPC_ABI) && ${PPC_ABI} == ELFv2) || ${ARCH} == powerpc64le
.if ${ARCH:Mpowerpc64*}
CONFIGURE_ARGS+= --disable-precompiled-headers
.endif
.if ${ARCH} != amd64
Expand Down

0 comments on commit f16c920

Please sign in to comment.