blob: 2ddf16a23808a0def6e5f7840f926f235e725b2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/bash
source ./tools/ci/scripts/winvars.sh || exit 1
source ./tools/ci/flags/mingw6.sh || exit 1
$CC --version
$CXX --version
export MXE="/mxe/usr/${CROSS}/bin/"
export DSTDIR="$1"
function mxefile {
cp ${MXE}${1} ${DSTDIR} || exit 1
}
function mxefile1 {
cp ${MXE}${1} ${DSTDIR} || true
}
mxefile gdb.exe
mxefile libcurl-4.dll
mxefile libdl.dll
mxefile libexpat-1.dll
mxefile libfreetype-6.dll
mxefile libiconv-2.dll
mxefile libintl-8.dll
mxefile libjpeg-9.dll
mxefile libogg-0.dll
mxefile libpng16-16.dll
mxefile libreadline6.dll
mxefile libSDL_gfx-15.dll
mxefile libstdc++-6.dll
mxefile libtermcap.dll
mxefile libvorbis-0.dll
mxefile libvorbisfile-3.dll
mxefile libxml2-2.dll
mxefile libwinpthread-1.dll
mxefile SDL.dll
mxefile SDL_image.dll
mxefile SDL_net.dll
mxefile SDL_ttf.dll
mxefile zlib1.dll
mxefile1 libgcc_s_sjlj-1.dll
mxefile1 libgcc_s_seh-1.dll
|