Skip to content

Commit c584519

Browse files
U64
1 parent 27a4585 commit c584519

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.ci/build-linux-aarch64.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ && !/libsdl
1414
git --git-dir=.git/modules/3rdparty/OpenAL/openal-soft fetch origin
1515
git --git-dir=.git/modules/3rdparty/OpenAL/openal-soft --work-tree=3rdparty/OpenAL/openal-soft checkout 50a777be67adb66a453aa26a92cb9c7edb8a5cec
1616
git submodule status 3rdparty/OpenAL/openal-soft
17+
1718
sed -i 's/gsl::narrow_cast/static_cast/g' 3rdparty/OpenAL/openal-soft/alc/backends/pipewire.cpp
19+
# Replace OpenAL's custom u64 with standard unsigned long long
20+
sed -i 's/\bu64\b/unsigned long long/g' 3rdparty/OpenAL/openal-soft/alc/backends/pipewire.cpp
21+
# Replace custom uint32_t with standard version
22+
sed -i 's/\buint32_t\b/unsigned int/g' 3rdparty/OpenAL/openal-soft/alc/backends/pipewire.cpp
1823

1924
mkdir build && cd build || exit 1
2025

0 commit comments

Comments
 (0)