Commit diff
Commit bc17a82fe4319e6c61d8ca891eff95c7fd996b8
commit bc17a82fe4319e6c61d8ca891eff95c7fd996b8f
Author: Greg Haerr <greg@censoft.com>
Date: Wed Feb 11 22:36:11 2026 -0700
Turn off development mode in binutils to disable warnings=errors, but not required anymore
---
tools/Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tools/Makefile b/tools/Makefile
index 0c9234f0..baec444c 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -49,6 +49,9 @@ $(BUILDDIR)/.binutils.src: $(DISTDIR)/$(BINUTILS_DIST).tar.gz
cd $(BUILDDIR)/binutils-src/zlib && \
sed -i.bak 's/defined(MACOS) || defined(TARGET_OS_MAC)/defined(MACOS)/' zutil.h && \
rm -f zutil.h.bak ;; esac
+ cd $(BUILDDIR)/binutils-src/bfd && \
+ sed -i.bak 's/development=.*/development=false/' development.sh && \
+ rm -f development.sh.bak
touch $(BUILDDIR)/.binutils.src
$(BUILDDIR)/.binutils.build: $(BUILDDIR)/.binutils.src