Build fix for binutils.
[mingw-build.git] / build_all
1 #!/bin/bash -e
2
3 export MINGW_PARALLEL="-j4"
4 export MINGW_BUILD=x86_64-pc-linux-gnu
5 export MINGW_GCC_VERSION=4.7.3
6
7 export MINGW_PREFIX=/opt/mingw/32
8 export MINGW_TARGET=i686-w64-mingw32
9
10 bash build_binutils.sh
11 bash build_mingw_headers.sh
12 bash build_gcc_core.sh
13 bash build_mingw_runtime.sh
14 bash build_gcc_rest.sh
15 bash build_gdb.sh
16
17 export MINGW_PREFIX=/opt/mingw/64
18 export MINGW_TARGET=x86_64-w64-mingw32
19
20 bash build_binutils.sh
21 bash build_mingw_headers.sh
22 bash build_gcc_core.sh
23 bash build_mingw_runtime.sh
24 bash build_gcc_rest.sh
25 bash build_gdb.sh
26