<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lua/makefile, branch v5.4.4</title>
<subtitle>A mirror of https://github.com/lua/lua
</subtitle>
<id>https://git.lua4.win/lua/atom?h=v5.4.4</id>
<link rel='self' href='https://git.lua4.win/lua/atom?h=v5.4.4'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/'/>
<updated>2021-09-15T14:18:41+00:00</updated>
<entry>
<title>Using 'inline' in some functions</title>
<updated>2021-09-15T14:18:41+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2021-09-15T14:18:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=2ff34717227b8046b0fdcb96206f11f5e888664e'/>
<id>urn:sha1:2ff34717227b8046b0fdcb96206f11f5e888664e</id>
<content type='text'>
According to ISO C, "making a function an inline function suggests that
calls to the function be as fast as possible." (Not available in C89.)
</content>
</entry>
<entry>
<title>Eases the use of clang in the makefile</title>
<updated>2021-02-10T17:11:51+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2021-02-10T17:11:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=f79ccdca9bbe9d486d91a44a4464b99ce38de0e2'/>
<id>urn:sha1:f79ccdca9bbe9d486d91a44a4464b99ce38de0e2</id>
<content type='text'>
New definition in the makefile for warnings that are valid for gcc but
not for clang (CWARNGCC).
</content>
</entry>
<entry>
<title>Compiler optimization back to '-O2'</title>
<updated>2020-11-11T18:10:51+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2020-11-11T18:10:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=2f4162bc473b995117e95c88230f637ca3e1c866'/>
<id>urn:sha1:2f4162bc473b995117e95c88230f637ca3e1c866</id>
<content type='text'>
Undo commit 6a10f03ff. Compiler performance is important, too.
</content>
</entry>
<entry>
<title>Macro LUAI_ASSERT eases turning assertions on</title>
<updated>2020-07-08T18:51:55+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2020-07-08T18:51:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=6f5bd5072dff07679c390eecfeaa9d20cc45a9ef'/>
<id>urn:sha1:6f5bd5072dff07679c390eecfeaa9d20cc45a9ef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change in macro HARDMEMTESTS for testing GC</title>
<updated>2020-07-08T18:36:48+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2020-07-08T18:36:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=56ec4322817b0e9aef6084c278dcf24fda7bed1c'/>
<id>urn:sha1:56ec4322817b0e9aef6084c278dcf24fda7bed1c</id>
<content type='text'>
Macro HARDMEMTESTS broke in two: HARDMEMTESTS forces a full GC cycle
at every point where the GC can run. New macro EMERGENCYGCTESTS
forces an emergency collection at every memory allocation.
</content>
</entry>
<entry>
<title>Details</title>
<updated>2020-07-03T16:02:41+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2020-07-03T16:02:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=0280407fc54f9b6225139c5ac27326f98f0cf043'/>
<id>urn:sha1:0280407fc54f9b6225139c5ac27326f98f0cf043</id>
<content type='text'>
Comments in makefile and function 'l_str2d'.
</content>
</entry>
<entry>
<title>Details</title>
<updated>2020-06-10T19:39:37+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2020-06-10T19:39:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=69e84805e48b0253007bd0daf481ce7955367d73'/>
<id>urn:sha1:69e84805e48b0253007bd0daf481ce7955367d73</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Makefile compiles the Lua compiler with '-Os'</title>
<updated>2019-10-08T13:26:02+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2019-10-08T13:26:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=6a10f03ff81606e567c6891a90d70066a03c686e'/>
<id>urn:sha1:6a10f03ff81606e567c6891a90d70066a03c686e</id>
<content type='text'>
The performance of the Lua compiler is not critical for Lua
performance, but it is a big component in the source. So, it makes
sense to trade speed for size in this component.
</content>
</entry>
<entry>
<title>Details in the makefile (warning options)</title>
<updated>2019-09-24T17:43:32+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2019-09-24T17:43:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=89f6a85f034b2535e43e421991098fa05a92cd60'/>
<id>urn:sha1:89f6a85f034b2535e43e421991098fa05a92cd60</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Details</title>
<updated>2019-08-01T17:11:33+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2019-08-01T17:11:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=35a28a58b38fb90cbe7c9596d60af2b3c1bd52a3'/>
<id>urn:sha1:35a28a58b38fb90cbe7c9596d60af2b3c1bd52a3</id>
<content type='text'>
- removed rule about RCS from makefile
- comments and nitpicking in 'llex.c'
</content>
</entry>
</feed>
