Skip to content

Commit

Permalink
Move things to buildInputs and add glibc.out glibc.static
Browse files Browse the repository at this point in the history
This fixes the nofile-limit.rs UI test.
  • Loading branch information
Noratrieb committed Feb 13, 2024
1 parent 7ff27e8 commit 85cc966
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/building/suggested.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,10 @@ If you're using nix, you can use the following nix-shell to work on Rust:
pkgs.mkShell {
name = "rustc";
nativeBuildInputs = with pkgs; [
gcc_multi binutils cmake ninja openssl pkg-config python39 git curl cacert patchelf nix
binutils cmake ninja pkg-config python3 git curl cacert patchelf nix
];
buildInputs = [
openssl glibc.out glibc.static
];
# Avoid creating text files for ICEs.
RUSTC_ICE = "0";
Expand Down

0 comments on commit 85cc966

Please sign in to comment.