More to come...
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

32 wiersze
1.5KB

  1. #!/bin/bash
  2. set -xe
  3. clang -DSTATIC_SOURCE -g -Weverything -O0 -o xhartae xhartae.c
  4. gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapter/chapter_0.o chapter/chapter_0.c
  5. gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapter/chapter_1.o chapter/chapter_1.c
  6. gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapter/chapter_2.o chapter/chapter_2.c
  7. gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapter/chapter_3.o chapter/chapter_3.c
  8. gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapter/chapter_4.o chapter/chapter_4.c
  9. gcc -g -Wall -Wextra -Wpedantic -O0 -c -o xhartae.o xhartae.c
  10. gcc -o xhartae xhartae.o chapter/chapter_0.o chapter/chapter_1.o chapter/chapter_2.o chapter/chapter_3.o chapter/chapter_4.o
  11. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_0.h
  12. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_0.c
  13. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_1.h
  14. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_1.c
  15. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_2.h
  16. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_2.c
  17. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_3.h
  18. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_3.c
  19. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_4.h
  20. #~splint -weak -warnposix -retvalother -syntax -type chapter/chapter_4.c
  21. #~splint -weak -warnposix -retvalother -syntax -type xhartae.c
  22. valgrind --show-leak-kinds=all --leak-check=full ./xhartae
  23. exit