Hi everybody! I would to user OOP on GBA. Is it possible ? My test application (compiled under GCC - DevKit Advanced based on GCC3.0.1 if I don't mistake) need...
Jerzy Kut
gephard-gbadev@...
Sep 2, 2001 4:18 am
Use g++ to compile: g++ blah.cpp or add -lstdc++ to the command line gcc -lstdc++ blah.cpp...
Jason Wilkins
fenix@...
Sep 2, 2001 8:04 am
For me to get Devkitadvance working I had to link with crtbegin.o crtend.o libstdc++.a and don't use -nostdlib OR -nodefaultlibs otherwise you'll have to link...