Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch back to JRE 8u77 on ARM #4454

Merged
merged 1 commit into from May 9, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions build/build.xml
Expand Up @@ -59,6 +59,15 @@

<!-- Switching to 8 because updates for 7 ended April 2015 -->
<property name="jdk.version" value="8" />

<!-- temporarily work around performance regression on ARM -->
<condition property="jdk.update" value="77">
<equals arg1="${linux-arm32}" arg2="linux-arm32" />
</condition>
<condition property="jdk.build" value="3">
<equals arg1="${linux-arm32}" arg2="linux-arm32" />
</condition>

<property name="jdk.update" value="92" />
<property name="jdk.build" value="14" />

Expand Down