Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Feb 2019 02:14:50 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493634 - head/java/openjdk6/files
Message-ID:  <201902230214.x1N2Eomb084530@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902230214.x1N2Eomb084530>