Skip to content

Commit

Permalink
Fix OpenAL binary name on ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
smallmodel committed Sep 2, 2024
1 parent 3733761 commit 0a90757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
cmake --build ./build --config ${{env.BUILD_TYPE}}
cmake --install ./build --config ${{env.BUILD_TYPE}}
# Unfortunately soft-oal produces a binary called OpenAL32 even in 64-bit
if ("${{ matrix.architecture.config }}" -eq "x64") { Rename-Item -Path '.\install\bin\OpenAL32.dll' -NewName 'OpenAL64.dll' }
if (("x64", "ARM64") -icontains "${{ matrix.architecture.config }}") { Rename-Item -Path '.\install\bin\OpenAL32.dll' -NewName 'OpenAL64.dll' }
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 0a90757

Please sign in to comment.