alien icon indicating copy to clipboard operation
alien copied to clipboard

alien.c:358:54: error: ‘FFI_SYSV’ undeclared here (not in a function)

Open senlinding opened this issue 3 years ago • 1 comments

alien.c:358:54: error: ‘FFI_SYSV’ undeclared here (not in a function)

senlinding avatar Jun 01 '22 08:06 senlinding

I ran into this and was able to solve it by modifying alien.c and adding these lines:

#if defined (X86_64) || defined (__x86_64__)
#define FFI_SYSV FFI_UNIX64
#endif

and it compiled and ran successfully

ossie-git avatar Jan 22 '23 04:01 ossie-git