I have upgraded to XCode 4.3.2. In this version, the traditional Developer and Library folders are coming up with the XCode app, i.e. the path for the developer folder is Applications/Xcode.app/Contents/Developer instead of Users/UserName/Developer.
With the previous version of XCode, I can build and run my project in simulator mode with the FoneMonkey toolbar from both XCode and the terminal.
After upgrading, I get the following errors:
Without adding SenTestingKit.framework to Link Libraries:
Undefined symbols for architecture i386: "_OBJC_CLASS_$_SenTestSuite", referenced from: objc-class-ref in libFoneMonkeyOCUnit.5.5b.a(FoneMonkey+OCUnit.o) "_OBJC_CLASS_$_SenTestObserver", referenced from: objc-class-ref in libFoneMonkeyOCUnit.5.5b.a(FoneMonkey+OCUnit.o) "_OBJC_CLASS_$_SenTestLog", referenced from: objc-class-ref in libFoneMonkeyOCUnit.5.5b.a(FoneMonkey+OCUnit.o) "_SenTestCaseDidStartNotification", referenced from: -[BPTestXunitXmlListener init] in libFoneMonkeyOCUnit.5.5b.a(BPOCUnitXMLReporter.o) "_SenTestCaseDidStopNotification", referenced from: -[BPTestXunitXmlListener init] in libFoneMonkeyOCUnit.5.5b.a(BPOCUnitXMLReporter.o) "_SenTestCaseDidFailNotification", referenced from: -[BPTestXunitXmlListener init] in libFoneMonkeyOCUnit.5.5b.a(BPOCUnitXMLReporter.o) "_SenTestSuiteDidStopNotification", referenced from: -[BPTestXunitXmlListener init] in libFoneMonkeyOCUnit.5.5b.a(BPOCUnitXMLReporter.o) "_SenTestSuiteDidStartNotification", referenced from: -[BPTestXunitXmlListener init] in libFoneMonkeyOCUnit.5.5b.a(BPOCUnitXMLReporter.o) ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)With SenTestingKit.framework in Link Libraries:
Undefined symbols for architecture i386: "_OBJC_CLASS_$_SenTestSuite", referenced from: objc-class-ref in libFoneMonkeyOCUnit.5.5b.a(FoneMonkey+OCUnit.o) "_OBJC_CLASS_$_SenTestObserver", referenced from: objc-class-ref in libFoneMonkeyOCUnit.5.5b.a(FoneMonkey+OCUnit.o) "_OBJC_CLASS_$_SenTestLog", referenced from: objc-class-ref in libFoneMonkeyOCUnit.5.5b.a(FoneMonkey+OCUnit.o) ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)Without SenTestingKit.framework and without LibFonemonkeyOCUnit.5.5b.a:
The app launches along with the FoneMonkey toolbar, but it is not able to run .m files since OCUnit files requires LibFonemonkeyOCUnit.5.5b.a.
What is the problem and how can I solve it?