search for: objc_class_name_nsautoreleasepool

Displaying 2 results from an estimated 2 matches for "objc_class_name_nsautoreleasepool".

2007 Jul 19
2
[LLVMdev] Trouble Resolving Objective-C Symbols in lli
...ndation.exe[2535] Hello, World! $ lli -load=/System/Library/Frameworks/Foundation.framework/Foundation SimpleFoundation.bc Segmentation fault $ lli -force-interpreter -load=/System/Library/Frameworks/Foundation.framework/Foundation SimpleFoundation.bc Could not resolve external global address: .objc_class_name_NSAutoreleasePool Abort trap $ nm /System/Library/Frameworks/Foundation.framework/Foundation | grep .objc_class_name_NSAutoreleasePool 00000000 A .objc_class_name_NSAutoreleasePool It seems that when linked by GCC the symbols are found without any trouble however when using lli, the symbols arn't resolved pro...
2007 Jul 19
0
[LLVMdev] Trouble Resolving Objective-C Symbols in lli
...ad=/System/Library/Frameworks/Foundation.framework/Foundation > SimpleFoundation.bc > > Segmentation fault > > $ lli -force-interpreter > -load=/System/Library/Frameworks/Foundation.framework/Foundation > SimpleFoundation.bc > > Could not resolve external global address: .objc_class_name_NSAutoreleasePool > Abort trap > > $ nm /System/Library/Frameworks/Foundation.framework/Foundation | > grep .objc_class_name_NSAutoreleasePool > > 00000000 A .objc_class_name_NSAutoreleasePool Ok, as you figured out, you do need to tell lli explicitly what frameworks to load. Once you have that,...