summaryrefslogtreecommitdiff
path: root/java/openjdk11/files
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2019-04-17 18:31:26 +0000
committerGreg Lewis <glewis@FreeBSD.org>2019-04-17 18:31:26 +0000
commit5a5d4db763d3942d9d4278fda3fd87e3c241cb5b (patch)
tree46f33bba5eb072a474940367725851691e208433 /java/openjdk11/files
parentFix the installation of llvm-lit's "cat" utility. (diff)
. Update to 11.0.3.
Notes
Notes: svn path=/head/; revision=499185
Diffstat (limited to 'java/openjdk11/files')
-rw-r--r--java/openjdk11/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk18
1 files changed, 0 insertions, 18 deletions
diff --git a/java/openjdk11/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk b/java/openjdk11/files/patch-make_hotspot_lib_JvmDtraceObjects.gmk
deleted file mode 100644
index a3bc5762dedb..000000000000
--- a/java/openjdk11/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.