mirror of https://github.com/ARMmbed/mbed-os.git
We get a linker warning with the recently added timing module
implementation for Mbed. This is because there is Mbed TLS also ships a
file called timing.c, which we are including in Mbed OS also. With CLI
1, we get an error about unique object files because of the similarly
named implementation files.
Object file timing.o is not unique! It could be made from: mbed-os/connectivity/mbedtls/source/timing.c mbed-os/connectivity/mbedtls/platform/src/timing.cpp
Rename the Mbed timing module implementation to timing_mbed.cpp to avoid
this naming conflict.
Fixes:
|
||
---|---|---|
.. | ||
hash_wrappers.c | ||
mbed_trng.cpp | ||
platform_alt.cpp | ||
shared_rng.cpp | ||
timing_mbed.cpp |