We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af02cb2 commit c537fe9Copy full SHA for c537fe9
1 file changed
external_deps/build.sh
@@ -753,6 +753,16 @@ build_vorbis() {
753
754
cd "${dir_name}"
755
756
+ case "${PLATFORM}" in
757
+ windows-*-msvc)
758
+ # Workaround a build issue on MinGW:
759
+ # See: https://github.com/microsoft/vcpkg/issues/22990
760
+ # and: https://github.com/microsoft/vcpkg/pull/23761
761
+ ls win32/vorbis.def win32/vorbisenc.def win32/vorbisfile.def \
762
+ | xargs -I{} -P3 sed -e 's/LIBRARY//' -i {}
763
+ ;;
764
+ esac
765
+
766
cmake_build
767
}
768
0 commit comments