Open manyids2 opened 2 weeks ago
I guess I can answer my own question at least till the compiling part, I added this definition after the #include <arm_acle.h>
:
#define __wfe() __asm__ __volatile__ ("wfe" : : : "memory")
I ran into other building problems, so cannot check if it works yet unfortunately, but it did compile.
Hi,
I am trying to compile tracktion engine using a buildroot cmake toolchain for arm64 target (gcc 13.3.0). I get the following errors:
How do I find out what I am missing? I have a file called arm_acle.h at
gcc-final-13.3.0/gcc/config/aarch64/arm_acle.h
, but it does not have any mention of wfe. Is there any alternative to using__wfe()
from arm_acle.h? Can I copy its definition from another gcc version perhaps and test somehow that it works as intended?