[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Improving performance of Lua on low-end systems
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 29 Oct 2014 13:49:34 -0200
> 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