When trying to compile my code with g++ i get this:
MayaFunctions.h:5:27: error: calling fdopen: Bad file descriptor
in that line, I simply have
#include "AnotherFile.h"
Google told me this has something to do with precompiled headers, but I can't figure out how to turn them off.
1) how to turn off using precompiled headers with g++ flags?
2) what else would be causing this??
Thanks!
Dave