0

When using emconfigure to configure ECL for WebAssembly, the configure script reports:

checking size of long long... not available
checking whether byte ordering is bigendian... no
checking appropiate type for fixnums... configure: error: There is no appropiate integer type for the cl_fixnum type

I compiled a minimal C program that used a long long with emcc and confirmed that it does support it. Why does the configure script detect long longs as unavailable?

programmer
  • 743
  • 4
  • 10

1 Answers1

0

configure uses a file to get a result, but Emscripten doesn't write to local file system by default.

It would better to port it as some kind of cross compile.

zakki
  • 2,283
  • 14
  • 20