This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .zshrc mashup of davesdots and robbseaton | |
# "compile slow, run fast." - family motto | |
export CFLAGS="-O3 -funsafe-loop-optimizations -ffast-math -march=native -pipe" | |
export CXXFLAGS=${CFLAGS} | |
# export LDFLAGS=${CFLAGS} | |
# I think I speak for everyone when I say "fuck gcc" | |
alias cc="clang -Wall -Wextra -Werror" |