On Jul 23, 2007, at 5:11 AM, Jing wrote:
> ZeroLink: unknown symbol '__Z10myglutConeddiii'
> fem has exited due to signal 6 (SIGABRT).
This is a C++ signature, but AFAIK, GLUT is pure C. You may fix this
issue by surrunding
#include <glut.h>
with
#ifdef _cplusplus
extern "C" {
#endif
#include <glut.h>
#ifdef _cplusplus
}
#endif
I am surprised though that this is not part of the glut headers already.
----
http://robowerk.com/
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk