Skip to content
Snippets Groups Projects
Commit 4dee4de0 authored by Lana Steuck's avatar Lana Steuck
Browse files

Merge

parents 6423f489 158c7ec3
No related branches found
No related tags found
No related merge requests found
...@@ -407,11 +407,7 @@ AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_FOR_OPTIMIZATION], ...@@ -407,11 +407,7 @@ AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_FOR_OPTIMIZATION],
C_O_FLAG_HI="-O3" C_O_FLAG_HI="-O3"
C_O_FLAG_NORM="-O2" C_O_FLAG_NORM="-O2"
fi fi
if test "x$HAS_CFLAG_OPTIMIZE_DEBUG" = "xtrue"; then
C_O_FLAG_DEBUG="$CFLAG_OPTIMIZE_DEBUG_FLAG"
else
C_O_FLAG_DEBUG="-O0" C_O_FLAG_DEBUG="-O0"
fi
C_O_FLAG_NONE="-O0" C_O_FLAG_NONE="-O0"
elif test "x$TOOLCHAIN_TYPE" = xclang; then elif test "x$TOOLCHAIN_TYPE" = xclang; then
if test "x$OPENJDK_TARGET_OS" = xmacosx; then if test "x$OPENJDK_TARGET_OS" = xmacosx; then
......
...@@ -4311,7 +4311,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++" ...@@ -4311,7 +4311,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"
#CUSTOM_AUTOCONF_INCLUDE #CUSTOM_AUTOCONF_INCLUDE
   
# Do not change or remove the following line, it is needed for consistency checks: # Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=1403557683 DATE_WHEN_GENERATED=1404942241
   
############################################################################### ###############################################################################
# #
...@@ -42011,11 +42011,7 @@ $as_echo "$ac_cv_c_bigendian" >&6; } ...@@ -42011,11 +42011,7 @@ $as_echo "$ac_cv_c_bigendian" >&6; }
C_O_FLAG_HI="-O3" C_O_FLAG_HI="-O3"
C_O_FLAG_NORM="-O2" C_O_FLAG_NORM="-O2"
fi fi
if test "x$HAS_CFLAG_OPTIMIZE_DEBUG" = "xtrue"; then
C_O_FLAG_DEBUG="$CFLAG_OPTIMIZE_DEBUG_FLAG"
else
C_O_FLAG_DEBUG="-O0" C_O_FLAG_DEBUG="-O0"
fi
C_O_FLAG_NONE="-O0" C_O_FLAG_NONE="-O0"
elif test "x$TOOLCHAIN_TYPE" = xclang; then elif test "x$TOOLCHAIN_TYPE" = xclang; then
if test "x$OPENJDK_TARGET_OS" = xmacosx; then if test "x$OPENJDK_TARGET_OS" = xmacosx; then
...@@ -66,6 +66,32 @@ jdk_% core_%s svc_%: ...@@ -66,6 +66,32 @@ jdk_% core_%s svc_%:
hotspot_%: hotspot_%:
@$(NO_STOPPING)$(call SUBDIR_TEST, $(HOTSPOT_DIR), TEST="$@" $@) @$(NO_STOPPING)$(call SUBDIR_TEST, $(HOTSPOT_DIR), TEST="$@" $@)
#
# jtreg_tests
#
# Invocation:
#
# make jtreg_tests TESTDIRS=<test-dirs>
#
# where <test-dirs> is something like '../<component>/test/runtime',
# <component> in turn being one of the top level directories (for
# example 'hotspot').
#
# The below will strip the path prefix and delegate to the
# corresponding ../<component>/test/Makefile.
ifneq ($(TESTDIRS),)
# Extract the component from ../<component>/...
COMPONENT=$(word 2,$(subst /, ,$(TESTDIRS)))
# Strip off the ../<component>/test prefix and pass the rest as TESTDIRS
# to the delegate Makefile
TESTDIRS_TESTS=$(patsubst ../$(COMPONENT)/test/%,%,$(TESTDIRS))
endif
jtreg_tests:
@$(NO_STOPPING)$(call SUBDIR_TEST, $(TOPDIR)/$(COMPONENT), TESTDIRS=$(TESTDIRS_TESTS) $@)
################################################################ ################################################################
# Phony targets (e.g. these are not filenames) # Phony targets (e.g. these are not filenames)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment