Tool/software: Code Composer Studio
Hi~ I have a some question.
When I build my project, I use some .lib files.
*.lib files are basically located in Cache Memory.
My team was moved *.lib files position to DDR using a Linker.
Under chart is Linker example.
|
SECTIONS { Test: { "../../Source/A.lib" (.const) "../../Source/A.lib" (.far) } > DDR } |
But I made a new build system.
In new build system *.lib relative path is different from original.
You can check new position in below chart.
|
SECTIONS { Test: { "../Source/A.lib" (.const) "../Source/A.lib" (.far) } > DDR } |
Two system's *.lib files relative path is different, but It must use same Linker..
How can I change my Linker to use both build system?
'#pragma DATA_SECTION' is just move variable or structure.. Is there any way to move *.lib file's located position in code level?