From 9a82ccef110870e66d5af71b9bbc00de65da79fe Mon Sep 17 00:00:00 2001 From: Severin Gehwolf Date: Mon, 26 Feb 2024 18:30:54 +0100 Subject: [PATCH] Enable linkable runtime when building the JDK. --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df53a2cd310e9..145e7c5aa116e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -133,6 +133,7 @@ jobs: gcc-major-version: '10' configure-arguments: ${{ github.event.inputs.configure-arguments }} make-arguments: ${{ github.event.inputs.make-arguments }} + extra-conf-options: '--enable-runtime-link-image' if: needs.select.outputs.linux-x64 == 'true' build-linux-x86: @@ -229,6 +230,7 @@ jobs: runs-on: 'macos-13' xcode-toolset-version: '14.3.1' configure-arguments: ${{ github.event.inputs.configure-arguments }} + extra-conf-options: '--enable-runtime-link-image' make-arguments: ${{ github.event.inputs.make-arguments }} if: needs.select.outputs.macos-x64 == 'true' @@ -241,6 +243,7 @@ jobs: runs-on: 'macos-14' xcode-toolset-version: '14.3.1' configure-arguments: ${{ github.event.inputs.configure-arguments }} + extra-conf-options: '--enable-runtime-link-image' make-arguments: ${{ github.event.inputs.make-arguments }} if: needs.select.outputs.macos-aarch64 == 'true' @@ -253,6 +256,7 @@ jobs: msvc-toolset-version: '14.29' msvc-toolset-architecture: 'x86.x64' configure-arguments: ${{ github.event.inputs.configure-arguments }} + extra-conf-options: '--enable-runtime-link-image' make-arguments: ${{ github.event.inputs.make-arguments }} if: needs.select.outputs.windows-x64 == 'true'