Alexey Melnichuk

Results 86 issues of Alexey Melnichuk

I have a quite old appveyour script which builds libcurl and places a lib file to the `с:\external\lib\` directory. When I use [LuaRocks 2.4.4](https://ci.appveyor.com/project/moteus/lua-curlv3/builds/37140936/job/8tcuj78mbd3dgq80) all works as expected. But when...

windows

I just try to build my [luacom](https://github.com/moteus/luacom/blob/master/luacom-scm.moteus-1.rockspec) rockspec on the [AppVeyour service](https://ci.appveyor.com/project/moteus/luacom/builds/33067702/job/2r8uy0p8lx9y2o5k) and got error ``` C:\projects\luacom\env\bin/lua.exe mak\luac.lua -o ".\src\library\luacom5.lo" ".\src\library\luacom5.lua" 'C:\projects\luacom\env\bin' is not recognized as an internal or external...

`incdir` use `target.base`, but `libdir` use current dir.

I try use lake to build rockspec (i play with [AesFileEncrypt](https://github.com/moteus/lua-AesFileEncrypt)) This is fragment from my rockspec ``` lua local LAKE_FLAGS = " ROOT=$(PREFIX)" .. " LUADIR=$(LUADIR)" .. " LIBDIR=$(LIBDIR)"...

Lake leaves `.exp` and `.lib` files after cleaning.

``` c.shared{ .... defines = {}; .... } ``` i get: `lake.lua:768: attempt to call method 'match' (a nil value)` this is in: ``` lua function list.concat(ls,pre,sep) local res =...

When i try build https://github.com/moteus/luaffi on travis i get: ``` $ lake clean test lake: /usr/local//lib/luarocks/rocks/lake/scm-0/bin/lake:2896: bad argument #1 to 'append' (table expected, got nil) ```

I try write lakefile for [luaffi](https://github.com/jmckaskill/luaffi) library. This library has generated header files: ``` lua.exe dynasm\dynasm.lua -LNE -D X32WIN -o call_x86.h call_x86.dasc lua.exe dynasm\dynasm.lua -LNE -D X64 -o call_x64.h call_x86.dasc...

Now `L("a","b","c")` produce `{"a"}` I fix this like: ``` lua local function LL_impl(...) local res = {} for i = 1, select('#', ...) do local arg = select(i, ...) res[i]...

path.join shold unquot each element and quot result For example: IPPARCH="ia32" IPPBASE=J([[e:\Program Files\Intel\IPP\6.0.2.074]], IPPARCH) -- here i have IPPBASE= [["e:\Program Files\Intel\IPP\6.0.2.074\ia32"]] .... incdir=J(IPPBASE, 'include') -- here i have incdir= [["e:\Program...