Commit 44a5b18d authored by Rafaël Carré's avatar Rafaël Carré

Windows packaging: copy all runtime libraries that are possibly needed

parent c3ab5876
...@@ -66,7 +66,10 @@ endif ...@@ -66,7 +66,10 @@ endif
IFS=':' ;\ IFS=':' ;\
for x in $$library_path_list ;\ for x in $$library_path_list ;\
do \ do \
cp "$$x/libstdc++-6.dll" "$$x/libgcc_s_sjlj-1.dll" "$(win32_destdir)/" ; true ;\ test -f "$$x/libstdc++-6.dll" && cp "$$x/libstdc++-6.dll" "$(win32_destdir)/" ; \
test -f "$$x/libgcc_s_sjlj-1.dll" && cp "$$x/libgcc_s_sjlj-1.dll" "$(win32_destdir)/" ; \
test -f "$$x/libwinpthread-1.dll" && cp "$$x/libwinpthread-1.dll" "$(win32_destdir)/" ; \
test -f "$$x/../bin/libwinpthread-1.dll" && cp "$$x/../bin/libwinpthread-1.dll" "$(win32_destdir)/" ; \
done done
# SDK # SDK
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment