diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2023-01-29 22:00:46 -0500 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-04-20 15:44:29 +0200 |
commit | 63454e57747cc92907800e9e069b21707c6cf2e1 (patch) | |
tree | db67458dc84faafc7312ae8470aafadb4489e854 | |
parent | eaf6e686bd84dd3ce891d412d7d4444473e27410 (diff) |
Update binutils to binutils-2_40-branch
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | mingw-w64-build | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -12,7 +12,7 @@ files. ## Default Branches * [MinGW-w64](https://mingw-w64.org) v9.x -* [Binutils](https://www.gnu.org/software/binutils/) binutils-2_39-branch +* [Binutils](https://www.gnu.org/software/binutils/) binutils-2_40-branch * [GCC](https://gcc.gnu.org/) releases/gcc-12 ## Default Prefix diff --git a/mingw-w64-build b/mingw-w64-build index e10c1f5..b681f7d 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -19,7 +19,7 @@ ROOT_PATH="$HOME/.mingw-w64-build-ng" MINGW_W64_BRANCH="v9.x" -BINUTILS_BRANCH="binutils-2_39-branch" +BINUTILS_BRANCH="binutils-2_40-branch" GCC_BRANCH="releases/gcc-12" USE_TARBALL_RELEASES=1 @@ -518,6 +518,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" |