summaryrefslogtreecommitdiff
path: root/java/openjdk11/files
diff options
context:
space:
mode:
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.