diff options
Diffstat (limited to 'mingw-w64-build')
-rwxr-xr-x | mingw-w64-build | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mingw-w64-build b/mingw-w64-build index dc7a84f..2679784 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -121,11 +121,14 @@ build_toolchain() local prefix="$wd/$host" export PATH="$prefix/bin:$PATH" - i686_dwarf2="" if [[ "$1" = "i686" ]]; then i686_dwarf2="--disable-sjlj-exceptions --with-dwarf2" fi + if [[ "$pthreads" = true ]]; then + enable_threads="--enable-threads=posix" + fi + rm -fr "$prefix" clean_build "$bld/binutils" @@ -147,10 +150,6 @@ build_toolchain() cd "$prefix" || error_exit ln -s "./$host" "./mingw" || error_exit - if [[ "$pthreads" = true ]]; then - enable_threads="--enable-threads=posix" - fi - clean_build "$bld/gcc" echo "configuring gcc" >&3 "../../src/gcc-$v_gcc/configure" --target="$host" --disable-shared \ |