lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Out of curiosity I recompiled Lua 5.2 like so
> 
>    make MYCFLAGS="-D'luai_apicheck(...)=(void)0' -march=native -O3 -flto \
>    -fwhole-program -fprofile-use=/tmp/gcov" linux

Just a small detail: you probably don't need to define 'luai_apicheck',
because by default it is already '(void)0'.

-- Roberto