14.3.2 Syntax

The general command-line usage of xc32-objdump is:
xc32-objdump options OBJFILE...

The OBJFILE are the object files to be examined. When you specify archives, xc32-objdump shows information on each of the member object files.

A common usage of this tool is to obtain a full list file for the entire program. To do this, use the compiler’s -g option when you build the project, then call the xc32-objdump application with a command similar to the following.
xc32-objdump -SD -l a.out > xc32.lst
This will create an xc32.lst listing file from the default compiler output file, showing the original C source code and line number information in the listing.