Hi!
I have been pondering for a while, but I thought I would be writing an inquiry about this issue. I always missed a proper environment setup script for the Texas Instruments toolchains installed. I am referring to the DSP toolchain (C6X) in this special case.
As of now, I am trying to build for the target on my Linux host. I would appreciate the following environment variables set up:
C6X_ROOT="/opt/ti/C6000CGT7.4.2/"
MAKEFLAGS="-I$C6X_ROOT/include"
LD_LIBRARY_PATH="$C6X_ROOT/lib/:$LD_LIBRARY_PATH"
PATH="$C6X_ROOT/bin:$PATH"
export C6X_ROOT MAKEFLAGS LD_LIBRARY_PATH PATH
=====================================
Note: I know I can do this with an own script, but it would be nice to get centralized, and the developers could just run an official script shipped with the toolchain installation.
Thank you for considering this.