dev -> debug

This commit is contained in:
Mylloon 2024-04-19 20:00:29 +02:00
parent 393e3dc4f4
commit 125e779902
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -22,7 +22,7 @@ abbr opamupdate "opam update && opam upgrade -y"
abbr tgz "tar czf 'Archive.tar.gz'"
abbr vgcc "clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes -fanalyzer -fsanitize=undefined -g *.c && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./*.out"
abbr vg++ "clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g -Wold-style-cast -Wsign-conversion *.cpp && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./*.out"
abbr vmake "make clean && clear; make dev && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./*.out"
abbr vmake "make clean && clear; make debug && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./*.out"
abbr zip "zip -r 'archive.zip' dossier"
abbr mfind "find /* 2> /dev/null | grep -i ''" # Search for any filename in all disks
abbr sfind "find * -type f -name '*.sync-conflict*' -ok rm {} \;"