Andrew John Hughes 1d79c68
# HG changeset patch
Andrew John Hughes 1d79c68
# User sgehwolf
Andrew John Hughes 1d79c68
# Date 1537541916 -7200
Andrew John Hughes 1d79c68
#      Fri Sep 21 16:58:36 2018 +0200
Andrew John Hughes 1d79c68
# Node ID 4010c90156d1bfeaf988dbfeb01520f2e3a66ea8
Andrew John Hughes 1d79c68
# Parent  54afe70c50b6a6685763d00883e5173c0ba3a19d
Andrew John Hughes 1d79c68
8210761: libjsig is being compiled without optimization
Andrew John Hughes 1d79c68
Reviewed-by: erikj, ihse
Andrew John Hughes 1d79c68
Severin Gehwolf c295b90
diff --git openjdk.orig/hotspot/make/linux/makefiles/jsig.make openjdk/hotspot/make/linux/makefiles/jsig.make
Severin Gehwolf c295b90
--- openjdk.orig/hotspot/make/linux/makefiles/jsig.make
Severin Gehwolf c295b90
+++ openjdk/hotspot/make/linux/makefiles/jsig.make
Andrew John Hughes 1d79c68
@@ -51,10 +51,15 @@
Severin Gehwolf c295b90
   JSIG_DEBUG_CFLAGS = -g
Severin Gehwolf c295b90
 endif
Severin Gehwolf c295b90
 
Severin Gehwolf c295b90
+# Optimize jsig lib at level -O3 unless it's a slowdebug build
Severin Gehwolf c295b90
+ifneq ($(DEBUG_LEVEL), slowdebug)
Severin Gehwolf c295b90
+  JSIG_OPT_FLAGS = $(OPT_CFLAGS)
Severin Gehwolf c295b90
+endif
Severin Gehwolf c295b90
+
Severin Gehwolf c295b90
 $(LIBJSIG): $(JSIGSRCDIR)/jsig.c $(LIBJSIG_MAPFILE)
Andrew John Hughes 1d79c68
 	@echo Making signal interposition lib...
Andrew John Hughes 1d79c68
 	$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
Severin Gehwolf c295b90
-                         $(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) $(EXTRA_CFLAGS) -o $@ $< -ldl
Severin Gehwolf c295b90
+                         $(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) $(JSIG_OPT_FLAGS) $(EXTRA_CFLAGS) -o $@ $< -ldl
Severin Gehwolf c295b90
 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
Andrew John Hughes 1d79c68
   ifneq ($(STRIP_POLICY),no_strip)
Andrew John Hughes 1d79c68
 	$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJSIG_DEBUGINFO)