vanhofen
6 years ago
3 changed files with 89 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||
-- cross-compilation |
|||
local function getenv(name) return os_getenv(name) or '' end |
|||
variables.LUA_INCDIR = getenv('TARGET_INCLUDE_DIR') |
|||
variables.LUA_LIBDIR = getenv('TARGET_LIB_DIR') |
|||
variables.CC = getenv('TARGET_CC') |
|||
variables.LD = getenv('TARGET_LD') |
|||
variables.CFLAGS = getenv('(TARGET_CFLAGS') |
|||
variables.LDFLAGS = getenv('(TARGET_LDFLAGS') |
|||
variables.LIBFLAG = [[-shared ]] .. getenv('TARGET_LDFLAGS') |
|||
external_deps_dirs = { getenv('TARGET_DIR') } |
|||
gcc_rpath = false |
|||
rocks_trees = { getenv('TARGET_DIR') } |
|||
wrap_bin_scripts = false |
|||
deps_mode = [[none]] |
@ -0,0 +1,34 @@ |
|||
From 961269271134e711bcfffebb0f179ffddcbf3d5a Mon Sep 17 00:00:00 2001 |
|||
From: Francois Perrad <francois.perrad@gadz.org> |
|||
Date: Sun, 29 Jul 2018 11:17:34 +0200 |
|||
Subject: [PATCH] allow libluajit detection |
|||
|
|||
This detection was done only if luarocks is runned by luajit. |
|||
But on Buildroot, luarocks is always runned by lua. |
|||
|
|||
See https://github.com/luarocks/luarocks/pull/883 |
|||
|
|||
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> |
|||
---
|
|||
src/luarocks/deps.lua | 4 +--- |
|||
1 file changed, 1 insertion(+), 3 deletions(-) |
|||
|
|||
diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua
|
|||
index 8403f12..c1c0220 100644
|
|||
--- a/src/luarocks/deps.lua
|
|||
+++ b/src/luarocks/deps.lua
|
|||
@@ -544,10 +544,8 @@ function deps.check_lua(vars)
|
|||
"lua-" .. cfg.lua_version, |
|||
"lua-" .. shortv, |
|||
"lua", |
|||
+ "luajit-" .. cfg.lua_version,
|
|||
} |
|||
- if cfg.luajit_version then
|
|||
- table.insert(libnames, 1, "luajit-" .. cfg.lua_version)
|
|||
- end
|
|||
local cache = {} |
|||
for _, libname in ipairs(libnames) do |
|||
local ok = check_external_dependency("LUA", { library = libname }, vars, "build", cache) |
|||
--
|
|||
2.17.1 |
|||
|
Loading…
Reference in new issue