Before you use the pmcc command, you will need to set your environment in order to add the pmcc command to your command search path.
The pmcc command accepts most of the usual options that are recognized by a UNIX-style "cc" command. For example, you may..
For example, to build a simple "Hello world" program, you would type:
pmcc -o hello hello.cThe above command produces three files: bubble, bubble.map, and bubble.rec. The file bubble contains the linked and located object code, bubble.map contains a global symbol map, and bubble.rec contains the downloadable records.
Note that if you are using a source-level debugger as you host-resident debugger, you will also need to specify the "-g" option. For example,
pmcc -g -o hello hello.cIn general it is better to place all of the options before the list of files.