svn commit: r493634 - head/java/openjdk6/files

Jung-uk Kim jkim at FreeBSD.org
Sat Feb 23 02:14:51 UTC 2019


Author: jkim
Date: Sat Feb 23 02:14:49 2019
New Revision: 493634
URL: https://svnweb.freebsd.org/changeset/ports/493634

Log:
  Fix build on i386 with lld as a system linker.

Added:
  head/java/openjdk6/files/patch-hotspot_make_bsd_makefiles_vm.make   (contents, props changed)

Added: head/java/openjdk6/files/patch-hotspot_make_bsd_makefiles_vm.make
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/openjdk6/files/patch-hotspot_make_bsd_makefiles_vm.make	Sat Feb 23 02:14:49 2019	(r493634)
@@ -0,0 +1,12 @@
+--- hotspot/make/bsd/makefiles/vm.make.orig	2016-12-30 04:31:06 UTC
++++ hotspot/make/bsd/makefiles/vm.make
+@@ -119,6 +119,9 @@ LFLAGS += $(EXTRA_CFLAGS)
+ # Darwin is non-executable-stack by default
+ ifneq ($(OS_VENDOR), Darwin)
+ LFLAGS += -Xlinker -z -Xlinker noexecstack
++ifeq ($(Platform_arch_model), x86_32)
++LFLAGS += -Xlinker -z -Xlinker notext
++endif
+ endif
+ 
+ LIBS += -lm -pthread


More information about the svn-ports-all mailing list