Skip to content

Commit

Permalink
use github.com/LuaJIT/LuaJIT with custom luajit.cmake in Externals
Browse files Browse the repository at this point in the history
  • Loading branch information
q4a committed Aug 8, 2018
1 parent 29bb39f commit 2e06299
Show file tree
Hide file tree
Showing 5 changed files with 362 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "Externals/LuaJIT"]
path = Externals/LuaJIT
url = https://github.com/q4a/LuaJIT.git
url = https://github.com/LuaJIT/LuaJIT.git
[submodule "Externals/luabind"]
path = Externals/luabind
url = https://github.com/q4a/luabind-deboostified.git
Expand Down
2 changes: 1 addition & 1 deletion Externals/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_subdirectory(LuaJIT)
include(luajit.cmake)
add_subdirectory(luabind)
add_subdirectory(cximage)
#add_subdirectory(lzo)
Expand Down
25 changes: 25 additions & 0 deletions Externals/cmake/FindReadline.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# - Try to find Readline
# Once done this will define
# READLINE_FOUND - System has readline
# READLINE_INCLUDE_DIRS - The readline include directories
# READLINE_LIBRARIES - The libraries needed to use readline
# READLINE_DEFINITIONS - Compiler switches required for using readline

find_package ( PkgConfig )
pkg_check_modules ( PC_READLINE QUIET readline )
set ( READLINE_DEFINITIONS ${PC_READLINE_CFLAGS_OTHER} )

find_path ( READLINE_INCLUDE_DIR readline/readline.h
HINTS ${PC_READLINE_INCLUDEDIR} ${PC_READLINE_INCLUDE_DIRS}
PATH_SUFFIXES readline )

find_library ( READLINE_LIBRARY NAMES readline
HINTS ${PC_READLINE_LIBDIR} ${PC_READLINE_LIBRARY_DIRS} )

set ( READLINE_LIBRARIES ${READLINE_LIBRARY} )
set ( READLINE_INCLUDE_DIRS ${READLINE_INCLUDE_DIR} )

include ( FindPackageHandleStandardArgs )
# handle the QUIETLY and REQUIRED arguments and set READLINE_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args ( readline DEFAULT_MSG READLINE_LIBRARY READLINE_INCLUDE_DIR )
334 changes: 334 additions & 0 deletions Externals/luajit.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,334 @@
# Copyright (C) 2007-2013 LuaDist.
# Created by Peter Drahoš
# Redistribution and use of this file is allowed according to the terms of the MIT license.
# For details see the COPYRIGHT file distributed with LuaDist.
# Please note that the package source code is licensed under its own license.

# NOTE: This build is currently only supporting x86 targets, for other targets use the original makefile. Please do not submit bugs to the LuaJIT author in case this build fails, instead use http://github.com/LuaDist/luajit

project ( luajit C ASM)
cmake_minimum_required ( VERSION 2.8 )

## CONFIGURATION
set ( LUAJIT_DIR ${CMAKE_CURRENT_LIST_DIR}/LuaJIT/src CACHE PATH "Location of luajit sources" )
set ( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
"${CMAKE_MODULE_PATH}" )

# Default configuration (we assume POSIX by default)
set ( LUA_PATH "LUA_PATH" CACHE STRING "Environment variable to use as package.path." )
set ( LUA_CPATH "LUA_CPATH" CACHE STRING "Environment variable to use as package.cpath." )
set ( LUA_INIT "LUA_INIT" CACHE STRING "Environment variable for initial script." )

option ( BUILD_STATIC_LIB "Build static lib." OFF )
option ( LUA_ANSI "Use only ansi features." OFF )
option ( LUA_USE_RELATIVE_LOADLIB "Use modified loadlib.c with support for relative paths on posix systems." ON)
set ( LUA_IDSIZE 60 CACHE NUMBER "gives the maximum size for the description of the source." )
set ( LUA_PROMPT "> " CACHE STRING "Is the default prompt used by stand-alone Lua." )
set ( LUA_PROMPT2 ">> " CACHE STRING "Is the default continuation prompt used by stand-alone Lua." )
set ( LUA_MAXINPUT 512 CACHE NUMBER "Is the maximum length for an input line in the stand-alone interpreter.")

# Version
set ( MAJVER 2 )
set ( MINVER 0 )
set ( RELVER 4 )
set ( ABIVER 5.1 )
set ( NODOTABIVER 51 )

# Extra flags
option ( LUAJIT_DISABLE_FFI "Permanently disable the FFI extension to reduce the size of the LuaJIT executable. But please consider that the FFI library is compiled-in, but NOT loaded by default. It only allocates any memory, if you actually make use of it." OFF )
option ( LUAJIT_ENABLE_LUA52COMPAT "Features from Lua 5.2 that are unlikely to break existing code are enabled by default. Some other features that *might* break some existing code (e.g. __pairs or os.execute() return values) can be enabled here. Note: this does not provide full compatibility with Lua 5.2 at this time." ON )
option ( LUAJIT_DISABLE_JIT "Disable the JIT compiler, i.e. turn LuaJIT into a pure interpreter." OFF )

option ( LUAJIT_USE_SYSMALLOC "Use the system provided memory allocator (realloc) instead of the bundled memory allocator. This is slower, but sometimes helpful for debugging. It's helpful for Valgrind's memcheck tool, too. This option cannot be enabled on x64, since the built-in allocator is mandatory." OFF )
option ( LUAJIT_USE_VALGRIND "This option is required to run LuaJIT under Valgrind. The Valgrind header files must be installed. You should enable debug information, too." OFF )
option ( LUAJIT_USE_GDBJIT "This is the client for the GDB JIT API. GDB 7.0 or higher is required to make use of it. See lj_gdbjit.c for details. Enabling this causes a non-negligible overhead, even when not running under GDB." OFF )

option ( LUA_USE_APICHECK "Turn on assertions for the Lua/C API to debug problems with lua_* calls. This is rather slow, use only while developing C libraries/embeddings." OFF )
option ( LUA_USE_ASSERT "Turn on assertions for the whole LuaJIT VM. This significantly slows down everything. Use only if you suspect a problem with LuaJIT itself." OFF )

option ( LUAJIT_CPU_SSE2 "Disable SSE2." OFF )
option ( LUAJIT_CPU_NOCMOV "Disable NOCMOV." OFF )

# Tunable variables
set ( LUAI_MAXSTACK 65500 CACHE NUMBER "Max. # of stack slots for a thread (<64K)." )
set ( LUAI_MAXCSTACK 8000 CACHE NUMBER "Max. # of stack slots for a C func (<10K)." )
set ( LUAI_GCPAUSE 200 CACHE NUMBER "Pause GC until memory is at 200%." )
set ( LUAI_GCMUL 200 CACHE NUMBER "Run GC at 200% of allocation speed." )
set ( LUA_MAXCAPTURES 32 CACHE NUMBER "Max. pattern captures." )

## SETUP
set ( LUA_DIRSEP "/" )
set ( LUA_MODULE_SUFFIX ${CMAKE_SHARED_MODULE_SUFFIX} )
set ( LUA_LDIR ${INSTALL_LMOD} )
set ( LUA_CDIR ${INSTALL_CMOD} )

if ( LUA_USE_RELATIVE_LOADLIB )
# This will set up relative paths to lib
string ( REGEX REPLACE "[^!/]+" ".." LUA_DIR "!/${INSTALL_BIN}/" )
else ()
# Direct path to installation
set ( LUA_DIR ${CMAKE_INSTALL_PREFIX} CACHE STRING "Destination from which modules will be resolved. See INSTALL_LMOD and INSTALL_CMOD.")
endif ()

set ( LUA_PATH_DEFAULT "./?.lua;${LUA_DIR}${LUA_LDIR}/?.lua;${LUA_DIR}${LUA_LDIR}/?/init.lua;./?/init.lua" )
set ( LUA_CPATH_DEFAULT "./?${LUA_MODULE_SUFFIX};${LUA_DIR}${LUA_CDIR}/?${LUA_MODULE_SUFFIX};${LUA_DIR}${LUA_CDIR}/loadall${LUA_MODULE_SUFFIX}" )

if ( WIN32 AND NOT CYGWIN )
# Windows systems
add_definitions ( -DLUA_BUILD_AS_DLL -DLUAJIT_OS=LUAJIT_OS_WINDOWS)
option ( LUA_BUILD_WLUA "Build wluajit interpreter for no-console applications." ON )
set ( LJVM_MODE peobj )
# Paths (Double escapes needed)
set ( LUA_DIRSEP "\\\\" )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_DIR "${LUA_DIR}" )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_LDIR "${LUA_LDIR}" )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_CDIR "${LUA_CDIR}" )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_PATH_DEFAULT "${LUA_PATH_DEFAULT}" )
string ( REPLACE "/" ${LUA_DIRSEP} LUA_CPATH_DEFAULT "${LUA_CPATH_DEFAULT}" )

elseif ( APPLE )
set ( CMAKE_EXE_LINKER_FLAGS "-pagezero_size 10000 -image_base 100000000 -image_base 7fff04c4a000" )
option ( LUA_USE_POSIX "Use POSIX functionality." ON )
option ( LUA_USE_DLOPEN "Use dynamic linker to load modules." ON )
set ( LJVM_MODE machasm )
else ()
option ( LUA_USE_POSIX "Use POSIX functionality." ON )
option ( LUA_USE_DLOPEN "Use dynamic linker to load modules." ON )
set ( LJVM_MODE elfasm )
endif ()

## LIBRARY DETECTION
# Optional libraries
find_package ( Readline )
if ( READLINE_FOUND )
option ( LUA_USE_READLINE "Use readline in the Lua CLI." ON )
endif ()

find_package ( Curses )
if ( CURSES_FOUND )
option ( LUA_USE_CURSES "Use curses in the Lua CLI." ON )
endif ()

# Setup needed variables and libraries
if ( LUA_USE_POSIX )
# On POSIX Lua links to standard math library "m"
list ( APPEND LIBS m )
endif ()

if ( LUA_USE_DLOPEN )
# Link to dynamic linker library "dl"
list ( APPEND LIBS dl )
endif ()

if ( LUA_USE_READLINE )
# Add readline
include_directories ( ${READLINE_INCLUDE_DIR} )
list ( APPEND LIBS ${READLINE_LIBRARY} )
endif ()

if ( LUA_USE_CURSES )
# Add curses
include_directories ( ${CURSES_INCLUDE_DIR} )
list ( APPEND LIBS ${CURSES_LIBRARY} )
endif ()

## SOURCES
# Generate luaconf.h
#configure_file ( ${LUAJIT_DIR}/luaconf.h.in ${CMAKE_CURRENT_BINARY_DIR}/luaconf.h )

set ( LJLIB_C
${LUAJIT_DIR}/lib_base.c
${LUAJIT_DIR}/lib_math.c
${LUAJIT_DIR}/lib_bit.c
${LUAJIT_DIR}/lib_string.c
${LUAJIT_DIR}/lib_table.c
${LUAJIT_DIR}/lib_io.c
${LUAJIT_DIR}/lib_os.c
${LUAJIT_DIR}/lib_debug.c
${LUAJIT_DIR}/lib_jit.c
${LUAJIT_DIR}/lib_ffi.c
)
#if ( LUA_USE_RELATIVE_LOADLIB )
# list ( APPEND LJLIB_C ${LUAJIT_DIR}/lib_package_rel.c )
#else ()
list ( APPEND LJLIB_C ${LUAJIT_DIR}/lib_package.c )
#endif ()

## GENERATE VM
# Build minilua
add_executable ( minilua ${LUAJIT_DIR}/host/minilua.c )
target_link_libraries ( minilua ${LIBS} )

# Dynasm
set ( DASM ${LUAJIT_DIR}/../dynasm/dynasm.lua )
set ( DASM_T ${LUAJIT_DIR}/host/buildvm_arch.h )

# 2DO: Proper detection of flags
set ( DASM_VER "" )
set ( DASM_FLAGS -D FPU -D HFABI )
set ( DASM_ARCH x86 )

# Raspberry PI, ARM
if ( ${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv6l" )
set ( DASM_ARCH arm )
list ( APPEND DASM_FLAGS -D DUALNUM )
set ( DASM_VER 60 )
endif ()

# Windows is ... special
if ( WIN32 )
list ( APPEND DASM_FLAGS -D WIN )
endif ()

# 32bit vs 64bit
if ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
list ( APPEND DASM_FLAGS -D P64 )
endif ()

if ( NOT LUAJIT_DISABLE_JIT )
list ( APPEND DASM_FLAGS -D JIT )
endif ()

if ( NOT LUAJIT_DISABLE_FFI )
list ( APPEND DASM_FLAGS -D FFI )
endif ()

if ( NOT LUAJIT_CPU_SSE2 )
list ( APPEND DASM_FLAGS -D SSE2 )
endif ()

list ( APPEND DASM_FLAGS -D VER=${DASM_VER} )

string ( REPLACE ";" " " DASM_FLAGS_STR "${DASM_FLAGS}")

message ( "DASM_FLAGS: ${DASM_FLAGS_STR}")
message ( "DASM_ARCH: ${DASM_ARCH}" )

set ( DASM_DASC ${LUAJIT_DIR}/vm_${DASM_ARCH}.dasc )

# Generate buildvm arch header
add_custom_command(OUTPUT ${DASM_T}
COMMAND minilua ${DASM} ${DASM_FLAGS} -o ${DASM_T} ${DASM_DASC}
WORKING_DIRECTORY ${LUAJIT_DIR}/../dynasm
DEPENDS minilua
)

# Buildvm
file ( GLOB SRC_BUILDVM ${LUAJIT_DIR}/host/buildvm*.c )
add_executable ( buildvm ${SRC_BUILDVM} ${DASM_T} )

macro(add_buildvm_target _target _mode)
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_target}
COMMAND buildvm ARGS -m ${_mode} -o ${CMAKE_CURRENT_BINARY_DIR}/${_target} ${ARGN}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS buildvm ${ARGN}
)
endmacro(add_buildvm_target)

if ( WIN32 AND NOT CYGWIN )
add_buildvm_target ( lj_vm.obj peobj )
set (LJ_VM_SRC ${CMAKE_CURRENT_BINARY_DIR}/lj_vm.obj)
else ()
add_buildvm_target ( lj_vm.s ${LJVM_MODE} )
set (LJ_VM_SRC ${CMAKE_CURRENT_BINARY_DIR}/lj_vm.s)
endif ()

add_buildvm_target ( lj_ffdef.h ffdef ${LJLIB_C} )
add_buildvm_target ( lj_bcdef.h bcdef ${LJLIB_C} )
add_buildvm_target ( lj_folddef.h folddef ${LUAJIT_DIR}/lj_opt_fold.c )
add_buildvm_target ( lj_recdef.h recdef ${LJLIB_C} )
add_buildvm_target ( lj_libdef.h libdef ${LJLIB_C} )
add_buildvm_target ( jit/vmdef.lua libvm ${LJLIB_C} )

SET ( DEPS
${LJ_VM_SRC}
${CMAKE_CURRENT_BINARY_DIR}/lj_ffdef.h
${CMAKE_CURRENT_BINARY_DIR}/lj_bcdef.h
${CMAKE_CURRENT_BINARY_DIR}/lj_libdef.h
${CMAKE_CURRENT_BINARY_DIR}/lj_recdef.h
${CMAKE_CURRENT_BINARY_DIR}/lj_folddef.h
)

## LuaJIT Library
include_directories ( ${CMAKE_CURRENT_BINARY_DIR} dynasm src ${LUAJIT_DIR}/host )

set ( LJCORE_C
${LUAJIT_DIR}/lj_gc.c
${LUAJIT_DIR}/lj_err.c
${LUAJIT_DIR}/lj_char.c
${LUAJIT_DIR}/lj_bc.c
${LUAJIT_DIR}/lj_obj.c
${LUAJIT_DIR}/lj_str.c
${LUAJIT_DIR}/lj_tab.c
${LUAJIT_DIR}/lj_func.c
${LUAJIT_DIR}/lj_udata.c
${LUAJIT_DIR}/lj_meta.c
${LUAJIT_DIR}/lj_debug.c
${LUAJIT_DIR}/lj_state.c
${LUAJIT_DIR}/lj_dispatch.c
${LUAJIT_DIR}/lj_vmevent.c
${LUAJIT_DIR}/lj_vmmath.c
${LUAJIT_DIR}/lj_strscan.c
${LUAJIT_DIR}/lj_api.c
${LUAJIT_DIR}/lj_lex.c
${LUAJIT_DIR}/lj_parse.c
${LUAJIT_DIR}/lj_bcread.c
${LUAJIT_DIR}/lj_bcwrite.c
${LUAJIT_DIR}/lj_load.c
${LUAJIT_DIR}/lj_ir.c
${LUAJIT_DIR}/lj_opt_mem.c
${LUAJIT_DIR}/lj_opt_fold.c
${LUAJIT_DIR}/lj_opt_narrow.c
${LUAJIT_DIR}/lj_opt_dce.c
${LUAJIT_DIR}/lj_opt_loop.c
${LUAJIT_DIR}/lj_opt_split.c
${LUAJIT_DIR}/lj_opt_sink.c
${LUAJIT_DIR}/lj_mcode.c
${LUAJIT_DIR}/lj_snap.c
${LUAJIT_DIR}/lj_record.c
${LUAJIT_DIR}/lj_crecord.c
${LUAJIT_DIR}/lj_ffrecord.c
${LUAJIT_DIR}/lj_asm.c
${LUAJIT_DIR}/lj_trace.c
${LUAJIT_DIR}/lj_gdbjit.c
${LUAJIT_DIR}/lj_ctype.c
${LUAJIT_DIR}/lj_cdata.c
${LUAJIT_DIR}/lj_cconv.c
${LUAJIT_DIR}/lj_ccall.c
${LUAJIT_DIR}/lj_ccallback.c
${LUAJIT_DIR}/lj_carith.c
${LUAJIT_DIR}/lj_clib.c
${LUAJIT_DIR}/lj_cparse.c
${LUAJIT_DIR}/lj_lib.c
${LUAJIT_DIR}/lj_alloc.c
${LUAJIT_DIR}/lib_aux.c
${LUAJIT_DIR}/lib_init.c
${LJLIB_C}
)

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
set(LIB_NAME luajit-debug)
else()
set(LIB_NAME luajit)
endif()

#if(${BUILD_STATIC_LIB})
# add_library( ${LIB_NAME} STATIC ${LJCORE_C} ${DEPS} )
# target_link_libraries ( ${LIB_NAME} ${LIBS} )
#else()
add_library( ${LIB_NAME} SHARED ${LJCORE_C} ${DEPS} )
set_target_properties ( ${LIB_NAME} PROPERTIES PREFIX "" )
target_link_libraries ( ${LIB_NAME} ${LIBS} )
#endif()

if(NOT ${BUILD_LIB_ONLY})
## LuaJIT Executable
add_executable ( luajit ${LUAJIT_DIR}/luajit.c ${LUAJIT_DIR}/luajit.rc )
target_link_libraries ( luajit ${LIB_NAME} )

# On Windows build a no-console variant also
if ( LUA_BUILD_WLUA )
add_executable ( wluajit WIN32 ${LUAJIT_DIR}/wmain.c ${LUAJIT_DIR}/luajit.c ${LUAJIT_DIR}/luajit.rc )
target_link_libraries ( wluajit ${LIB_NAME} )
endif ()
endif()

0 comments on commit 2e06299

Please sign in to comment.