Xcode gdb SIGTRAP on an OpenGL Project
Not sure if this is the right place to put this, but here is is:
I started a new glut/openGL project in Xcode, and add the necessary code. But when I build and go, it exits with Status 5: SIGTRAP.

I then tried adding OSC's GLUT tutorial code in main.c, but that changes nothing.
Here's exactly what I did:
main.c
I started a new glut/openGL project in Xcode, and add the necessary code. But when I build and go, it exits with Status 5: SIGTRAP.

I then tried adding OSC's GLUT tutorial code in main.c, but that changes nothing.
Here's exactly what I did:
- Made new 'empty project' in Xcode.
- Project > New Target > "OpenGL Test"
- Right-click on the target, then select 'add existing frameworks'.
- Add OpenGL.framework and GLUT.framework
- File > new File > empty file > "main.c"
- Copy and paste the code below to main.c
main.c
Code:
#include <stdlib.h>
#include <GLUT/glut.h>
void display(void)
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glutSwapBuffers();
}
void reshape(int width, int height)
{
glViewport(0, 0, width, height);
}
void idle(void)
{
glutPostRedisplay();
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH);
glutInitWindowSize(640, 480);
glutCreateWindow("GLUT Program");
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutIdleFunc(idle);
glutMainLoop();
return EXIT_SUCCESS;
}~ Bring a Pen ~
That should fail to link, following your steps, because you didn't add OpenGL.framework.
After adding that, it works fine for me.
If it still crashes, you should post the backtrace.
After adding that, it works fine for me.
If it still crashes, you should post the backtrace.
Strange, looks OK at a glance. When it crashes, it should write a detailed crash log to ~/Library/Logs/CrashReporter/YourAppNameHere_someTimeAndDateInfo.crash. Check this file for details. You can post the whole log here if you have trouble deciphering it.
arekkusu : I did I said I did, am I missing something?
I tried copying the only remaining .xcodeproj project that would compile, but even that wouldn't compile!
ThemsAllTook:
Here's the crash report:
(It's a long one)
I tried copying the only remaining .xcodeproj project that would compile, but even that wouldn't compile!
ThemsAllTook:
Here's the crash report:
(It's a long one)

Code:
Process: Xcode [1018]
Path: /Developer/Applications/Xcode.app/Contents/MacOS/Xcode
Identifier: Xcode
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: Xcode [984]
Date/Time: 2009-05-22 16:28:32.337 +0100
OS Version: Mac OS X 10.5.7 (9J61)
Report Version: 6
Anonymous UUID: 74ED53CC-C2DE-4C23-8B2A-35FA273712D0
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Crashed Thread: 0
Application Specific Information:
*** multi-threaded process forked ***
*** NSTask: Task create for path '/Users/michael_mac_i/Desktop/Reality 3D/build/Debug/Reality 3D.app' failed: 13, "Permission denied". Terminating temporary process.
objc[984]: garbage collection is ON
Thread 0 Crashed:
0 com.apple.Foundation 0x9595a4a4 ___NEW_PROCESS_COULD_NOT_BE_EXECD___ + 4
1 com.apple.Foundation 0x957eee4c -[NSConcreteTask launchWithDictionary:] + 2764
2 com.apple.Foundation 0x957ee379 -[NSConcreteTask launch] + 41
3 ...apple.Xcode.DevToolsSupport 0x000bf281 -[PBXTSTask executeTaskAtPath:inDirectory:withArguments:withEnvironment:] + 1633
4 ...apple.Xcode.DevToolsSupport 0x000be12c -[PBXTSTask startTask] + 359
5 ...ple.Xcode.DevToolsInterface 0x00bb6373 -[PBXLSTaskExecutableLauncher launch] + 84
6 ...ple.Xcode.DevToolsInterface 0x00c3aa20 -[PBXDebugSessionModule _doLaunch] + 53
7 ...ple.Xcode.DevToolsInterface 0x00c37e42 -[PBXDebugSessionModule runExecutable:] + 125
8 ...ple.Xcode.DevToolsInterface 0x00de83ce -[XCProjectSelection startActiveExecutable] + 79
9 ...ple.Xcode.DevToolsInterface 0x00ddf9b6 -[XCProjectSelection toggleGo:] + 817
10 ...ple.Xcode.DevToolsInterface 0x00b91957 -[XCProjectSelection buildOperationDidStop:] + 663
11 com.apple.Foundation 0x957d143a _nsnote_callback + 106
12 com.apple.CoreFoundation 0x93c1e64a __CFXNotificationPost + 362
13 com.apple.CoreFoundation 0x93c1e923 _CFXNotificationPostNotification + 179
14 com.apple.Foundation 0x957ce690 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
15 com.apple.Foundation 0x957d7ee8 -[NSNotificationCenter postNotificationName:object:] + 56
16 com.apple.Xcode.DevToolsCore 0x00662616 -[XCBuildOperation cleanupAfterRunning] + 977
17 com.apple.Xcode.DevToolsCore 0x006621c5 -[XCTargetBuildOperation cleanupAfterRunning] + 51
18 com.apple.Xcode.DevToolsCore 0x006616aa -[XCOperation stopWithResultCode:] + 442
19 com.apple.Xcode.DevToolsCore 0x00636034 -[XCThreadedOperation handleAvailableObjectsOnMessageQueue:] + 1875
20 com.apple.Xcode.DevToolsCore 0x006357c7 -[XCBuildOperation handleAvailableObjectsOnMessageQueue:] + 239
21 com.apple.Xcode.DevToolsCore 0x0077c85d _XCHandleMessageQueueRunLoopSourceSignal + 1012
22 com.apple.CoreFoundation 0x93c3d595 CFRunLoopRunSpecific + 3141
23 com.apple.CoreFoundation 0x93c3dc78 CFRunLoopRunInMode + 88
24 com.apple.HIToolbox 0x972ca28c RunCurrentEventLoopInMode + 283
25 com.apple.HIToolbox 0x972ca0a5 ReceiveNextEventCommon + 374
26 com.apple.HIToolbox 0x972c9f19 BlockUntilNextEventMatchingListInMode + 106
27 com.apple.AppKit 0x905c2d0d _DPSNextEvent + 657
28 com.apple.AppKit 0x905c25c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
29 com.apple.AppKit 0x905bb5fb -[NSApplication run] + 795
30 com.apple.AppKit 0x90588834 NSApplicationMain + 574
31 com.apple.Xcode 0x00002bca 0x1000 + 7114
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x000fb7e0 ebx: 0x957ee394 ecx: 0x00000000 edx: 0x00000000
edi: 0xa05f9f40 esi: 0x030f6390 ebp: 0xbfffe4e8 esp: 0xbfffe4e8
ss: 0x0000001f efl: 0x00000286 eip: 0x9595a4a4 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0xa089f546
Binary Images:
0x1000 - 0x19fff com.apple.Xcode 3.1.2 (1149) <ec5aa8197452521ff1abeca8ab6007d4> /Developer/Applications/Xcode.app/Contents/MacOS/Xcode
0x43000 - 0x66fff com.apple.DevToolsFoundation 3.1 (1125) <141285804947eda8f7641b3107fcdc3f> /Developer/Library/PrivateFrameworks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
0x86000 - 0x9dfe7 com.apple.JavaKit 5.1 (1055) <0ca3a1e1d8b37c4f8d77e2255c7baa18> /Developer/Library/PrivateFrameworks/JavaKit.framework/Versions/A/JavaKit
0xb0000 - 0xe7ff3 com.apple.Xcode.DevToolsSupport 5.1 (1102) <f115cff9f3b55a18a919703f84e87336> /Developer/Library/PrivateFrameworks/DevToolsSupport.framework/Versions/A/DevToolsSupport
0x10e000 - 0x117fff com.apple.Xcode.DevToolsRemoteClient 5.1 (1149) <cf2d5023515a809f3ebe3cdd09b59a65> /Developer/Library/PrivateFrameworks/DevToolsRemoteClient.framework/Versions/A/DevToolsRemoteClient
0x122000 - 0x1cdfff com.apple.Xcode.DevToolsCParsing 5.1 (1088) <14020497788f8fb9d4e9c1b5d30736d8> /Developer/Library/PrivateFrameworks/DevToolsCParsing.framework/Versions/A/DevToolsCParsing
0x223000 - 0x28afff com.apple.Xcode.XcodeEdit 3.1 (1146) <ea26790a575d79c2dbe6a0ba37757af1> /Developer/Library/PrivateFrameworks/XcodeEdit.framework/Versions/A/XcodeEdit
0x2c0000 - 0x317ff7 com.apple.Symbolication 1.1 (42.3.5) <b586be170d8160ac5eea57a81619d55a> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x34a000 - 0x34efff com.apple.DebugSymbols 1.1 (1.0) <45217d861d33e66e850b6bc357ea3fd6> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x375000 - 0x376fff com.apple.Xdesign.XDInterface.GraphLayouter.ForceDirected 3.1 (1070) <470043124ad366f7eb8e48724c8a3ef0> /Developer/Library/PrivateFrameworks/XDInterface.framework/Versions/A/PlugIns/XDForceDirectedGraphLayouter.diagramGraphLayouter/Contents/MacOS/XDForceDirectedGraphLayouter
0x579000 - 0x8f9ffb com.apple.Xcode.DevToolsCore 5.1 (1148) <cbda2a35742fd80816f5430e01a0bd56> /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Versions/A/DevToolsCore
0xaf2000 - 0x10caff7 com.apple.Xcode.DevToolsInterface 5.1 (1149) <fd700a5091d3e45b4862667a641b18bf> /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/DevToolsInterface
0x144c000 - 0x1482fff com.apple.DocSetAccess 2.1 (1092) <f42c0c25190c039208f34165d2b4753f> /Developer/Library/PrivateFrameworks/DocSetAccess.framework/Versions/A/DocSetAccess
0x14a6000 - 0x14e6ffb com.apple.Xdesign.XDBase 3.1 (1055) <b59c81c401df530d2318ca3a53a3e587> /Developer/Library/PrivateFrameworks/XDBase.framework/Versions/A/XDBase
0x1526000 - 0x1527fff com.apple.Xdesign.XDInterface.GraphLayouter.Hierarchical 3.1 (1070) <71e4e130a440789b645a83d61ba9d846> /Developer/Library/PrivateFrameworks/XDInterface.framework/Versions/A/PlugIns/XDHierarchicalGraphLayouter.diagramGraphLayouter/Contents/MacOS/XDHierarchicalGraphLayouter
0x1540000 - 0x1549fff com.apple.xdmappingmodel 3.1 (1070) <bc1d3de7983fe8584e6e6125b47a2269> /Developer/Library/Xcode/Plug-ins/XDMappingModel.xdplugin/Contents/MacOS/XDMappingModel
0x1552000 - 0x1553ffd libsvn_ra-1.0.dylib ??? (???) <3323edd0d5bba8352ce19ab2c2c54dd3> /usr/lib/libsvn_ra-1.0.dylib
0x157f000 - 0x1598fff com.apple.XdesignPlugin 3.1 (1080) <e5a1a22d01b61fecec92b174fcabe1a7> /Developer/Library/Xcode/Plug-ins/XdesignPlugin.xcplugin/Contents/MacOS/XdesignPlugin
0x15a8000 - 0x15c6fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
0x15ce000 - 0x15dcfff com.apple.xcode.subversion 3.1 (1107) <0800d5703545d5f5494c89ac2069f0d7> /Developer/Library/Xcode/Plug-ins/XcodeSubversionPlugin.xcplugin/Contents/MacOS/XcodeSubversionPlugin
0x15e7000 - 0x15f4ff3 libaprutil-1.0.dylib ??? (???) <931e8ac4ce826f08f2abffcac57a63b3> /usr/lib/libaprutil-1.0.dylib
0xa200000 - 0xa235fff com.apple.XDSourceCode 3.1 (1055) <7318f781c0270762ae9994faf549c575> /Developer/Library/Xcode/Plug-ins/XDClassModel.xdplugin/Contents/MacOS/XDClassModel
0xa252000 - 0xa283fff com.apple.xdcoredataplugin 3.1 (1055) <0f3f1c75f272829ada1b0c066bdbf3d1> /Developer/Library/Xcode/Plug-ins/XDCoreDataModel.xdplugin/Contents/MacOS/XDCoreDataModel
0xa29c000 - 0xa2b1fef libapr-1.0.dylib ??? (???) <34917fe927e85ef7f60ec1303338e9af> /usr/lib/libapr-1.0.dylib
0xa2bc000 - 0xa2d7ffe libsvn_client-1.0.dylib ??? (???) <0ad0988696b8ae7f6bd06da892f9d70c> /usr/lib/libsvn_client-1.0.dylib
0xa2e0000 - 0xa2e6fff libsvn_delta-1.0.dylib ??? (???) <85d9d28818b86ebd3c7f4c743f4b1426> /usr/lib/libsvn_delta-1.0.dylib
0xa2ec000 - 0xa2f0ffc libsvn_diff-1.0.dylib ??? (???) <5c429fd195fe85b37bb2de0dac08071f> /usr/lib/libsvn_diff-1.0.dylib
0xa2f6000 - 0xa307ffc libsvn_fs_fs-1.0.dylib ??? (???) <785bded6d93bcc9f5f41d1c643ea598c> /usr/lib/libsvn_fs_fs-1.0.dylib
0xa30f000 - 0xa310fff libsvn_fs-1.0.dylib ??? (???) <1ecb4ee3e53ba3faf89047f89163cf35> /usr/lib/libsvn_fs-1.0.dylib
0xa316000 - 0xa318ffe libsvn_ra_local-1.0.dylib ??? (???) <a590112f4d6c0df29057a6198e3e7b1c> /usr/lib/libsvn_ra_local-1.0.dylib
0xa31e000 - 0xa32affe libsvn_ra_svn-1.0.dylib ??? (???) <a149c58f0ac0aaada8330791c6bfc6e6> /usr/lib/libsvn_ra_svn-1.0.dylib
0xa331000 - 0xa347fff libsvn_repos-1.0.dylib ??? (???) <38711e63f295a3f1d58a58cb4c38a137> /usr/lib/libsvn_repos-1.0.dylib
0xa34f000 - 0xa36efff libsvn_subr-1.0.dylib ??? (???) <5d6951674aae8bdf6e996c22df7d5150> /usr/lib/libsvn_subr-1.0.dylib
0xa37a000 - 0xa38bfff libsvn_ra_dav-1.0.dylib ??? (???) <f5d3dba7a101588ab98eacedb1a6c791> /usr/lib/libsvn_ra_dav-1.0.dylib
0xa52c000 - 0xa550ffe libsvn_wc-1.0.dylib ??? (???) <54d485ba2f3ece7e9c499b873f49f898> /usr/lib/libsvn_wc-1.0.dylib
0xa55a000 - 0xa56cfff libneon.26.dylib ??? (???) <1fa4c0ce6554fb224b574e50d8cd8008> /usr/lib/libneon.26.dylib
0xa575000 - 0xa575fff com.apple.xcode.subversion.ui 3.1 (1107) <484a025f7e659958c804580068309eab> /Developer/Library/Xcode/Plug-ins/XcodeSubversionIDEPlugin.xcplugin/Contents/MacOS/XcodeSubversionIDEPlugin
0xa57b000 - 0xa58efff com.apple.xcode.perforce 3.1 (1070) <944dbf3bf31edf80a163281aca33e593> /Developer/Library/Xcode/Plug-ins/XcodePerforcePlugin.xcplugin/Contents/MacOS/XcodePerforcePlugin
0xa599000 - 0xa59cfff com.apple.xcode.perforce.ui 3.1 (1070) <c50bc85d7a54c2a7a11dd9d976660baf> /Developer/Library/Xcode/Plug-ins/XcodePerforceIDEPlugin.xcplugin/Contents/MacOS/XcodePerforceIDEPlugin
0xa5a2000 - 0xa5bdfff com.apple.xcode.cvs 3.1 (1072) <cd2c555fd057bacbdf565a6a44e7e7d7> /Developer/Library/Xcode/Plug-ins/XcodeCVSPlugin.xcplugin/Contents/MacOS/XcodeCVSPlugin
0xa5cc000 - 0xa5cffff com.apple.xcode.cvs.ui 3.1 (1072) <27531452c3351751dd3155c50261994f> /Developer/Library/Xcode/Plug-ins/XcodeCVSIDEPlugin.xcplugin/Contents/MacOS/XcodeCVSIDEPlugin
0xa5d5000 - 0xa5daffd com.apple.Xcode.PlistPlugin 3.1 (1106) <fbcc039529fa3faba2d8a05b84661346> /Developer/Library/Xcode/Plug-ins/PlistPlugin.xcplugin/Contents/MacOS/PlistPlugin
0xa5e1000 - 0xa5f0ffb com.apple.xcode.plugins.DocViewerPlugIn 5.1 (1084) <74792b4bd04c8f8c77a1fe8f4445dd78> /Developer/Library/Xcode/Plug-ins/DocViewerPlugIn.xcplugin/Contents/MacOS/DocViewerPlugIn
0xa5fb000 - 0xa5fbfff com.apple.xcode.plug-in.CoreBuildTasks 3.0 (1148) <65f25b26bf7225f671ab8f9156d8e8b3> /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/CoreBuildTasks
0xa700000 - 0xa721fff com.apple.Xcode.PlistEdit 3.1 (1106) <5fbc5ae10056049a8815b8761fe70e8b> /Developer/Library/PrivateFrameworks/PlistEdit.framework/Versions/A/PlistEdit
0xa740000 - 0xa745fff com.apple.AppleScriptStudio.ASKPlugin 1.7 (68) <0d8e531e7ff8080df48d7dcc5375ab35> /Developer/Library/Xcode/Plug-ins/ASKPlugin.pbplugin/Contents/MacOS/ASKPlugin
0xa74e000 - 0xa786fff com.apple.OSAKit 1.1 (55) <38257e261cc7dd391e4dee6a69861e49> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
0xa7b6000 - 0xa7c0fff libexslt.0.dylib ??? (???) <2d56b8c39848d8a524cb0ae8d6299f19> /usr/lib/libexslt.0.dylib
0xa7c6000 - 0xa7c9fff com.apple.AppleScriptStudio.ASKDictionaryPlugin 1.6 (68) <7a250f7a4afa5e88b0f98c92ca702eae> /Developer/Library/Xcode/Plug-ins/ASKDictionaryPlugin.pbplugin/Contents/MacOS/ASKDictionaryPlugin
0xa7d0000 - 0xa7d9fff com.apple.AppleScriptStudio.ASKDebuggerPlugin 1.6 (68) <d161c968351f71d071fdab92443dae2b> /Developer/Library/Xcode/Plug-ins/ASKDebuggerPlugin.pbplugin/Contents/MacOS/ASKDebuggerPlugin
0xa7e3000 - 0xa7f2fff com.apple.Xcode.BuildSettingsPanes 5.1 (1149) <a86b4ebfb2b1d6f70be1aad8ca7000a6> /Developer/Applications/Xcode.app/Contents/PlugIns/BuildSettingsPanes.xcplugin/Contents/MacOS/BuildSettingsPanes
0x139c5000 - 0x13ad5fef com.apple.Xdesign.XDInterface 3.1 (1070) <b84f07803818dbe17208c0a841af25a1> /Developer/Library/PrivateFrameworks/XDInterface.framework/Versions/A/XDInterface
0x13b86000 - 0x13bc8fff com.apple.AppleScriptKit 1.5 (74) <cfca408f8e5b3e35ff4d1c2f7214486c> /System/Library/Frameworks/AppleScriptKit.framework/Versions/A/AppleScriptKit
0x13c0b000 - 0x13c33fff com.apple.Xcode.JavaDebugging 5.1 (1149) <c92ff2568eafa0490ee319361eba5cbc> /Developer/Applications/Xcode.app/Contents/PlugIns/JavaDebugging.xcplugin/Contents/MacOS/JavaDebugging
0x13c4e000 - 0x13ca3ff7 com.apple.Xcode.GDBMIDebuggingPlugin 5.1 (1149) <6f07ca5e879649a0cc16d4e1d1b58654> /Developer/Applications/Xcode.app/Contents/PlugIns/GDBMIDebugging.xcplugin/Contents/MacOS/GDBMIDebugging
0x14fa3000 - 0x1519bfff com.apple.RawCamera.bundle 2.0.14 (436) <a8dd51882088fae463f33bc0674583e8> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x17aae000 - 0x17ab3ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
0x90036000 - 0x90037ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
0x90038000 - 0x9003bfff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x9003c000 - 0x90045fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x90046000 - 0x9009fff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x900a0000 - 0x900faff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x900fb000 - 0x9010bffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9010c000 - 0x90193ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
0x90251000 - 0x90256fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x90257000 - 0x90286fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x90582000 - 0x90d80fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x90dc1000 - 0x9164cfff com.apple.WebCore 5528.18 (5528.18.1) <5b75c5397b63b4229dcc5f2e99958eeb> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x9164d000 - 0x9166bfff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib
0x9166c000 - 0x9176ffe7 com.apple.PubSub 1.0.4 (65.6.3) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
0x91770000 - 0x91778fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9177a000 - 0x9185bff7 libxml2.2.dylib ??? (???) <849763460487aa7b9fa9b957ac5bad86> /usr/lib/libxml2.2.dylib
0x9185c000 - 0x919c3fef com.apple.JavaScriptCore 5528.18 (5528.18.1) <98b6851da6f816da816e83e4747656e0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x919ce000 - 0x919d5fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
0x919d6000 - 0x91a7afec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x91a7b000 - 0x91abcfe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x91b87000 - 0x91b87ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91b88000 - 0x91bcafef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x91bcb000 - 0x91d11ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91d12000 - 0x91dccfe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x91dcd000 - 0x921ddfef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9224f000 - 0x92323ff7 com.apple.WebKit 5528.18 (5528.18.1) <1b8f3ae5e80f5ac8cf35bf563263b3f9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x92331000 - 0x92331ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x92333000 - 0x92384ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x92385000 - 0x92504fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x92505000 - 0x9253ffe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x92540000 - 0x928ddfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x928e3000 - 0x92ca1fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92ca2000 - 0x92ca2ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x92ca3000 - 0x92cdafff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x92cdb000 - 0x92dc3ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x92e34000 - 0x92e58feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
0x92e59000 - 0x9302affb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9302b000 - 0x93054fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
0x930c2000 - 0x930c2ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x930c3000 - 0x9314dfe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x9314e000 - 0x9315bfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x934b4000 - 0x934b8fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
0x934b9000 - 0x934c9fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x934ca000 - 0x9361cff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9361d000 - 0x93679ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x936bf000 - 0x936ceffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <98f7b46a9f1a099f77e1092ef8e29c63> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x93938000 - 0x939cbff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x939cc000 - 0x93a06ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x93a24000 - 0x93aebff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x93b8f000 - 0x93bc1fff com.apple.LDAPFramework 1.4.5 (110) <648b3ee893db8af0a5bbbe857ec0bb7d> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x93bc2000 - 0x93bc9ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x93bca000 - 0x93cfdfef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x93cfe000 - 0x93d7bfeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x93d7c000 - 0x93d97ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x93d98000 - 0x93d98ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x93d99000 - 0x93e2cfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x93e2d000 - 0x93e77fe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x93e90000 - 0x94361fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x94362000 - 0x9438aff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x9438b000 - 0x94417ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x94418000 - 0x94443fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
0x94601000 - 0x94603fff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9460a000 - 0x94611ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
0x94612000 - 0x94648fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
0x94649000 - 0x946afffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
0x946b0000 - 0x9498aff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x949e0000 - 0x949e6fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x949e7000 - 0x94b4eff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
0x94b4f000 - 0x94b4fffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x94b50000 - 0x94b50ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer
0x94b51000 - 0x94c45ff4 libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib
0x94c46000 - 0x94c52ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x94c53000 - 0x94c77fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
0x94c78000 - 0x94db1ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
0x94db2000 - 0x94dcafff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x94dcb000 - 0x94dd6fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x94dd7000 - 0x94e51ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x94e52000 - 0x94e5eff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x94e5f000 - 0x94e61ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x94e62000 - 0x94ee1ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x94f12000 - 0x94f31ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x94f32000 - 0x94f50ff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x94ff5000 - 0x95004fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
0x95005000 - 0x956a5fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x956ba000 - 0x95717ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
0x95718000 - 0x9572dffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9572e000 - 0x95738feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x95739000 - 0x9573dfff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x9573e000 - 0x95787fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x95788000 - 0x957c6fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x957c7000 - 0x95a43fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x95a44000 - 0x95af4fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x95af5000 - 0x95b22feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x95b23000 - 0x95b28fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x95c65000 - 0x95cf1ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x95cf2000 - 0x95d31fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x95d32000 - 0x95dd9feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x96eaa000 - 0x96ec0fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x96ec1000 - 0x96fa1fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
0x96fa2000 - 0x96fbaff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x96fbb000 - 0x97038fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x9708b000 - 0x9708bffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x97098000 - 0x97098fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x97099000 - 0x970a7ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
0x970a8000 - 0x97173fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x97174000 - 0x97226ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
0x97227000 - 0x97299fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x9729a000 - 0x975a2fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib~ Bring a Pen ~
After considering resetting Xcode's default project templates, and resetting in UNIX Xcode's target default options, I decided I needed some outside advice:
"Uhh, reinstall it?"
Well, I did. And it works now!






"Uhh, reinstall it?"
Well, I did. And it works now!







~ Bring a Pen ~
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| new xcode project missing build settings | kendric | 3 | 2,779 |
Nov 18, 2009 07:11 PM Last Post: kendric |
|
| XCode OpenGL Game Engine | MoltenWhale | 20 | 10,737 |
Aug 17, 2008 07:10 AM Last Post: ThemsAllTook |
|
| (Probably silly) OpenGL/XCode question | stardark | 4 | 3,292 |
Jul 4, 2006 12:09 AM Last Post: OneSadCookie |
|
| Simple OpenGL/Xcode Question. | loopfick | 10 | 5,893 |
Sep 8, 2005 09:54 AM Last Post: Volte |
|

