These classes are straight C++ at this point...
I've actually butchered my Makefile in a desperate attempt to get this error resolved...the LDFlags are currently: -lobjc -framework CoreAudio (etc), although I did have a -lstdc++ at one point. And now even without it, even after I delete the *.o files, I still get this -lstdc++ error.
The C flags are currently blank, the CPP flags are just the -I/usr/local/arm-apple-darwin/include/CoreAudio type flags.
So at one point, I had incorporated all the things that people said to incorporate to compile these things, but I've been cutting it down, so now it's pretty much like the standard makefile I use to compile ObjC, except for:
Code:
CXX=arm-apple-darwin-g++
LD=$(CXX)
When I run arm-apple-darwin-g++ on an individual file, I get the same "Can't locate file for -lstdc++" error.
I seem to remember that when this trip began, I was getting an error about being unable to find method for std::(such and such)...
I'm not familiar with the land outside of Java, to this makefile stuff is new to me...
Thanks