This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Micro ecc sdk17

Hello i'm trying to compilate the project secure_bootloader_ble_s132 but i'm having issue with micro-ecc.

when i complie on keil the bootloader exemple i get this error : .\_build\nrf52832_xxaa_s132.axf: error: L6002U: Could not open file ..\..\..\..\..\external\micro-ecc\nrf52hf_keil\armgcc\micro_ecc_lib_nrf52.lib: No such file or directory

i'm on sdk17.

I've installed make on windows10 and cloned the github project as shows here : https://infocenter.nordicsemi.com/index.jsp?topic=%2Fsdk_nrf5_v17.0.0%2Flib_crypto_backend_micro_ecc.html

But when i'm trying to build the makefile i have this 

same isse with nrf52lf_keil

when i check the makefile.windows i have this

GNU_INSTALL_ROOT := C:/Program Files (x86)/GNU Tools ARM Embedded/9 2019-q4-major/bin/
GNU_VERSION := 5.4.1
GNU_PREFIX := arm-none-eabi

the verion match with the command line : 

What is the difference with the nrf52lf_keil et the  nrf52l=hf_keil ?

What can i do to compile the makefile ?

Parents
  • Hello,

    The problem is that the Makefile does not find GCC toolchain in the specified path (C:/Program Files (x86)/GNU Tools ARM Embedded/9 2019-q4-major/bin/). There's also a mismatch between the versions number, GNU_INSTALL_ROOT is pointing to a version 9 release, not 5 as indicated by GNU_VERSION.

    Please update GNU_INSTALL_ROOT so it points to your GCC 5.4.1 installation and try building it again. The default installation path is C:/Program Files (x86)/GNU Tools ARM Embedded/<release version>.

    Best regards,

    Vidar

Reply
  • Hello,

    The problem is that the Makefile does not find GCC toolchain in the specified path (C:/Program Files (x86)/GNU Tools ARM Embedded/9 2019-q4-major/bin/). There's also a mismatch between the versions number, GNU_INSTALL_ROOT is pointing to a version 9 release, not 5 as indicated by GNU_VERSION.

    Please update GNU_INSTALL_ROOT so it points to your GCC 5.4.1 installation and try building it again. The default installation path is C:/Program Files (x86)/GNU Tools ARM Embedded/<release version>.

    Best regards,

    Vidar

Children
Related