mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
coverage.sh|qa.sh: Fix copying of DLLs for Wine/MinGW for Ubuntu 22.04
Ubuntu 22.04 no longer has libgcc_s_sjlj-1.dll but needs libgcc_s_dw2-1.dll now, instead.
This commit is contained in:
parent
6311d58530
commit
003ac7403f
2 changed files with 4 additions and 4 deletions
|
@ -117,8 +117,8 @@ _copy_missing_mingw_libaries() {
|
|||
# * coverage GCC flags make them needed
|
||||
# * With WINEDLLPATH Wine looks for .dll.so in these folders, not .dll
|
||||
local target="$1"
|
||||
local mingw_gcc_dll_dir="$(dirname "$(ls -1 /usr/lib*/gcc/i686-w64-mingw32/*/libgcc_s_sjlj-1.dll | head -n1)")"
|
||||
for dll in libgcc_s_sjlj-1.dll libstdc++-6.dll; do
|
||||
local mingw_gcc_dll_dir="$(dirname "$(ls -1 /usr/lib*/gcc/i686-w64-mingw32/*/{libgcc_s_sjlj-1.dll,libstdc++-6.dll} | head -n1)")"
|
||||
for dll in libgcc_s_dw2-1.dll libgcc_s_sjlj-1.dll libstdc++-6.dll; do
|
||||
(
|
||||
set -x
|
||||
ln -s "${mingw_gcc_dll_dir}"/${dll} "${target}"/${dll}
|
||||
|
|
|
@ -154,11 +154,11 @@ run_tests() {
|
|||
esac
|
||||
|
||||
if [[ ${CC} =~ mingw ]]; then
|
||||
# NOTE: Filenames are hardcoded for Travis' Ubuntu Bionic, as of now
|
||||
for i in tests xmlwf ; do
|
||||
mingw32_dir="$(ls -1d /usr/lib/gcc/i686-w64-mingw32/* | head -n1)"
|
||||
mingw32_dir="$(dirname "$(ls -1 /usr/lib*/gcc/i686-w64-mingw32/*/{libgcc_s_sjlj-1.dll,libstdc++-6.dll} | head -n1)")"
|
||||
RUN ln -s \
|
||||
/usr/i686-w64-mingw32/lib/libwinpthread-1.dll \
|
||||
"${mingw32_dir}"/libgcc_s_dw2-1.dll \
|
||||
"${mingw32_dir}"/libgcc_s_sjlj-1.dll \
|
||||
"${mingw32_dir}"/libstdc++-6.dll \
|
||||
"$PWD"/libexpat{,w}-*.dll \
|
||||
|
|
Loading…
Add table
Reference in a new issue