It's a common problem with linux shells - unquoted or escaped spaces separate different arguments. Just add some quotes to the first -I argument:
Quote:
Originally Posted by Herbie_3633
Code:
powerpc-wrs-vxworks-g++ -DCPU=PPC603 -DTOOL_FAMILY=gnu -DTOOL=gnu -D_WRS_KERNEL -I"C:\Users\My Dell\Desktop\Eclipse Projects\2015 practice robot\include" -I"C:\Program Files (x86)\FRC_Toolchain\mingw\powerpc-wrs-vxworks\wind_base\/../include/WPILib" -O0 -g3 -Wall -c -fmessage-length=0 -mcpu=603 -mstrict-align -mlongcall -MMD -MP -MF"src/robot.d" -MT"src/robot.d" -o "src/robot.o" "../src/robot.cpp"
|
You'll probably have to make this change in your include arguments in Eclipse.