Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. $ pwd
  2. /usr/ports/pobj/etl-0.04.19/ETL-0.04.19/test
  3. $ cat m.cc
  4. #include <iostream>
  5.  
  6. int
  7. main()
  8. {
  9.     return 0;
  10. }
  11. $
  12. $ c++ -I../ETL -c m.cc
  13. In file included from m.cc:1:
  14. In file included from /usr/include/c++/v1/iostream:38:
  15. In file included from /usr/include/c++/v1/ios:216:
  16. /usr/include/c++/v1/__locale:140:5: error: unknown type name 'once_flag'
  17.     once_flag      __flag_;
  18.     ^
  19. 1 error generated.
  20. $ c++ -c m.cc
  21. $ echo $?
  22. 0
  23. $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement