From eb6a1039c500dc901563b786b3cd06ff740ab152 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sat, 30 Oct 2021 12:10:19 +0200 Subject: fix(build): remove amalg build target for LuaJIT (#16178) fixup for #16041 (`amalg` build is recommended by LuaJIT for performance but this way of doing it breaks parallel build with `make -j`) --- third-party/cmake/BuildLuajit.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/cmake/BuildLuajit.cmake b/third-party/cmake/BuildLuajit.cmake index 13d6ee487a..c4e5112dce 100644 --- a/third-party/cmake/BuildLuajit.cmake +++ b/third-party/cmake/BuildLuajit.cmake @@ -58,7 +58,7 @@ set(INSTALLCMD_UNIX ${MAKE_PRG} CFLAGS=-fPIC ${AMD64_ABI} CCDEBUG+=-g Q= - amalg install) + install) if(UNIX) if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") -- cgit