Other Parts Discussed in Thread: HALCOGEN,
Tool/software: Code Composer Studio
I wish to use GCC to compile some code (so that I can integrate some other libraries that have been compiled with the GCC tools down the road). I enabled the 'GCC' option in Halcogen to generate some code, and opened it in CCS. I changed the toolchain in CCS to GCC (GNU v7.2.1 Linaro), and added the following flags to get rid of errors about certain instructions that it said weren't supported,
-mcpu=cortex-r5 -mfloat-abi=hard
so my complete build command is,
-mcpu=cortex-r5 -mfloat-abi=hard -I"C:/Users/Andrew/Code/ti_projects/demo_server" -I"C:/Users/Andrew/Code/ti_projects/demo_server/include" -I"C:/ti/ccs1000/ccs/tools/compiler/gcc-arm-none-eabi-7-2017-q4-major-win32/arm-none-eabi/include" -Og -g -gdwarf-3 -gstrict-dwarf -Wall
But I'm now getting several thousand errors, I think some of them look like the comments in the .asm files are being read as instructions?
Here's a snippet of the errors output:
I tried adding the -mccs flag but it was an unrecognized flag to the compiler. Side note: I'm using windows 10
If anyone can help me out it would be so appreciated.

