aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2023-01-29 22:00:46 -0500
committerToni Uhlig <matzeton@googlemail.com>2023-04-20 15:44:29 +0200
commit63454e57747cc92907800e9e069b21707c6cf2e1 (patch)
treedb67458dc84faafc7312ae8470aafadb4489e854
parenteaf6e686bd84dd3ce891d412d7d4444473e27410 (diff)
Update binutils to binutils-2_40-branch
-rw-r--r--README.md2
-rwxr-xr-xmingw-w64-build6
2 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index aaf3f8d..a08e650 100644
--- a/README.md
+++ b/README.md
@@ -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"