Hi Everyone,
I am trying to add a CMSIS DSP library to my CCS ( Version: 6.1.3.00033 ) project.
I am using the GNU compiler and linker. My first assumption was that the GCC precompiled library included in the CMSIS zip would work fine?
I added the file: libarm_cortexM4lf_math.a to my ${PROJECT_ROOT} directory. The project explorer recognizes the file as a library.
Then I added the path file into the properties: Build -> GNU Linker ->Libraries. The path is defined as: "${PROJECT_ROOT}/libarm_cortexM4lf_math.a"
When I built, it end-up with the following error message:
Description Resource Path Location Type
cannot find -lC:/Users/Dan/TI_Workspace7/CCS_Lesson/libarm_cortexM4lf_math.a CCS_Lesson C/C++ Problem
I tried different other options including building a new library from scratch but It always end-up with the same message whatever which library I add.
I think I am missing a very obvious step but I read a lot and I can not figured it out.