You are not logged in.
This is just strange, try and see whats wrong:
#include "GRRLIB/GRRLIB.h" //--------------------------------------------------------------------------------- int main(int argc, char **argv) { //--------------------------------------------------------------------------------- // Initialise the video system GRRLIB_Init();
Here is the error message from the compiler:
> "make" main.c linking ... WiiBrowse.elf main.o: In function `main': c:/WiiBrowse/source/main.c:16: undefined reference to `GRRLIB_Init' collect2: ld returned 1 exit status make[1]: *** [/c/WiiBrowse/WiiBrowse.elf] Error 1 "make": *** [build] Error 2 > Process Exit Code: 2 > Time Taken: 00:01
i bet god cant figure this out
Offline
In your Makefile did you include the path to the GRRLIB folder to compile the code:
GRRLIB := ../../GRRLIB TARGET := $(notdir $(CURDIR)) BUILD := build SOURCES := source source/gfx $(GRRLIB)/GRRLIB $(GRRLIB)/lib/libpng/pngu DATA := data INCLUDES :=
Offline