I'm new to the TI embedded development environment so this is probably something simple. I am using CCSv5 as part of the AM37x Eval board development environment on Ubuntu. The tool chain installer set my TOOLCHAIN_PATH environment variable in .bashrc to point to my installed tool chain location ("TOOLCHAIN_PATH=/root/CodeSourcery/Sourcery_G++_Lite/; export TOOLCHAIN_PATH;).
Opened Code Composer (CCSv5) and created a new C++ project and imported existing code from a non-eclipse type project. Under 'Projects' I right-clicked on my project and selected 'Properties'. Under 'C++ Build' I selected 'Environment' and did an 'Add' to bring up the New Variable dialog box. I entered LIB_PATH for the 'name' and for the 'value' I selected ${TOOLCHAIN_PATH} and selected 'OK' followed by 'Apply' followed by 'OK'. I now tried to build my project but keep getting "bin/sh: arm-none-linux-gnueabi-gcc: command not found".
If I open a terminal window and type "arm-none-linux-gnueabi-gcc" it recognizes the command and responds with "needs input file", so my system appears to know where to find "arm-none-linux-gnueabi-gcc" just not CCSv5. Do I need to put more than the "LIB_PATH" & "${TOOLCHAIN_PATH}" into the Environment variables area of CCSv5? I did try replacing "${TOOLCHAIN_PATH}" with the actual path "/root/CodeSourcery/Sourcery_G++_Lite/" with no success. Because of my newness to the TI development environment I'm hoping that this is just some simple adjustment to my configuration.
Any help would be greatly appreciated.