Try to avoid clashes with gdb libs by using separate prefixes.
[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
6 export MINGW_PREFIX=/mingw/32
7 export MINGW_TARGET=i686-w64-mingw32
8
9 bash build_binutils.sh
10 bash build_mingw_headers.sh
11 bash build_gcc_core.sh
12 bash build_mingw_runtime.sh
13 bash build_gcc_rest.sh
14 bash build_gdb.sh
15
16 export MINGW_PREFIX=/mingw/64
17 export MINGW_TARGET=x86_64-w64-mingw32
18
19 bash build_binutils.sh
20 bash build_mingw_headers.sh
21 bash build_gcc_core.sh
22 bash build_mingw_runtime.sh
23 bash build_gcc_rest.sh
24 bash build_gdb.sh
25