forked from rtcwcoop/rtcwcoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cross-make-mingw.sh
executable file
·55 lines (46 loc) · 1.15 KB
/
cross-make-mingw.sh
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
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
# Note: This works in Linux and cygwin
if [ "$ARCH" = "x86_64" ];
then
CMD_PREFIX="x86_64-w64-mingw32 amd64-mingw32msvc"
else
CMD_PREFIX="i686-w64-mingw32 i586-mingw32msvc i686-pc-mingw32"
export ARCH=x86
fi
if [ "$CC" = "cc" ] || [ "$CC" = "gcc" ];
then
CC=
fi
if [ "X$CC" = "X" ]; then
for check in $CMD_PREFIX; do
full_check="${check}-gcc"
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; then
export CC="$full_check"
fi
done
fi
if [ "X$CXX" = "X" ]; then
for check in $CMD_PREFIX; do
full_check="${check}-g++"
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; then
export CXX="$full_check"
fi
done
fi
if [ "X$WINDRES" = "X" ]; then
for check in $CMD_PREFIX; do
full_check="${check}-windres"
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; then
export WINDRES="$full_check"
fi
done
fi
if [ "X$WINDRES" = "X" -o "X$CC" = "X" -o "X$CXX" = "X" ]; then
echo "Error: Must define or find WINDRES, CC, and CXX"
exit 1
fi
export PLATFORM=mingw32
exec make $*