added -Wpedantic to compile.sh
This commit is contained in:
parent
0fb59f4859
commit
e3a93001ef
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
[ -z "${1}" ] && echo "error: no arguments given" && exit 2
|
||||
[ "${1}" == "clean" ] && rm -v $(ls --color=no -1 | grep -v "\(\.c\|\.sh\)$") && exit
|
||||
gcc -Wall -Wextra -O2 -g -o "${1:0:-2}" "${1}"
|
||||
gcc -Wall -Wextra -Wpedantic -O2 -g -o "${1:0:-2}" "${1}"
|
||||
exit
|
||||
|
|
Loading…
Reference in New Issue