summaryrefslogtreecommitdiff
path: root/pkgs/development/tools/misc/binutils
AgeCommit message (Collapse)Author
6 dayslibopcodes_2_38: fix `gcc-15` buildSergei Trofimovich
Without the change the build fails on `master` as https://hydra.nixos.org/build/327027927: ``` mips-opc.c: In function 'decode_mips_operand': mips-formats.h:86:7: error: expected identifier or '(' before 'static_assert' 86 | static_assert[(1 << (SIZE)) == ARRAY_SIZE (MAP)]; \ | ^~~~~~~~~~~~~ ``` Apply upstream fix to get it built. ZHF: #516381
2026-02-08binutils-unwrapped: 2.44 -> 2.46Sergei Trofimovich
Changes: https://sourceware.org/pipermail/binutils/2026-February/148149.html
2026-01-02binutils: fix cygwin buildDavid McFarland
2025-12-10treewide: clean up 'meta = with' patternIhar Hrachyshka
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-10-09treewide: remove usages of obsolete pie hardening flagLuna Nova
2025-10-06binutils: fix CVE-2025-5245Tyler Langlois
Backport derived from upstream commit; see: https://nvd.nist.gov/vuln/detail/CVE-2025-5245
2025-10-06binutils: fix CVE-2025-5244Tyler Langlois
2025-07-24treewide: run nixfmt 1.0.0Wolfgang Walther
2025-07-03binutils-unwrapped-all-targets: fix build on DarwinAlyssa Ross
gas isn't built for Darwin, so previously this failed when trying to install it: make: Entering directory '/private/tmp/nix-build-binutils-2.44.drv-0/build' make: *** /private/tmp/nix-build-binutils-2.44.drv-0/build-arm64-apple-darwin/gas: No such file or directory. Stop. make: Leaving directory '/private/tmp/nix-build-binutils-2.44.drv-0/build' Fixes: 437ad124ac97 ("binutils-unwrapped-all-targets: per-target gas")
2025-06-05binutils-unwrapped-all-targets: per-target gasAlyssa Ross
pwntools wants to be able to disassemble arbitrary programs, so it wants to be able to find gas for an arbitrary architecture in the same prefix.
2025-06-05binutils: build outside source treeAlyssa Ross
This will allow us to configure and build binutils multiple times, to make gas available for multiple targets in binutils-unwrapped-all-targets.
2025-06-05binutils: use a no-op for makeinfoAlyssa Ross
This way, we don't have to touch every file generated from one we patch. It also makes it possible to do an out-of-tree build — otherwise, the source files would be copied into the build directory during Make, so there'd be no opportunity to touch some of them. This same hack is already used by the minimal-bootstrap binutils.
2025-04-19treewide: remove usage of deprecated apple_sdk framework stubsIhar Hrachyshka
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
2025-04-03binutils: 2.43.1 -> 2.44 (#388157)Vladimír Čunát
2025-03-13treewide: remove unused argumentsSigmanificient
2025-03-08binutils: 2.43.1 -> 2.44Sergei Trofimovich
Did not drop `gold` yet as it will require quite a bit `nixpkgs` work. Changes: https://lists.gnu.org/archive/html/info-gnu/2025-02/msg00001.html
2024-12-10treewide: format all inactive Nix filesSilvan Mosberger
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \ --argstr baseRev 78e9caf153f5a339bf1d4c000ff6f0a503a369c8 result/bin/apply-formatting $NIXPKGS_PATH
2024-11-14llvmPackages.llvm: Drop dependency on target through libbfdPeter Waller
Currently the target triple leaks into the clang build via llvm using libbfd, whose build varies according to the target triple. LLVM only uses libbfd to enable LTO via the linker plugin (called LLVMgold.so, though multiple linkers can use the same plugin). Drop the dependency on the libbfd build, and consume the only needed source instead. (This would be a good use of CA-derivations FWIW). The result of this commit is that these match: * nix eval --raw nixpkgs#clang.cc * nix eval --raw nixpkgs#pkgsStatic.pkgsLLVM.stdenv.cc.cc * nix eval --raw nixpkgs#pkgsCross.aarch64-multiplatform.pkgsLLVM.stdenv.cc.cc This means fewer clang builds will be needed to support cross configurations, and users wanting to target an exotic cross configuration should be able to do so without a rebuild of clang. Also drops libbfd.hasPluginAPI which no longer has any users. Signed-off-by: Peter Waller <p@pwaller.net>
2024-11-09Merge master into staging-nextgithub-actions[bot]
2024-11-08treewide: remove redundant patches and locksaleksana
These files are no longer referenced.
2024-10-21binutils: make patches unconditionalAlyssa Ross
The Darwin patch was always supposed to be unconditional, and neither of these patches should have any effect when applied to other targets. Conditional application should be avoided where possible as it makes it very easy to miss when a patch needs to be updated.
2024-10-21binutils-unwrapped: remove broken vc4 sources (#350247)Emily
2024-10-21binutils: remove autoreconfHook on iOSAlyssa Ross
This was added in ebc224377853 ("binutils: Add iOS as a supported platform"), at the same time as a patch. That patch was removed in 045c2d219ddb ("binutils-unwrapped: remove broken iOS patch"), and I'm not sure what other reason there would be for autoreconfHook to be required specifically for iOS, so I think we can remove it. It's not possible to test since iOS cross has been broken for months, and keeping this around is making other refactors (like adding cross binutils packages) harder.
2024-10-21binutils-unwrapped: remove broken vc4 sourcesAlyssa Ross
This hasn't made it past patchPhase since dde943e5356b ("Revert "Revert "Merge pull request #86954 from lovesegfault/binutils-2.34"""), more than four ago. It's therefore safe to say that nobody depends on this continuing to work in recent Nixpkgs, and all these targetPlatform conditionals are making new development (like adding cross binutils packages), so let's just remove it. It can be brought back if somebody wants to make it work in future, but given that upstream binutils will continue to diverge from the stagnant vc4 fork, a better way of doing this would be to upstream vc4 support to binutils, or at the very least use a different expression for vc4 binutils.
2024-10-21binutils-unwrapped: remove broken iOS patchAlyssa Ross
This hasn't applied since e1ef521cffc2 ("binutils: 2.39 -> 2.40"), almost two years ago. It's therefore safe to say that nobody depends on this continuing to work in recent Nixpkgs, and all these targetPlatform conditionals are making new development (like adding cross binutils packages), so let's just remove it. It can be brought back if somebody wants to make it work in future, but since it seems to just be trying to make iOS behave identically to macOS, a better solution would probably be to just pass the darwin triple when building for iOS.
2024-10-05Merge master into staging-nextgithub-actions[bot]
2024-10-05Merge master into haskell-updatesgithub-actions[bot]
2024-10-05Merge master into staging-nextgithub-actions[bot]
2024-10-04treewide: remove unreferenced patch filesPeder Bergebakken Sundt
Found with `fd \\.patch$ pkgs/ -x bash -c 'rg -F "{/}" pkgs/ -q || echo {}'`` We're running more and more into patches fetched via `applyPatches`, for the next PR i'll script something to account for that.
2024-09-27Merge branch master into haskell-updatessternenseemann
Conflicts from #341407 resolved.
2024-09-25Merge branch 'master' into staging-nextArtturin
2024-09-25treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`Artturin
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
2024-09-20binutils: CoreServices depends on host, not build platformsternenseemann
This was introduced in 879556bea51ce and 33c0dd692b0cbc47e6edb4e5c158378fe4962769. See: https://github.com/NixOS/nixpkgs/commit/33c0dd692b0cbc47e6edb4e5c158378fe4962769#r146876310.
2024-08-18binutils-unwrapped: 2.42 -> 2.43.1Sergei Trofimovich
Changes: - https://lists.gnu.org/archive/html/info-gnu/2024-08/msg00001.html - https://mail.gnu.org/archive/html/info-gnu/2024-08/msg00003.html
2024-08-03pkgs/development: remove unused argumentsSigmanificient
2024-07-13binutils: drop Darwin hackRandy Eckenrode
Darwin no longer uses GNU binutils and prevents it from being used in the bootstrap. This hack is no longer necessary.
2024-07-04binutils: make conditional on Darwin to avoid Linux rebuildsRandy Eckenrode
2024-07-04binutils: fix build on DarwinRandy Eckenrode
- Update Darwin version check patch; and - Use CoreServices when building on Darwin.
2024-06-20binutils 2.41 -> 2.42silvanshade
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-05-27Merge pull request #313892 from rhelmot/freebsd-minimal3/binutilsJohn Ericson
binutils: do not build with -static-libgcc on FreeBSD
2024-05-26binutils: do not build with -static-libgcc on FreeBSDAudrey Dutcher
2024-05-26binutils: Add --undefined-version on lld 17+Audrey Dutcher
2024-02-29Merge remote-tracking branch 'origin/staging-next' into stagingMartin Weinelt
Conflicts: - pkgs/development/python-modules/influxdb/default.nix - pkgs/development/tools/misc/binutils/default.nix
2024-02-29substitute: Deprecate `replacements`, introduce `replacementsList`Silvan Mosberger
Also: - Add tests - Treewide update - Improve docs
2024-02-07binutils: 2.40 -> 2.41Sergei Trofimovich
Dropped 3 upstreamed / backported patches: - CVE-2023-1972 - mingw-abort-fix - mips64-default-n64 Added one backport to fix `llvm` testsuite failures: - gold-powerpc-for-llvm Changes: https://lists.gnu.org/archive/html/info-gnu/2023-07/msg00009.html
2024-01-07treewide: simplify exec format conditionalsRyan Burns
2023-06-22binutils-unwrapped: add option to have gold as ldArtturin
2023-05-26binutils: fix CVE-2023-1972Henri Rosten
Signed-off-by: Henri Rosten <henri.rosten@unikie.com>
2023-04-27binutils: mark gold as unavailable on loongarch64jackyliu16