Quote:
Originally Posted by WillF
# include "WPILib.h"
|
Not sure if this is just formatting you used for your post on this forum, but there should be no space between # and include, example:
Code:
#include "WPILib.h"
Quote:
Originally Posted by WillF
Our theory behind this is that the subdirectories of C:/windriver/vxworks-6.3/target/h are not included in the build path.
|
Here's a piece of our in-house documentation regarding the proper build paths:
Quote:
9. Switch to the Build Paths tab
Add the following Include directories under Include paths
-I$(WIND_BASE)/target/h
-I$(WIND_BASE)/target/h/WPIlib
-I$(WIND_BASE)/target/h/wrn/coreip
10. Switch to the Libraries tab
Add the following Library directives under Libraries
$(WIND_BASE)/target/lib/WPILib.a
|
EDIT: If neither of these solutions are working, please post the full build error you are receiving.