We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 758f196 commit 7f9abc7Copy full SHA for 7f9abc7
external_deps/build.sh
@@ -972,6 +972,9 @@ build_install() {
972
find "${PKG_PREFIX}/bin" -name '*.dll' -execdir "${HOST}-strip" --strip-unneeded -- {} \;
973
find "${PKG_PREFIX}/lib" -name '*.a' -execdir rm -f -- {} \;
974
find "${PKG_PREFIX}/lib" -name '*.exp' -execdir rm -f -- {} \;
975
+
976
+ # Fix import lib paths to use MSVC-style instead of MinGW ones (see 'genlib' target)
977
+ find "${PKG_PREFIX}/lib/cmake" -name '*.cmake' -execdir sed -i -E 's@[.]dll[.]a\b@.lib@g' {} \;
978
;;
979
esac
980
0 commit comments