Skip to content

Commit

Permalink
fix(containers): add libgcc.lib lib to lib path
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 3, 2024
1 parent a6fe1d5 commit d32d8d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix/containers/code.nix
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ in
"NB_USER=${username}"
"NB_UID=1000"
"NB_PREFIX=/"
"LD_LIBRARY_PATH=${pythonPackageEnv}/lib:${pkgs.libgcc}/lib:/usr/local/nvidia/lib64"
"LD_LIBRARY_PATH=${pythonPackageEnv}/lib:${pkgs.libgcc.lib}/lib:/usr/local/nvidia/lib64"
"NVIDIA_DRIVER_CAPABILITIES='compute,utility'"
"NVIDIA_VISIBLE_DEVICES=all"
"QUARTO_PYTHON=${pythonPackageEnv}/bin/python"
Expand Down
2 changes: 1 addition & 1 deletion nix/containers/jupyter.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ in
"NB_USER=${username}"
"NB_UID=1000"
"NB_PREFIX=/"
"LD_LIBRARY_PATH=${pythonPackageEnv}/lib:${pkgs.libgcc}/lib:/usr/local/nvidia/lib64"
"LD_LIBRARY_PATH=${pythonPackageEnv}/lib:${pkgs.libgcc.lib}/lib:/usr/local/nvidia/lib64"
"NVIDIA_DRIVER_CAPABILITIES='compute,utility'"
"NVIDIA_VISIBLE_DEVICES=all"
"QUARTO_PYTHON=${pythonPackageEnv}/bin/python"
Expand Down

0 comments on commit d32d8d1

Please sign in to comment.