0

I am working with Code Composer Studio and I need to inline some functions. So I put them in a header file (or in .inl file referred by a header, both ways) and try to build my project.

The problem comes when I increase the optimization level. The project builds successfully under no optimization, (off or none) but the linker fails to link them and returns:

error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking;

Has anyone encountered similar issues?

Is is because am not utilizing some kind of flag in the compiler options?

5gon12eder
  • 24,280
  • 5
  • 45
  • 92
Rizias
  • 211
  • 6
  • 12

1 Answers1

0

Please check this link http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/249183.aspx . When SW_ROOT was correctly defined, this issue was resolved.

rohit
  • 198
  • 1
  • 1
  • 7