Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. {
  2. "name": "(gdb) Launch",
  3. "type": "cppdbg",
  4. "request": "launch",
  5. "program": "${workspaceFolder}/principal",
  6. "args": [],
  7. "stopAtEntry": false,
  8. "cwd": "${workspaceFolder}",
  9. "environment": [],
  10. "externalConsole": true,
  11. "MIMode": "gdb",
  12. "setupCommands": [
  13. {
  14. "description": "Enable pretty-printing for gdb",
  15. "text": "-enable-pretty-printing",
  16. "ignoreFailures": true
  17. }
  18. ]
  19. },
  20. ]
  21. }
  22.  
  23. g++ -Wall -Werror -Iinclude -g -DNDEBUG -c principal.cpp -o obj/principal.o
  24. g++ -Wall -Werror -Iinclude -g -DNDEBUG -c src/info.cpp -o obj/info.o
  25. g++ -Wall -Werror -Iinclude -g -DNDEBUG -c src/chain.cpp -o obj/chain.o
  26. g++ -Wall -Werror -Iinclude -g -DNDEBUG -c src/iterator.cpp -o obj/iterator.o
  27. g++ -Wall -Werror -Iinclude -g -DNDEBUG -c src/set.cpp -o obj/set.o
  28. g++ -Wall -Werror -Iinclude -g -DNDEBUG obj/principal.o obj/info.o obj/chain.o obj/iterator.o obj/set.o -o principal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement