1) Make sure that the library code was compiled with debugging information on, especially with regards to symbolic information. Until this is done, then source-level debugging will not be possible.
2) It sounds like the libraries are in a directory different from the one used by the project. If that is the case, you need to add the library to CodeWarrior's search paths. Bring up the project's settings panel (type ALT-F7), and go to the Access paths panel. Proceed as follows:
* Make sure that User Paths is selected. Click on the Add button.
* Navigate to the directory that contains the library files. Click OK.
* The directory and its path appears in the User Paths pane.
* Check the Always Search User Paths option.
---Tom