• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
XCode 1.5 debugger question
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

XCode 1.5 debugger question


  • Subject: XCode 1.5 debugger question
  • From: Dmitry Markman <email@hidden>
  • Date: Sat, 23 Apr 2005 02:59:01 -0400

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:
This email sent to email@hidden


  • Follow-Ups:
    • Re: XCode 1.5 debugger question
      • From: Jim Ingham <email@hidden>
  • Prev by Date: Re: Add files to project by type
  • Next by Date: BuildStyle duplication question (v1.5)
  • Previous by thread: Re: Add files to project by type
  • Next by thread: Re: XCode 1.5 debugger question
  • Index(es):
    • Date
    • Thread