From c8beec8bfb9997fd7f99d552b0fd1043091dbfeb Mon Sep 17 00:00:00 2001 From: Luigi Scarso <luigi.scarso@gmail.com> Date: Thu, 16 Feb 2017 19:01:33 +0000 Subject: [PATCH] disabled ffi for PPC [[Split portion of a mixed commit.]] --- source/texk/web2c/luatexdir/luaffi/ffi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/texk/web2c/luatexdir/luaffi/ffi.c b/source/texk/web2c/luatexdir/luaffi/ffi.c index 5bfdae261..d65b2bed7 100644 --- a/source/texk/web2c/luatexdir/luaffi/ffi.c +++ b/source/texk/web2c/luatexdir/luaffi/ffi.c @@ -3398,14 +3398,14 @@ static int setup_upvals(lua_State* L) lua_pushboolean(L, 1); lua_setfield(L, -2, "64bit"); #else -#error +# define UNSUPPORTED_ARCH /* error */ #endif #if defined ARCH_X86 || defined ARCH_X64 || defined ARCH_ARM || defined ARCH_PPC64 lua_pushboolean(L, 1); lua_setfield(L, -2, "le"); #else -#error +# define UNSUPPORTED_ARCH /*error*/ #endif #if defined ARCH_X86 || defined ARCH_X64 || defined ARCH_PPC64 @@ -3415,7 +3415,7 @@ static int setup_upvals(lua_State* L) lua_pushboolean(L, 1); lua_setfield(L, -2, "softfp"); #else -#error +# define UNSUPPORTED_ARCH /*error*/ #endif lua_pop(L, 1); /* abi tbl */ @@ -3458,7 +3458,7 @@ static int setup_upvals(lua_State* L) #elif defined ARCH_PPC64 lua_pushliteral(L, "ppc64"); #else -# error +# define UNSUPPORTED_ARCH /* error */ #endif lua_setfield(L, 1, "arch"); -- GitLab