diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2023-01-29 22:00:46 -0500 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2023-01-29 22:00:46 -0500 |
commit | d0e3b943e1bbaef84a6efb61d8ececf88ed6839d (patch) | |
tree | d79f8f764925eaab8e926a7c4833d4c713cd52b5 /mingw-w64-build | |
parent | 27de94ed0622423dea087002846d7a6f6994e22d (diff) |
Update binutils to binutils-2_40-branch
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" |