Skip to content

Commit

Permalink
Update 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nroduit committed Aug 18, 2023
1 parent 4518945 commit 1735afd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions content/getting-started/building-weasis.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ These instructions describe how to build Weasis directly from the Git repository

**Prerequisites**

1. JDK 20 or higher
1. JDK 21 or higher
2. Maven 3.5.3 or higher<br>
If your computer is behind a proxy server, [configure maven](https://maven.apache.org/guides/mini/guide-proxies.html).
3. Git
Expand Down Expand Up @@ -64,7 +64,7 @@ However, it is possible to run a local script `package-weasis.sh` on most system
{{< tabs groupId="build-native" >}}
{{% tab title="Bash" %}}
{{< highlight shell >}}
./build/script/package-weasis.sh --jdk "/home/.jdks/openjdk-20"
./build/script/package-weasis.sh --jdk "/home/.jdks/openjdk-21"
{{< /highlight >}}
{{% /tab %}}
{{< /tabs >}}
Expand Down
6 changes: 3 additions & 3 deletions layouts/shortcodes/latest-download.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
<a href="{{ $val.browser_download_url }}" target="_blank">{{ $val.name }} <i class="fa-fw fas fa-download"></i></a>
</span>
</td>
<td style="text-align: left;">{{ cond (eq $package ".msi") "May require Visual C++ redistributable 2015"
<td style="text-align: left;">{{ cond (eq $package ".msi") ""
(cond (eq $package ".pkg") (cond (eq $arch "arm 64-bit") "Requires macOS 11 or higher" "Requires macOS 10.11 or higher" )
(cond (eq $arch "arm 32-bit") "Requires GLIBC_2.7. Only tested with Raspberry Pi 4"
(cond (eq $arch "arm 64-bit") "Requires GLIBC_2.27" "Requires GLIBC_2.14" )))
(cond (eq $arch "arm 32-bit") "Requires GLIBC_2.17. Only tested with Raspberry Pi 4"
(cond (eq $arch "arm 64-bit") "Requires GLIBC_2.27" "Requires GLIBC_2.17" )))
}}</td>
</tr>
{{ end }}
Expand Down
6 changes: 3 additions & 3 deletions layouts/shortcodes/old-download.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
<a href="{{ $val.browser_download_url }}" target="_blank">{{ $val.name }} <i class="fa-fw fas fa-download"></i></a>
</span>
</td>
<td style="text-align: left;">{{ cond ( ge $elem_index 1) "" (cond (eq $package ".msi") "May require Visual C++ redistributable 2015"
<td style="text-align: left;">{{ cond ( ge $elem_index 1) "" (cond (eq $package ".msi") ""
(cond (eq $package ".pkg") (cond (eq $arch "arm 64-bit") "Requires macOS 11 or higher" "Requires macOS 10.11 or higher" )
(cond (eq $arch "arm 32-bit") "Requires GLIBC_2.7. Only tested with Raspberry Pi 4"
(cond (eq $arch "arm 64-bit") "Requires GLIBC_2.27" "Requires GLIBC_2.14" ))))
(cond (eq $arch "arm 32-bit") "Requires GLIBC_2.17. Only tested with Raspberry Pi 4"
(cond (eq $arch "arm 64-bit") "Requires GLIBC_2.27" "Requires GLIBC_2.17" ))))
}}</td>
</tr>
{{ end }}
Expand Down

0 comments on commit 1735afd

Please sign in to comment.