summaryrefslogtreecommitdiff
path: root/java/openjdk12/files
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2019-04-17 20:57:53 +0000
committerGreg Lewis <glewis@FreeBSD.org>2019-04-17 20:57:53 +0000
commit083a6da42dac1e8793bacae06dc747e155821897 (patch)
tree7163b8e94d0621c733b8e2bc67efb8e002435a48 /java/openjdk12/files
parentprint/py-reportlab: Update version 3.5.18=>3.5.19 (diff)
. Update to 12.0.1
Notes
Notes: svn path=/head/; revision=499213
Diffstat (limited to 'java/openjdk12/files')
-rw-r--r--java/openjdk12/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk18
1 files changed, 0 insertions, 18 deletions
diff --git a/java/openjdk12/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk b/java/openjdk12/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk
deleted file mode 100644
index a3bc5762dedb..000000000000
--- a/java/openjdk12/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk
+++ /dev/null
@@ -1,18 +0,0 @@
---- make/hotspot/lib/JvmDtraceObjects.gmk
-+++ make/hotspot/lib/JvmDtraceObjects.gmk
-@@ -201,8 +201,13 @@ ifeq ($(call check-jvm-feature, dtrace), true)
- )
- endif
-
-- DTRACE_FLAGS := -64 -G
-- DTRACE_CPP_FLAGS := -D_LP64 -x c
-+ ifeq ($(OPENJDK_TARGET_CPU_BITS), 32)
-+ DTRACE_FLAGS := -32 -G
-+ DTRACE_CPP_FLAGS := -x c
-+ else
-+ DTRACE_FLAGS := -64 -G
-+ DTRACE_CPP_FLAGS := -D_LP64 -x c
-+ endif
-
- # Make sure we run our selected compiler for preprocessing instead of letting
- # the dtrace tool pick it on it's own.