Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ cat fml.cc
- #ifndef i386
- #error i386 not defined
- #endif
- $ g++ -c fml.cc
- $ g++ -std=c++0x -c fml.cc
- fml.cc:2:2: error: #error i386 not defined
- $ g++ -std=gnu++0x -c fml.cc
- $
Advertisement
Add Comment
Please, Sign In to add comment