Hello
As the application has not been built within CodeWarrior the debugger has trouble to find the source files if :
A- The executable file debug info does not include full paths to the actual source code.
Depending on the =tools you are using for building you may have an option to store the full path to the
source files in the debug info.
B- The executable file has been built on another system or you do not have the ability to add full path information
to the debug information.
In this case you need to add path mapping information
This is done as follows:
- Select "Windows" -> "Preferences"
- Switch to the "C/C++" > "Debug" -> "Common Source Lookup Path" Panel
- Click on "Add ..." button. The Add Source dialog is opened.
- In the "Add Source" dialog select "Path Mapping" and click OK.
An entry "Path Mapping: New Entry" is displayed in the "Common Source Lookup Path" edit box. - Click on this entry (make sure it is highlighted) and click on "Edit ..." button
- Define a name for your path Mapping (for example "Library").
- Click on the "Add ..." button. The "Specify the mapping paths" dialog is opened.
- In the compilation path specify the path displays in the debugger window (d:\_build\eb23_3x50_sp5_pre2\_library for example).
- The "Local File System Path" specify the corresponding location on your PC (d:\MyRoot for example)
- Click "Apply" to apply the changes
- Click "OK" to close the dialog
CrasyCat