From 97bb24d4e5ab3d296a37e711e3f6553700c84605 Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Tue, 10 Nov 2015 06:19:08 -0500 Subject: third-party: enable verbose builds of luajit and libuv Libuv and LuaJIT like to hide the actual compilation and linking commands behind nice text. This change makes them spit out the actual command line to help us with debugging issues that people are seeing. --- third-party/cmake/BuildLuajit.cmake | 2 ++ 1 file changed, 2 insertions(+) (limited to 'third-party/cmake/BuildLuajit.cmake') diff --git a/third-party/cmake/BuildLuajit.cmake b/third-party/cmake/BuildLuajit.cmake index 3598b00c04..83aceecb59 100644 --- a/third-party/cmake/BuildLuajit.cmake +++ b/third-party/cmake/BuildLuajit.cmake @@ -41,6 +41,7 @@ set(INSTALLCMD_UNIX ${MAKE_PRG} CFLAGS=-fPIC CFLAGS+=-DLUA_USE_ASSERT CCDEBUG+=-g BUILDMODE=static + Q= install) if(UNIX) @@ -67,6 +68,7 @@ elseif(MINGW AND CMAKE_CROSSCOMPILING) HOST_CC=${HOST_C_COMPILER} HOST_CFLAGS=${HOST_C_FLAGS} HOST_LDFLAGS=${HOST_EXE_LINKER_FLAGS} FILE_T=luajit.exe + Q= INSTALL_TSYMNAME=luajit.exe) elseif(WIN32 AND MSVC) -- cgit