File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,12 @@ git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ && !/libsdl
1414git --git-dir=.git/modules/3rdparty/OpenAL/openal-soft fetch origin
1515git --git-dir=.git/modules/3rdparty/OpenAL/openal-soft --work-tree=3rdparty/OpenAL/openal-soft checkout 50a777be67adb66a453aa26a92cb9c7edb8a5cec
1616git submodule status 3rdparty/OpenAL/openal-soft
17+
1718sed -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
1924mkdir build && cd build || exit 1
2025
You can’t perform that action at this time.
0 commit comments