Hi,
I am trying to compile examples/thread/freertos_coap_server with my version of openthread library. my reference is: https://infocenter.nordicsemi.com/index.jsp?topic=%2Fsdk_tz_v3.1.0%2Fthread_openthread_libraries.html&cp=5_3_2_1
The compiler gives following errors (some sample lines from the output)
../../../../../../external/openthread/lib/nrf52840/gcc/libopenthread-nrf52840-sdk.a(libopenthread_nrf52840_sdk_a-aes_alt_cc310.o): in function `aes_init':
undefined reference to `SaSi_AesInit'
../../../../../../external/openthread/lib/nrf52840/gcc/libopenthread-nrf52840-sdk.a(libopenthread_nrf52840_sdk_a-aes_alt_cc310.o): in function `aes_cc310_free':
undefined reference to `SaSi_AesFree'
continues like that.
"Thread-safe libraries are located inside the mtls_ts
directory."
Obviously, the original openthread code doesn't have this improvement and when I use it as my base code, I got those errors. Can you tell me the steps to compile that specific example with my custom openthread library please? Do you use another fork of openthread library? Is it possible to share it so I can continue with it? Or should I disable thread-safety totally? I appreciate if you can give me some tips to run this example with my modified version. (I tried MBEDTLS_THREADING=0 as directive but didn't help)
Best regards,
Vedat