Hello everybody,
I am working on a particular project that required to make a heavy customization of the Chip Support Library for the c5517 DSP in CCS 5.5.
To keep track of all the modifications I reorganized the CSL in subfolders, each one dedicated to a single peripheral. Each dedicated subfolder contains my customised functions' .c file, the header and the register structure definition header relative to the specific peripheral (cslr_xxx.h)
All these subfolders are placed in a parent folder called "custom CSL" which is inside the project folder itself.
Example:
Project_folder/Custom CSL/Custom PLL/Custom_pll.c
Project_folder/Custom CSL/Custom PLL/Custom_pll.h
Project_folder/Custom CSL/Custom PLL/cslr_pll.h
I would like to add just the folder "Custom CSL" to the search paths of the linker and have all the subdirectories included as well. When I do, though, the build is not successful because the linker doesn't find the files contained in the subfolders.
Is there a workaround to this situation? It is very important for me to keep this folder/sub-folder structure. Including every single subfolder would definitely be a sub-optimal solution.
Thank you in advance for your help