Troubleshooting

The build instrumentation does not work out-of-the box for the following project types:

  • VxWorks Boot Loader/BSP Project
  • VxWorks Image Project
  • VxWorks Source Build (Kernel Library Project)

These projects are using the "make" command by default, while other Wind River projects are using "%makeprefix% make". The build instrumentation relies on "%makeprefix%.

The workaround is to add "%makeprefix%" manually:

  • Boot Loader and VxWorks Image projects:

    The build command line is not visible in project properties. To add "%makeprefix%" manually:

    1. Open the <project>/.wrproject file in a text editor
    2. Find the following property: <stringAttribute key="BLD::Info|cmd" value="make"...>, and replace "make..." with "%makeprefix% make..."
    3. Save the file, then rebuild the project.
  • VxWorks Source Build (Kernel Library Project):
    1. Open project properties and go toBuild Properties
    2. Replace "make..." with "%makeprefix% make..."
    3. Rebuild the project

Related Topics Link IconSee also