From bece8e4e7b920e3a395317fc0dde68a5ead5524b Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sat, 20 Jan 2024 05:40:37 -0600 Subject: [PATCH] tweaks to env --- justfile | 2 +- shell.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 8167c04..266d18f 100644 --- a/justfile +++ b/justfile @@ -5,7 +5,7 @@ build: make -j8 --dir bld/ rm -rf ~/.cache/lumina/lumina/qmlcache/ run: - RUST_BACKTRACE=1 RUST_LOG=debug ./bld/bin/lumina + RUST_LOG=debug ./bld/bin/lumina lint: cargo clippy clean: diff --git a/shell.nix b/shell.nix index 23e4518..5e40003 100644 --- a/shell.nix +++ b/shell.nix @@ -64,7 +64,7 @@ mkShell rec { # lockFile = ./Cargo.lock; # }; - RUST_BACKTRACE = "full"; + RUST_BACKTRACE = "1"; LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; CMAKE_C_COMPILER = "${gcc}/bin/gcc"; CMAKE_CXX_COMPILER = "${gcc}/bin/g++";