Loading...
 

SW4STM32 and SW4Linux fully supports the STM32MP1 asymmetric multicore Cortex/A7+M4 MPUs

   With System Workbench for Linux, Embedded Linux on the STM32MP1 family of MPUs from ST was never as simple to build and maintain, even for newcomers in the Linux world. And, if you install System Workbench for Linux in System Workbench for STM32 you can seamlessly develop and debug asymmetric applications running partly on Linux, partly on the Cortex-M4.
You can get more information from the ac6-tools website and download (registration required) various documents highlighting:

System Workbench for STM32


You are viewing a reply to No symbol table?  

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