Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jdk17u
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
einsteinathome
openjdk
jdk17u
Commits
f9f1a34a
Commit
f9f1a34a
authored
7 years ago
by
J. Duke
Browse files
Options
Downloads
Plain Diff
Merge
parents
654d4735
4dee4de0
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.hgtags-top-repo
+1
-0
1 addition, 0 deletions
.hgtags-top-repo
common/autoconf/flags.m4
+1
-5
1 addition, 5 deletions
common/autoconf/flags.m4
common/autoconf/generated-configure.sh
+2
-6
2 additions, 6 deletions
common/autoconf/generated-configure.sh
test/Makefile
+26
-0
26 additions, 0 deletions
test/Makefile
with
30 additions
and
11 deletions
.hgtags-top-repo
+
1
−
0
View file @
f9f1a34a
...
...
@@ -265,3 +265,4 @@ cf22a728521f91a4692b433d39d730a0a1b23155 jdk9-b16
ee4fd72b2ec3d92497f37163352f294aa695c6fb jdk9-b20
9052803f4d01feda28b3d65f2b64dd457d21c7b6 jdk9-b21
8e4bdab4c362aadde2d321f968cd503a2f779e2f jdk9-b22
88567461a2cd9b7fb431fee6440005a694df1f47 jdk9-b23
This diff is collapsed.
Click to expand it.
common/autoconf/flags.m4
+
1
−
5
View file @
f9f1a34a
...
...
@@ -407,11 +407,7 @@ AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_FOR_OPTIMIZATION],
C_O_FLAG_HI="-O3"
C_O_FLAG_NORM="-O2"
fi
if test "x$HAS_CFLAG_OPTIMIZE_DEBUG" = "xtrue"; then
C_O_FLAG_DEBUG="$CFLAG_OPTIMIZE_DEBUG_FLAG"
else
C_O_FLAG_DEBUG="-O0"
fi
C_O_FLAG_NONE="-O0"
elif test "x$TOOLCHAIN_TYPE" = xclang; then
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
...
...
This diff is collapsed.
Click to expand it.
common/autoconf/generated-configure.sh
+
2
−
6
View file @
f9f1a34a
...
...
@@ -4311,7 +4311,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"
#CUSTOM_AUTOCONF_INCLUDE
# Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=140
3557683
DATE_WHEN_GENERATED=140
4942241
###############################################################################
#
...
...
@@ -42011,11 +42011,7 @@ $as_echo "$ac_cv_c_bigendian" >&6; }
C_O_FLAG_HI="-O3"
C_O_FLAG_NORM="-O2"
fi
if test "x$HAS_CFLAG_OPTIMIZE_DEBUG" = "xtrue"; then
C_O_FLAG_DEBUG="$CFLAG_OPTIMIZE_DEBUG_FLAG"
else
C_O_FLAG_DEBUG="-O0"
fi
C_O_FLAG_NONE="-O0"
elif test "x$TOOLCHAIN_TYPE" = xclang; then
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
This diff is collapsed.
Click to expand it.
test/Makefile
+
26
−
0
View file @
f9f1a34a
...
...
@@ -66,6 +66,32 @@ jdk_% core_%s svc_%:
hotspot_%
:
@$(
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)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment