Part Number: TMS320F28379D
Tool/software: TI C/C++ Compiler
Hello all,
For a new project I need to add some link flags in a linked command file.
Especially, we have to add a Library path. This path is located in the workspace outside the project.
So we have add:
-l "C:/D/Workspace_CCSV8/MyWorkspace/LibProject/Debug/COMMON.lib"
It works, but it is a little bit dirty. I would like to avoid full path in this file, therefore, we have written:
-l "${workspace_loc}/LibProject/Debug/COMMON.lib"
which is not working.
So, how to add CCS8 or environment variable in linker command file?
Thanks a lot.
Alain