Commit Graph

9 Commits

Author SHA1 Message Date
Sergei Trofimovich
341a21d941 mold: 2.34.0 -> 2.34.1
Changes: https://github.com/rui314/mold/releases/tag/v2.34.1
2024-10-10 06:32:54 +01:00
R. Ryantm
e2c5f11c59 mold: 2.33.0 -> 2.34.0 2024-10-01 01:20:25 +00:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
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-25 00:04:37 +03:00
Mathias Zhang
a0dd2b8964
mold: 2.32.1 -> 2.33.0 2024-08-08 11:35:11 +08:00
AMS21
5692d94a15
mold: 2.32.0 -> 2.32.1 2024-06-27 11:45:55 +02:00
Azat Bahawi
30b768b583
Merge pull request #318526 from AMS21/mold_2.32.0
mold: 2.31.0 -> 2.32.0
2024-06-10 10:31:12 +03:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
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-06-09 23:07:45 +02:00
AMS21
dfeaaed874
mold: 2.31.0 -> 2.32.0 2024-06-09 15:19:14 +02:00
Pavel Sobolev
5346fb25bd
mold: 2.30.0 -> 2.31.0 2024-05-03 19:35:47 +03:00