From 61a4cc1269b5ba6192b257ef86ccf70a703fd1c4 Mon Sep 17 00:00:00 2001 From: baldo Date: Mon, 23 May 2022 10:49:09 +0200 Subject: [PATCH] Fix: Workaround GLIBC not found issue in Webstorm --- nix/lib.inc.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/lib.inc.sh b/nix/lib.inc.sh index 99eabc9..f12c7ca 100644 --- a/nix/lib.inc.sh +++ b/nix/lib.inc.sh @@ -6,5 +6,6 @@ function wrap() { SHELL_NIX="$REPO/shell.nix" QUOTED_ARGS="$(printf "${1+ %q}" "$@")" + export LD_LIBRARY_PATH= exec nix-shell "$SHELL_NIX" --pure --run "$TOOL $QUOTED_ARGS" }