Other Parts Discussed in Thread: CCSTUDIO, SYSBIOS
Tool/software:
I want to add a new compiler (TI ARM Clang: ti-cgt-armllvm_2.1.3.LTS) to CCS12.8.1 on Linux from the command line.
I tried to add it using the following command, referring to Create and Build Projects Using Command Line, but the new ARM clang was not added to ti/ccs/eclipse/configuration/com.ti.common.project.core/compilerProperties.cache.log.
eclipsec -nosplash -data <workspace> -application com.ti.common.core.initialize -ccs.toolDiscoveryPath "<path1>;<path2>"
~/ti/ccs/eclipse/configuration/com.ti.common.project.core$ cat compilerProperties.cache.log Total tool discovery time: 94 ms Discovered a total of 2 tools: /home/user/ti/ti-cgt-c6000_8.3.3 : 8.3.3 /home/user/ti/ti-cgt-arm_16.9.6.LTS : 16.9.6.LTS
Even if I check with the following command, the new compiler is not added.
eclipse -verbose -noSplash -data . -application com.ti.ccstudio.apps.inspect -ccs.product SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. Product location: /home/user/ti/ccs Compilers: Arm: TI v16.9.6.LTS [/home/user/ti/ti-cgt-arm_16.9.6.LTS] C2000: <none> C5500: <none> C6000: TI v8.3.3 [/home/user/ti/ti-cgt-c6000_8.3.3] C7000: <none> EVE: <none> MSP430: <none> PRU: <none> Products: com.ti.rtsc.SYSBIOS [SYS/BIOS]: 6.73.1.01 [/home/user/ti/bios_6_73_01_01] com.ti.rtsc.XDCtools [XDCtools]: 3.62.1.16_core [/home/user/ti/xdctools_3_62_01_16_core] 3.50.8.24_core [/home/user/ti/xdctools_3_50_08_24_core]
Is there a way to add it using CCS12.8.1?