mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
Slightly adjusted the patch of Mikael Urankar to make sure it only
affects __arm__ builds.
The patch is similar to what fixed openjdk8 in
commit e13c811372
.
Not bumping portrevision as nothing changes for existing pkgs.
PR: 255662
Approved by: java@ (maintainer timeout)
11 lines
627 B
Text
11 lines
627 B
Text
--- make/hotspot/lib/CompileJvm.gmk.orig 2024-10-04 16:07:55.502680000 +0200
|
|
+++ make/hotspot/lib/CompileJvm.gmk 2024-10-04 16:07:03.672629000 +0200
|
|
@@ -109,7 +109,7 @@ ifeq ($(call And, $(call isTargetOs, linux) $(call isT
|
|
ifeq ($(call And, $(call isTargetOs, linux) $(call isTargetCpu, arm)), true)
|
|
JVM_EXCLUDE_PATTERNS += arm_64
|
|
|
|
-else ifeq ($(call And, $(call isTargetOs, bsd) $(call isTargetCpu, bsd-arm)), true)
|
|
+else ifeq ($(call And, $(call isTargetOs, bsd) $(call isTargetCpu, arm)), true)
|
|
JVM_EXCLUDE_PATTERNS += arm_64
|
|
|
|
else ifeq ($(call And, $(call isTargetOs, linux) $(call isTargetCpu, aarch64)), true)
|