Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Objective-c++ symbol not found strangeness

hej.h void hej(); hej.m void hej(){} main.mm #import "hej.h" int main(int argc, char *argv[]) { } This gives me: "hej()", referenced from: _main in main.o symbol(s) not found If I rename ...
1
vote
2answers
2k views

Xcode print symbol not found for my C function which used in Objective-C method body

Xcode build prints this error . Undefined symbols: "EGViewportDimensionMake(unsigned int, unsigned int, unsigned int, unsigned int)", referenced from: -[Renderer render] in ...
0
votes
1answer
176 views

Error while linking libvorbisfile.dylib into Mac application

I'm working on a program that loads sounds from Ogg Vorbis files, but whatever I do, the XCode project just doesn't seem to want to link libvorbisfile.a into my program. I keep getting linking errors: ...