Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions build/build.xml
Original file line number Diff line number Diff line change
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