mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
20 lines
751 B
Makefile
20 lines
751 B
Makefile
$NetBSD: patch-hotspot_make_solaris_makefiles_fastdebug.make,v 1.1 2015/07/03 20:40:59 fhajny Exp $
|
|
|
|
GCC support.
|
|
|
|
--- hotspot/make/solaris/makefiles/fastdebug.make.orig 2015-02-02 15:32:37.000000000 +0000
|
|
+++ hotspot/make/solaris/makefiles/fastdebug.make
|
|
@@ -120,7 +120,11 @@ MAPFILE = $(GAMMADIR)/make/solaris/makef
|
|
|
|
# This mapfile is only needed when compiling with dtrace support,
|
|
# and mustn't be otherwise.
|
|
-MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
|
|
+ifdef USE_GCC
|
|
+ MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE).gcc
|
|
+else
|
|
+ MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
|
|
+endif # USE_GCC
|
|
|
|
VERSION = optimized
|
|
SYSDEFS += -DASSERT -DCHECK_UNHANDLED_OOPS
|