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


Problems adding a new library .a

France

Hi,

To load a library, the best way is to

  1. Set a -L option with the directory where the library is:
    • project properties >> C/C++ Build >> Build settings >> MCU GCC Linker >> Libraries >> Libraries search path
    • in your case this is /Users/Gregorio/Desktop/NewMCUfiles/SSD1963(23012018)1/SSD1963/SSD1963/EmWin
  2. Set a -l option with the library base name:
    • project properties >> C/C++ Build >> Build settings >> MCU GCC Linker >> Libraries >> Libraries
    • in your case this is STemWin522_CM4_GCC


The linker will search for libyour_lib_name.a in the library search path provided and should find your library

HTH

Bernard (Ac6)