diff --git a/fish/.config/fish/conf.d/developer.fish b/fish/.config/fish/conf.d/developer.fish index 5af117c..5e7fd73 100644 --- a/fish/.config/fish/conf.d/developer.fish +++ b/fish/.config/fish/conf.d/developer.fish @@ -4,6 +4,8 @@ alias cformat='clang-format -i -style=webkit' alias maketmp='make BUILD_DIR=/tmp/(basename (pwd))' +alias cargotmp='env CARGO_TARGET_DIR=/tmp/cargo/(basename (pwd)) cargo' + function statusgit --argument show if test -z $show set show_status false diff --git a/script/.local/bin/makepkg b/script/.local/bin/makepkg index 5efe20a..0f56676 100755 --- a/script/.local/bin/makepkg +++ b/script/.local/bin/makepkg @@ -1,4 +1,4 @@ #!/usr/bin/env bash -RUSTFLAGS="-Clink-arg=-fuse-ld=lld" /usr/bin/makepkg "$@" +RUSTFLAGS="-Clink-arg=-fuse-ld=lld" CC="clang" CXX="clang++" /usr/bin/makepkg "$@"