Tool/software: TI C/C++ Compiler
I am in CCS3.3 with build tools 7.04 for the 2407a DSP. The code I am building was working code. I am trying to bring it under CCS3.3 and build with tools version 7.04 (both newer).
This code I am building has a ".vectors" section. This is conflicting with the "vectors" section in the RTS (rts.src). I get the link error "cannot allocate vectors in VECTORS". It looks like the linker put my ".vectors" in the *.map file and is also trying to fit "vectors" (from the RTS) into the same section, but it will not fit. I can see this in the *.map file that the two vector version are being put into the VECTORS section. How can I make my ".vectors" replace or override what is in the RTS library
Kevin