Advertisement
Guest User

Untitled

a guest
Nov 11th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. $ cat fml.cc
  2. #ifndef i386
  3. #error i386 not defined
  4. #endif
  5. $ g++ -c fml.cc
  6. $ g++ -std=c++0x -c fml.cc
  7. fml.cc:2:2: error: #error i386 not defined
  8. $ g++ -std=gnu++0x -c fml.cc
  9. $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement