Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. g++ -g -Wall -std=c++17
  2. -c ./src/pch.hpp -o ./build/pch.hpp.gch
  3.  
  4. g++ -g -Wall -std=c++17
  5. -c ./src/*.cpp
  6. -I./build/ -include pch.hpp
  7.  
  8. 1 error generated.
  9. <built-in>:1:10: fatal error: 'pch.hpp' file not found
  10. #include "pch.hpp"
  11.  
  12. g++ -g -Wall -std=c++17
  13. -c ./src/*.cpp
  14. -I./build/ -include pch.hpp.gch
  15. ./build/pch.hpp.gch:2:22: error: source file is not valid UTF-8
  16.  
  17. g++ -g -Wall -std=c++17
  18. -c ./src/*.cpp
  19. -I./src/ -I./build/ -include pch.hpp
  20.  
  21. g++ -g -Wall -std=c++17
  22. -c ./src/*.cpp
  23. -include ./build/pch.hpp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement