Hi,
I am trying to run the ArmIE emulator. I compiled the source file with ARM C Compiler for SVE by using:
armclang -O3 -march=armv8-a+sve -o hello hello.c armie -msve-vector-bits=512 ./hello
But get an error message:
armie's SVESigHandler caught signal SIGSEGV from the process being emulated, passing it to the default signal handler. Guest process terminated by signal: 9513 Segmentation fault ./hello
What am I doing wrong?
// hello.c #include <stdio.h> int main() { printf("Hello, World!"); return 0; }
I made these changes but got the exact same error message:
armie's SVESigHandler caught signal SIGSEGV from the process being emulated, passing it to the default signal handler. Guest process terminated by signal:3954 Segmentation fault ./hello