Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

XCode 1.5 debugger question



Hi
I have a project that contains
2 cpp files and few static libraries

I can debug everything in one cpp file
but xcode doesn't stop in the code related to the second file

for example

first file Game.cpp

bool
Game::Initialize( int argc, char* argv[] )
{
    // Set up base class
    if ( !IvGame::Initialize( argc, argv ) )
        return false;

    mPlayer = new PlayerTorque();
    if (!mPlayer)
        return false;

    ::IvSetDefaultLighting();

    return true;
}   // End of Game::Initialize()

I can stop at any place in the file (at the line mPlayer = new PlayerTorque();)
but I can not go inside to any PlayerTorque code (second cpp file)
for example into the constructor code
I can put breakpoints inside of PlayerTorque code but XCode doesn't see it (doesn't stop there)


is there possibility to put debug symbols only into one of two sources of the target?

what could be a problem
thanks

Dmitry Markman

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/xcode-users/email@hidden

This email sent to email@hidden


Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.