Other Parts Discussed in Thread: MSP430F5529
HI all,
A am currently looking at CCS6 using the GCC compiler. I thought it would be a good exercise to re-implement the EXP430F5529 User Experience Demo with the new tools an using the latest version of the USB driver package. Having spent some time pulling in the various source code and sorting problems with changes to include paths so that everything seems to compile I now am getting the error:
msp430-elf-gcc.exe: error: ./UserExperienceDemo/5xx_ACTIVE_test.o: No such file or directorygmake: *** [TestUsbGcc.out] Error 1
gmake: Target `all' not remade because of errors.
I looked back in the console listing and the command to compile this file is:
'Building file: ../UserExperienceDemo/5xx_ACTIVE_test.asm'
'Invoking: GNU Compiler'
"C:/TI_V6/ccsv6/tools/compiler/gcc_msp430_4.8.371/bin/msp430-elf-gcc.exe" -c -mmcu=msp430X -D__MSP430F5529__ -I"C:/TI_V6/ccsv6/tools/compiler/gcc_msp430_4.8.371/msp430-elf/include" -I"R:/CCS6/workspace_v6_0/TestUsbGcc/FatFs" -I"R:/CCS6/workspace_v6_0/TestUsbGcc/CTS" -I"R:/CCS6/workspace_v6_0/TestUsbGcc/MSP-EXP430F5529_HAL" -I"C:/TI_V6/ccsv6/ccs_base/msp430/include_gcc" -I"R:/CCS6/workspace_v6_0/TestUsbGcc/driverlib/MSP430F5xx_6xx" -I"R:/CCS6/workspace_v6_0/TestUsbGcc" -I"R:/CCS6/workspace_v6_0/TestUsbGcc/USB_config" -O3 -Os -ffunction-sections -fdata-sections -g -gstrict-dwarf -w -Wall -MMD -MP -MF"UserExperienceDemo/5xx_ACTIVE_test.d" -MT"UserExperienceDemo/5xx_ACTIVE_test.d" -o"UserExperienceDemo/5xx_ACTIVE_test.o" "../UserExperienceDemo/5xx_ACTIVE_test.asm"
msp430-elf-gcc.exe: warning: ../UserExperienceDemo/5xx_ACTIVE_test.asm: linker input file unused because linking not done
'Finished building: ../UserExperienceDemo/5xx_ACTIVE_test.asm'
This has me completely stumped, any help would be appreciated
Roy