Part Number:CC1310
Tool/software: Code Composer Studio
Hi,
I'm using the web based CCS in firefox (it wouldn't work in chrome) on an up-to-date Debian/unstable system (Linux debian 4.16.0-1-amd64 #1 SMP Debian 4.16.5-1 (2018-04-29) x86_64 GNU/Linux).
However, I had to modify the ticloudagent.sh script to get it to work, so I'm reporting the changes here. Firstly, ldconfig is not typically in an unprivileged user's path, so it needs to be run as /sbin/ldconfig. And secondly, the line
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CA_TEMPDIR
needs to be
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CA_TEMPDIR
in order for the LD_LIBRARY_PATH variable to be visible to the node command at the end of the file.
Cheers,
Brett.