Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.88 KB | None | 0 0
  1. rm -f main *.o *.d
  2. gcc -g -O2 -std=c99 -Wall -Werror -pedantic -Wformat=2 -Wshadow -Wpointer-arith -Wunreachable-code -Wconversion -Wno-sign-conversion -Wbad-function-cast -DCORRECTOR   -c -o pruebas_catedra.o pruebas_catedra.c
  3. gcc -g -O2 -std=c99 -Wall -Werror -pedantic -Wformat=2 -Wshadow -Wpointer-arith -Wunreachable-code -Wconversion -Wno-sign-conversion -Wbad-function-cast -DCORRECTOR   -c -o testing.o testing.c
  4. gcc -g -O2 -std=c99 -Wall -Werror -pedantic -Wformat=2 -Wshadow -Wpointer-arith -Wunreachable-code -Wconversion -Wno-sign-conversion -Wbad-function-cast -DCORRECTOR   -c -o lista.o lista.c
  5. gcc -g -O2 -std=c99 -Wall -Werror -pedantic -Wformat=2 -Wshadow -Wpointer-arith -Wunreachable-code -Wconversion -Wno-sign-conversion -Wbad-function-cast -DCORRECTOR   -c -o main.o main.c
  6. gcc -g -O2 -std=c99 -Wall -Werror -pedantic -Wformat=2 -Wshadow -Wpointer-arith -Wunreachable-code -Wconversion -Wno-sign-conversion -Wbad-function-cast -DCORRECTOR   -c -o hash.o hash.c
  7. gcc -g -O2 -std=c99 -Wall -Werror -pedantic -Wformat=2 -Wshadow -Wpointer-arith -Wunreachable-code -Wconversion -Wno-sign-conversion -Wbad-function-cast -DCORRECTOR   -c -o hash_pruebas.o hash_pruebas.c
  8. gcc -o main pruebas_catedra.o testing.o lista.o main.o hash.o hash_pruebas.o
  9. hash_pruebas.o: In function `pruebas_hash_catedra':
  10. /tmp/corrector.baxt62yc/skel/hash_pruebas.c:399: multiple definition of `pruebas_hash_catedra'
  11. pruebas_catedra.o:/tmp/corrector.baxt62yc/skel/pruebas_catedra.c:472: first defined here
  12. hash_pruebas.o: In function `pruebas_volumen_catedra':
  13. /tmp/corrector.baxt62yc/skel/hash_pruebas.c:416: multiple definition of `pruebas_volumen_catedra'
  14. pruebas_catedra.o:/tmp/corrector.baxt62yc/skel/pruebas_catedra.c:492: first defined here
  15. collect2: error: ld returned 1 exit status
  16. Makefile:24: recipe for target 'main' failed
  17. make: *** [main] Error 1
  18. make: Target 'all' not remade because of errors.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement