This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

uVision to ARM DEVELOPMENT STUDIO import (using FUSA )

We are using the FUSA and keil uVison IDE for the project and wanting to test the new Android Development Studio IDE.

But import didn't go as smoothly.Getting multiple  'Error: L6218E: Undefined symbol' errors.

Partial list:

Error: L6218E: Undefined symbol _setup_stack_from_initial_sp (referred from system_stm32wbxx.o).
Error: L6218E: Undefined symbol __scatterload_rt2 (referred from system_stm32wbxx.o).
Error: L6218E: Undefined symbol __cpp_initialize__aeabi_ (referred from system_stm32wbxx.o).
Error: L6218E: Undefined symbol main (referred from system_stm32wbxx.o).

..

Have I missed something in the import procedure? 

Parents
  • Hi "DS1"

    My name is Stephen and I work at Arm.

    It looks like the import didn't import your main() application code ("Undefined symbol main").  Then, if there is no main(), the standard C libraries won't be linked-in either ("Undefined symbol __scatterload_rt2").

    I suggest you first check that all your source code folders have been imported as expected, and then examine the link step to check that armlink will link-in any necessary libraries.

    We would need more information about your project to be able to investigate in more detail.

    Hope this helps

    Stephen



Reply
  • Hi "DS1"

    My name is Stephen and I work at Arm.

    It looks like the import didn't import your main() application code ("Undefined symbol main").  Then, if there is no main(), the standard C libraries won't be linked-in either ("Undefined symbol __scatterload_rt2").

    I suggest you first check that all your source code folders have been imported as expected, and then examine the link step to check that armlink will link-in any necessary libraries.

    We would need more information about your project to be able to investigate in more detail.

    Hope this helps

    Stephen



Children