I do alt+1 in Programmers notepad and I get the error:
I tried using the bash shell thingy that comes with devkitPro> "make"
> Failed to create process: The system cannot find the file specified.
> Process Exit Code: 0
> Time Taken: 00:00
I use CD to go to my directory with my project
I type make
It says:
From what I get I need to set a environment variable called DEVKITPPC to my path to devkitPPC. so I typed "export DEVKITPPC=/c/devkitPro/devkitPPC" then tried make againMakefile:7: *** "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC". Stop.
this time I got thousands of errors, with my .c file. which make no sense, my .c file is perfect. here's a little bit of the errors:
It then complains about "static GXRModeObj *rmode = NULL;". it expected stuff like = or ; before *.template.c
c:/devkitPro/Projects.../template.c:3:20: warning: gccore.h: no such file or directory.
c:/devkitPro/Projects.../template.c:3:20: warning: wiiuse/wpad.h: no such file or directory.
Then it complains about functions and constants that aren't defined since it didn't include gccore.h and friends.
then, alot of undeclared constants and functions later, I get these two lines:
And that's it. What is my problem? and what should I do?make[1]: *** [template.o] Error 1
make: *** [build] Error 2