We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3bc959 + 238962a commit 520e832Copy full SHA for 520e832
flake.nix
@@ -62,9 +62,10 @@
62
# our cc wrapper arguments
63
CFLAGS = "-Werror -Wno-unused-command-line-argument";
64
}));
65
- # 32-bit clangStdenv seems broken in nixpkgs
66
- build-sanitized-clang = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: self.hydraJobs.build-sanitized.${system}.override {
67
- stdenv = nixpkgsFor.${system}.libcxxStdenv;
+
+ # x86_64-linux seems to be only working clangStdenv at the moment
+ build-sanitized-clang = nixpkgs.lib.genAttrs [ "x86_64-linux" ] (system: self.hydraJobs.build-sanitized.${system}.override {
68
+ stdenv = nixpkgsFor.${system}.llvmPackages_latest.libcxxStdenv;
69
});
70
71
release = pkgs.releaseTools.aggregate
0 commit comments