GP32 Prob With Mm_sdk


0-bake

Active Member
Joined
Dec 15, 2003
Messages
538
hi,

i have a question, that is totally noobish, but i can't figure it out. i used MM devktid a while ago, and today i wanted to start again, but the prob is, that i can't compile anything. the first error the compiler returns, is, that the "gp32.h" cannot be found. the only path i set (win2000) is the /bin folder.

i use the old mm_sdk, i deleted the old folder and set it up completely new, but the same error occurs.

how can i fix it?

thx
 
The paths for the #include statements are resolved by the "-I" flag of gcc.
(like -I/opt/gp32/include , or whatever path you use)
If that doesn't help make sure you state
#include <gp32.h>
and not
#include "gp32.h"
since the latter one only means to look in the same path as the C-file. gcc usually uses include-paths for both, though.

Greetings,
SvOlli
 
Back
Top