BUG in IDE/compiler? Error: Undefined symbol __aeabi_assert

14 Sep 2016

Since shortly, when compiling a program that uses functions from assert, I receive the following error:

[ERROR L6218E] Error: Undefined symbol __aeabi_assert.

I understand that this means that this function is not defined, but assert.h is a standard library, so shouldn't it be defined?

As a workaround I did insert

#define NDEBUG

before

#include <assert.h>

Now the program compiles, but this is not what I want.

Thanks in advance ! Christopher

28 Jan 2019

same here, no solution