I tried compiling a C++ program only to get a cryptic error similar to โsymbols not found for architecture x86_64.โ Thanks, g++, for not making any sense. The problem was that I had a prototype declared in a global scope like: //#include stuff here// This is a function "prototype"// Make the existence of badFunctionName() known...
Read More