Merge
This commit is contained in:
commit
ba74557ea7
@ -350,3 +350,4 @@ c4d72a1620835b5d657b7b6792c2879367d0154f jdk-9+101
|
||||
be58b02c11f90b88c67e4d0e2cb5e4cf2d9b3c57 jdk-9+105
|
||||
54575d8783b3a39a2d710c28cda675d44261f9d9 jdk-9+106
|
||||
4d65eba233a8730f913734a6804910b842d2cb54 jdk-9+107
|
||||
c7be2a78c31b3b6132f2f5e9e4b3d3bb1c20245c jdk-9+108
|
||||
|
@ -311,6 +311,16 @@ var getJibProfilesProfiles = function (input, common) {
|
||||
labels: [ "open" ]
|
||||
},
|
||||
|
||||
"linux-x86-open": {
|
||||
target_os: mainProfiles["linux-x86"].target_os,
|
||||
target_cpu: mainProfiles["linux-x86"].target_cpu,
|
||||
dependencies: mainProfiles["linux-x86"].dependencies,
|
||||
configure_args: concat(mainProfiles["linux-x86"].configure_args,
|
||||
"--enable-openjdk-only"),
|
||||
make_args: mainProfiles["linux-x86"].make_args,
|
||||
labels: [ "open" ]
|
||||
},
|
||||
|
||||
"solaris-x64-open": {
|
||||
target_os: mainProfiles["solaris-x64"].target_os,
|
||||
target_cpu: mainProfiles["solaris-x64"].target_cpu,
|
||||
@ -319,6 +329,16 @@ var getJibProfilesProfiles = function (input, common) {
|
||||
"--enable-openjdk-only"),
|
||||
make_args: mainProfiles["solaris-x64"].make_args,
|
||||
labels: [ "open" ]
|
||||
},
|
||||
|
||||
"windows-x86-open": {
|
||||
target_os: mainProfiles["windows-x86"].target_os,
|
||||
target_cpu: mainProfiles["windows-x86"].target_cpu,
|
||||
dependencies: mainProfiles["windows-x86"].dependencies,
|
||||
configure_args: concat(mainProfiles["windows-x86"].configure_args,
|
||||
"--enable-openjdk-only"),
|
||||
make_args: mainProfiles["windows-x86"].make_args,
|
||||
labels: [ "open" ]
|
||||
}
|
||||
};
|
||||
profiles = concatObjects(profiles, jprtOpenProfiles);
|
||||
|
@ -42,7 +42,7 @@ MAIN_MODULES += java.se java.smartcardio jdk.httpserver jdk.sctp \
|
||||
jdk.security.auth jdk.security.jgss jdk.pack200 jdk.xml.dom \
|
||||
jdk.accessibility jdk.internal.le jdk.dynalink \
|
||||
jdk.scripting.nashorn jdk.scripting.nashorn.shell \
|
||||
jdk.vm.ci jdk.management
|
||||
jdk.vm.ci jdk.management jdk.jsobject
|
||||
|
||||
# providers
|
||||
PROVIDER_MODULES += jdk.charsets jdk.crypto.ec jdk.crypto.pkcs11 jdk.jvmstat jdk.jvmstat.rmi \
|
||||
|
@ -282,7 +282,7 @@ define SetupLogging
|
||||
# Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris.
|
||||
# Only use time if it's GNU time which supports format and output file.
|
||||
WRAPPER_SHELL := $$(BASH) $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log $$(SHELL)
|
||||
SHELL := $$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
|
||||
SHELL = $$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
|
||||
endif
|
||||
# The warn level can never be turned off
|
||||
LogWarn = $$(info $$(strip $$1))
|
||||
|
16
modules.xml
16
modules.xml
@ -843,6 +843,18 @@
|
||||
<name>jdk.jshell</name>
|
||||
</export>
|
||||
</module>
|
||||
<module>
|
||||
<name>jdk.jsobject</name>
|
||||
<depend>java.base</depend>
|
||||
<depend re-exports="true">java.desktop</depend>
|
||||
<export>
|
||||
<name>netscape.javascript</name>
|
||||
</export>
|
||||
<export>
|
||||
<name>jdk.internal.netscape.javascript.spi</name>
|
||||
<to>jdk.plugin</to>
|
||||
</export>
|
||||
</module>
|
||||
<module>
|
||||
<name>java.httpclient</name>
|
||||
<depend>java.base</depend>
|
||||
@ -1802,10 +1814,10 @@
|
||||
<name>com.sun.tools.javadoc</name>
|
||||
</export>
|
||||
<export>
|
||||
<name>jdk.javadoc.doclet</name>
|
||||
<name>jdk.javadoc.doclet</name>
|
||||
</export>
|
||||
<export>
|
||||
<name>jdk.javadoc.doclet.taglet</name>
|
||||
<name>jdk.javadoc.doclet.taglet</name>
|
||||
</export>
|
||||
</module>
|
||||
<module>
|
||||
|
Loading…
x
Reference in New Issue
Block a user