Loading...
 
Skip to main content

System Workbench for STM32


No symbol table?

Ok, I found the problem. Kinda weird, I am an Eclipse user, not an Eclipse architech so I have no idea why this changed or how.

I had two projects, one that would build a symbol table, one that would not.

I found the .cproject files were different, in many ways.

I resolved the differences one by one until it started working.

The last difference, the one that got the symbol tables to build was:

.cproject file that would not build symbol table

<sourceEntries>
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/>
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/>
</sourceEntries>


.cproject file that did build a symbol table

<sourceEntries>
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
</sourceEntries>


As soon as I copied over that line, poof - I had a symbol table.

It doesn't make sense to me, I could think having the "Src" and "Inc" would make it have the symbol table (in fact I almost copied it the wrong way).

-Matt