Printf output on godbolt using xtensa compiler?

573 Views Asked by At

Is there some way to produce output in godbolt for the Xtensa compiler?

This

#include <cstdio>

int main()
{
    printf("Hello World!");
}

generates an asm call to printf, but nothing is displayed.

0

There are 0 best solutions below