aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-07-02 10:44:38 -0400
committerCameron Katri <me@cameronkatri.com>2021-07-02 10:44:38 -0400
commitcba577de5cf9dc5b89b19084943d56f834d4e89a (patch)
tree08de243f32aab31c1871c0a1f0402bd3c41161db
parent0704e7b04e25272b3c5a75524818f0cbcc5929d3 (diff)
downloaddotfiles-cba577de5cf9dc5b89b19084943d56f834d4e89a.tar.gz
dotfiles-cba577de5cf9dc5b89b19084943d56f834d4e89a.tar.zst
dotfiles-cba577de5cf9dc5b89b19084943d56f834d4e89a.zip
Fix path stuff, remove MEMO_.*LTO cause it causes too many problems on large projects
-rw-r--r--.crossenv.zsh2
-rwxr-xr-x.zshrc11
2 files changed, 7 insertions, 6 deletions
diff --git a/.crossenv.zsh b/.crossenv.zsh
index c3be1f9..10c1a5e 100644
--- a/.crossenv.zsh
+++ b/.crossenv.zsh
@@ -72,8 +72,6 @@ export TARGET_SYSROOT=${IPHONEOS_SYSROOT}
export DEB_MAINTAINER="Cameron Katri <me@cameronkatri.com>"
export MEMO_DEVICE_IP=localhost
export MEMO_DEVICE_PORT=2222
-export MEMO_FORCE_LTO=1
-export MEMO_ALT_LTO_LIB=/usr/local/llvm10/lib/libLTO.so
export MEMO_TARGET=iphoneos-arm64
export DPKG_TYPE=xz
export GNUBINDIR=/usr/local/gnubin
diff --git a/.zshrc b/.zshrc
index 63a2ec9..b962ee5 100755
--- a/.zshrc
+++ b/.zshrc
@@ -66,10 +66,6 @@ export GPG_TTY=$(tty)
export GOPATH=$HOME/Documents/go
-export PATH="$HOME/.local/bin:/usr/local/libexec/ccache:$PATH"
-export PATH="$GOPATH/bin:$PATH"
-typeset -U path
-
# Completion for kitty
kitty + complete setup zsh | source /dev/stdin
@@ -98,3 +94,10 @@ fi
export CVS_RSH=ssh
alias dotconfig='git --git-dir=$HOME/Documents/dotfiles --work-tree=$HOME'
+
+# Set PATH after everthing else.
+export PATH="$GOPATH/bin:$PATH"
+export PATH="/usr/local/llvm12/bin:$PATH"
+export PATH="/usr/local/libexec/apple/bin:$PATH"
+export PATH="$HOME/.local/bin:/usr/local/libexec/ccache:$PATH"
+typeset -U path