diff options
Diffstat (limited to 'mingw-w64-build')
-rwxr-xr-x | mingw-w64-build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mingw-w64-build b/mingw-w64-build index bff82aa..eaf62e9 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -19,7 +19,7 @@ ROOT_PATH="$HOME/.zeranoe/mingw-w64" MINGW_W64_BRANCH="v9.x" -BINUTILS_BRANCH="binutils-2_39-branch" +BINUTILS_BRANCH="binutils-2_40-branch" GCC_BRANCH="releases/gcc-12" ENABLE_THREADS="--enable-threads=posix" @@ -445,6 +445,10 @@ change_dir "$SRC_PATH/gcc" execute "" "failed to download GCC dependencies" \ ./contrib/download_prerequisites +for i in mpc isl mpfr gmp; do + ln -s "$SRC_PATH/gcc/$i" "$SRC_PATH/binutils/$i" +done + export CFLAGS="-g0" export CXXFLAGS="-g0" export LDFLAGS="-s" |