Skip to content

Commit

Permalink
added boost
Browse files Browse the repository at this point in the history
  • Loading branch information
Wes974 committed Feb 2, 2021
1 parent e0b294a commit 77796b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions dotfiles/pkglist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ autoconf-archive
automake
base-devel
bison
boost
clang
cmake
coreutils
Expand Down
5 changes: 5 additions & 0 deletions dotfiles/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/git/bin:/us

alias vim='/usr/bin/nvim'

# Alias for gcc
alias g='gcc -Wall -Wextra -Werror -pedantic -std=c99 -fsanitize=address -g'
alias gcc="grc --colour=auto gcc -Wextra -Wall -std=c99 -pedantic"
alias g++="grc --colour=auto g++ -Wall -Wextra -pedantic -std=c++17"
alias g++_sanitize="grc --colour=auto g++ -Wall -Wextra -pedantic -std=c++17 -fsanitize=address -g"
alias gcc_sanitize="grc --colour=auto gcc -Wextra -Wall -std=c99 -pedantic -fsanitize=address -g"

alias valgrind='valgrind --leak-check=full --show-leak-kinds=all --leak-resolution=high --track-origins=yes --vgdb=yes'

Expand Down

0 comments on commit 77796b1

Please sign in to comment.