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