Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b442f8ea9f21
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ee3eb80af9c8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 20, 2020

  1. alacritty: manually strip before running patchelf

    patchelf seems to generate an ELF that "strip" cannot process:
    
      strip: /tmp/stNGAZvd: not enough room for program headers, try linking with -N
      strip:/tmp/stNGAZvd[.interp]: bad value
    
    (This unfortunately does not cause any errors or even error output in
    the build log, since the default strip hook redirects them to /dev/null
    and ignores failures.)
    
    The lack of stripping ends up leaking paths to the compiler in the debug
    symbols. This more than doubles the transitive closure size of
    alacritty.
    
    Impact on closure size: 314.5M -> 131.8M.
    delroth committed Apr 20, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    mkg20001 Maciej Krüger
    Copy the full SHA
    e857e72 View commit details
  2. Copy the full SHA
    ee3eb80 View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 pkgs/applications/misc/alacritty/default.nix
6 changes: 6 additions & 0 deletions pkgs/applications/misc/alacritty/default.nix
Original file line number Diff line number Diff line change
@@ -104,6 +104,12 @@ rustPlatform.buildRustPackage rec {
'' else ''
install -D extra/linux/Alacritty.desktop -t $out/share/applications/
install -D extra/logo/alacritty-term.svg $out/share/icons/hicolor/scalable/apps/Alacritty.svg
# patchelf generates an ELF that binutils' "strip" doesn't like:
# strip: not enough room for program headers, try linking with -N
# As a workaround, strip manually before running patchelf.
strip -S $out/bin/alacritty
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
''
) + ''