Various fixes.
[mingw-build.git] / build_all
1 #!/bin/bash -e
2 set -e
3
4 export MINGW_PARALLEL="-j8"
5 export MINGW_BUILD=x86_64-pc-linux-gnu
6 export MINGW_GCC_VERSION=6.4.0
7 export MINGW_VERSION=5.0.2
8
9 export MINGW_PREFIX=/opt/mingw/32
10 export MINGW_TARGET=i686-w64-mingw32
11
12 echo "=== binutils linux"
13 bash build_binutils_linux.sh
14 echo "=== mingw headers"
15 bash build_mingw_headers.sh
16 echo "=== gcc core"
17 bash build_gcc_core.sh
18 echo "=== mingw runtime"
19 bash build_mingw_runtime.sh
20 echo "=== gcc rest"
21 bash build_gcc_rest.sh
22 echo "=== gdb"
23 bash build_gdb.sh
24 echo "=== binutils windows"
25 bash build_binutils_windows.sh
26
27 export MINGW_PREFIX=/opt/mingw/64
28 export MINGW_TARGET=x86_64-w64-mingw32
29
30 bash build_binutils_linux.sh
31 bash build_mingw_headers.sh
32 bash build_gcc_core.sh
33 bash build_mingw_runtime.sh
34 bash build_gcc_rest.sh
35 bash build_gdb.sh
36 bash build_binutils_windows.sh
37