diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-05-12 16:24:32 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-05-12 16:24:32 -0400 |
commit | 7f5933f02ab229cabb1ad2bb1a900ef2a9165ed3 (patch) | |
tree | c570a5abbdc5755d4c2072903b98ace37ebff5a7 | |
parent | c21bbc8129b55f95723110ac837179dec479459c (diff) | |
download | lite-xl-plugin-manager-7f5933f02ab229cabb1ad2bb1a900ef2a9165ed3.tar.gz lite-xl-plugin-manager-7f5933f02ab229cabb1ad2bb1a900ef2a9165ed3.zip |
Updated meson and build.sh to remove source context for LPM_STATIC builds.
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ fi # Build the pre-packaged lua file into the executbale. if [[ "$@" == *"-DLPM_STATIC"* ]]; then [[ ! -e "lua.exe" ]] && { $HOSTCC -Ilib/lua -o lua.exe lib/lua/onelua.c -lm || exit -1; } - ./lua.exe -e 'io.open("src/lpm.lua.c", "wb"):write("unsigned char lpm_luac[] = \""..string.dump(loadfile("src/lpm.lua")):gsub(".",function(c) return string.format("\\x%02X",string.byte(c)) end).."\";unsigned int lpm_luac_len = sizeof(lpm_luac)-1;")' + ./lua.exe -e 'io.open("src/lpm.lua.c", "wb"):write("unsigned char lpm_luac[] = \""..string.dump(load(io.lines("src/lpm.lua","L"), "=lpm.lua")):gsub(".",function(c) return string.format("\\x%02X",string.byte(c)) end).."\";unsigned int lpm_luac_len = sizeof(lpm_luac)-1;")' fi [[ $OSTYPE != 'msys'* && $CC != *'mingw'* && $CC != "emcc" ]] && COMPILE_FLAGS="$COMPILE_FLAGS -DLUA_USE_LINUX" && LINK_FLAGS="$LINK_FLAGS -ldl" diff --git a/meson.build b/meson.build index e6e294e..a25d1eb 100644 --- a/meson.build +++ b/meson.build @@ -50,7 +50,7 @@ if get_option('static') lpm_source += configure_file( capture: false, - command: [lua_exe, '-e', 'f = string.dump(assert(loadfile("@INPUT0@"))) io.open("@OUTPUT0@", "wb"):write("unsigned char lpm_luac[] = \"" .. f:gsub(".", function (c) return string.format("\\\x%02X",string.byte(c)) end) .. "\";unsigned int lpm_luac_len = " .. #f .. ";")'], + command: [lua_exe, '-e', 'f = string.dump(assert(load(io.lines("@INPUT@","L"), "=lpm.lua")) io.open("@OUTPUT0@", "wb"):write("unsigned char lpm_luac[] = \"" .. f:gsub(".", function (c) return string.format("\\\x%02X",string.byte(c)) end) .. "\";unsigned int lpm_luac_len = " .. #f .. ";")'], input: files('src/lpm.lua'), output: 'lpm.lua.c' ) |