Part Number: CC3200MODLAUNCHXL
Other Parts Discussed in Thread: CC3200, CC3200SDK, CCSTUDIO
Tool/software: Code Composer Studio
I am trying to build the 'blinky' project from CC3200 SDK (V1.3) on CCS 7.4.0 under Windows 7 Pro 64 bit. I have installed the required ARM 5.2.6 compiler.
My PC's Windows appdata location was changed from c:/users/... to c:/ some time back because of LAN logon issues RE: profile size.
When building the project, CCS gives the below error (first error shown):
make (e=2): The system cannot find the file specified.
gmake.exe[1]: *** [c:/users/brownr16/appdata/local/temp/ti8637~1/obj/multibyte.obj] Error 2
Recognising the appdata path quoted in the error (I tried the above process on a standard windows PC and the project builds fine), I added the path %systemroot%\temp to preferences>>C/C++/Build/Environment.
When added to TEMP variable, this gives the error:
>> ERROR: mklib: Could not create temp directory in c:/users/brownr16/appdata/local/temp;%systemroot%/temp: No such file or directory
When added to TMP variable (with or without the same path in TEMP), this gives the error:
'Invoking: ARM Linker'
"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/bin/armcl" -mv7M4 --code_state=16 --float_support=fpalib --abi=eabi -me -Ooff -g --gcc --define=ccs --define=NON_NETWORK --define=cc3200 --diag_warning=225 --diag_wrap=off --display_error_number -z -m"blinky.map" --stack_size=0x800 --heap_size=0x800 -i"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/lib" -i"C:/ti/CC3200SDK_1.3.0/cc3200-sdk/driverlib/ccs/Release" -i"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="blinky_linkInfo.xml" --rom_model -o "blinky.out" "./gpio_if.obj" "./main.obj" "./pinmux.obj" "./startup_ccs.obj" "../cc3200v1p32.cmd" -llibc.a -ldriverlib.a
<Linking>
error: cannot find file "\\126043"
fatal error: no input files
So, in the second case, it seems to get as far as the linker, which cannot find '\\126043' (presumably a temp file as input to the linker).
Is there any known or possible workaround to solve this? I'm willing to try almost anything at this stage.
Many thanks in advance.