<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/Makefile, branch stable</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/Makefile?h=stable</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/Makefile?h=stable'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2013-03-22T18:54:14Z</updated>
<entry>
<title>Reverted r176374. In some cases the lit.site.cfg file does not get generated in tools/clang/tools/extra.</title>
<updated>2013-03-22T18:54:14Z</updated>
<author>
<name>Galina Kistanova</name>
<email>gkistanova@gmail.com</email>
</author>
<published>2013-03-22T18:54:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=57ba122e76280a4101c5913ff72d07c64933a468'/>
<id>urn:sha1:57ba122e76280a4101c5913ff72d07c64933a468</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177751 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>In r169695, the address space limit for tests was replaced with a data</title>
<updated>2013-03-12T12:38:10Z</updated>
<author>
<name>Patrik Hagglund</name>
<email>patrik.h.hagglund@ericsson.com</email>
</author>
<published>2013-03-12T12:38:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=775a266415e293c4e5ab1ed3e006823bba68a872'/>
<id>urn:sha1:775a266415e293c4e5ab1ed3e006823bba68a872</id>
<content type='text'>
segment limit. Now, as a complement, add a stack space limit.

Otherwise, tests may grow undesirable large at inifinite
recursion. (Seen at r176838,
test/Assembler/2010-02-05-FunctionLocalMetadataBecomesNull.ll)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176862 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>No need to force-create clang-tools-extra lit.site.cfg</title>
<updated>2013-03-01T19:58:58Z</updated>
<author>
<name>Edwin Vane</name>
<email>edwin.vane@intel.com</email>
</author>
<published>2013-03-01T19:58:58Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=4385988d26a1e796cc3b2ce1b15ea077a7ee35ac'/>
<id>urn:sha1:4385988d26a1e796cc3b2ce1b15ea077a7ee35ac</id>
<content type='text'>
The make (all) target takes care of creating lit configs and auto-generating
tests. The problem with the original 'lit.site.cfg' target is it's not
recursive and doesn't fully create everything necessary for testing
clang-tools-extra.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176374 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>build: add --with-python option</title>
<updated>2013-01-30T04:07:37Z</updated>
<author>
<name>Saleem Abdulrasool</name>
<email>compnerd@compnerd.org</email>
</author>
<published>2013-01-30T04:07:37Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=3ef8b0adb4c64b5a8611472850b4991afaf289f1'/>
<id>urn:sha1:3ef8b0adb4c64b5a8611472850b4991afaf289f1</id>
<content type='text'>
This adds a new --with-python option to allow configuration of the python binary
for building.  If not specified, $PATH will be searched for common python binary
names (python, python2, python3).  If specified, and the path is not executable,
it will attempt to search $PATH.

Signed-off-by: Saleem Abdulrasool &lt;compnerd@compnerd.org&gt;
Reviewed-by: Eric Christopher &lt;echristo@gmail.com&gt;, Daniel Dunbar &lt;daniel@zuster.org&gt;

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173890 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Introduce llvm::sys::getProcessTriple() function.</title>
<updated>2013-01-16T17:27:22Z</updated>
<author>
<name>Peter Collingbourne</name>
<email>peter@pcc.me.uk</email>
</author>
<published>2013-01-16T17:27:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fbb662f840c2f76988ff9f3f152695632cfc71be'/>
<id>urn:sha1:fbb662f840c2f76988ff9f3f152695632cfc71be</id>
<content type='text'>
In r143502, we renamed getHostTriple() to getDefaultTargetTriple()
as part of work to allow the user to supply a different default
target triple at configure time.  This change also affected the JIT.
However, it is inappropriate to use the default target triple in the
JIT in most circumstances because this will not necessarily match
the current architecture used by the process, leading to illegal
instruction and other such errors at run time.

Introduce the getProcessTriple() function for use in the JIT and
its clients, and cause the JIT to use it.  On architectures with a
single bitness, the host and process triples are identical.  On other
architectures, the host triple represents the architecture of the
host CPU, while the process triple represents the architecture used
by the host CPU to interpret machine code within the current process.
For example, when executing 32-bit code on a 64-bit Linux machine,
the host triple may be 'x86_64-unknown-linux-gnu', while the process
triple may be 'i386-unknown-linux-gnu'.

This fixes JIT for the 32-on-64-bit (and vice versa) build on non-Apple
platforms.

Differential Revision: http://llvm-reviews.chandlerc.com/D254

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172627 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Drop the address space limit for tests in the makefile build.</title>
<updated>2012-12-09T10:34:22Z</updated>
<author>
<name>Benjamin Kramer</name>
<email>benny.kra@googlemail.com</email>
</author>
<published>2012-12-09T10:34:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f81093a826f815596d7db8e93abd71021384c4fd'/>
<id>urn:sha1:f81093a826f815596d7db8e93abd71021384c4fd</id>
<content type='text'>
The limit seems to break newer pythons (see PR13598) so just drop it for now.
Eventually lit should learn to set limits for its children instead of a global
limit in the makefile.

If some PPC bots fail after this change: That's a good thing, they actually run
clang tests now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169695 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>test: Add a lit config variable to check if LTO is enabled.</title>
<updated>2012-10-18T20:43:11Z</updated>
<author>
<name>Daniel Dunbar</name>
<email>daniel@zuster.org</email>
</author>
<published>2012-10-18T20:43:11Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=b288ad8e3627c25747ba68d81a70bfe111efaa16'/>
<id>urn:sha1:b288ad8e3627c25747ba68d81a70bfe111efaa16</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166225 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert r117093, "test/Makefile: Force lit -j1 on Cygwin."</title>
<updated>2012-10-09T05:07:18Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2012-10-09T05:07:18Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=7c8998eaba7c921326bd59d8875af092e56b4071'/>
<id>urn:sha1:7c8998eaba7c921326bd59d8875af092e56b4071</id>
<content type='text'>
lit -jN works on cygwin in most cases, but still sometimes I can see stalls with iterative run on the buildbot.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165482 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>yet another attempt at fixing @OCAMLOPT@ for sed.</title>
<updated>2012-09-07T09:24:13Z</updated>
<author>
<name>Nuno Lopes</name>
<email>nunoplopes@sapo.pt</email>
</author>
<published>2012-09-07T09:24:13Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=c37290e5785be9191bbbfc3d91f6820bedc3dd64'/>
<id>urn:sha1:c37290e5785be9191bbbfc3d91f6820bedc3dd64</id>
<content type='text'>
Patch by Rick Foos.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163380 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>escape special char when handling CXX_FOR_OCAMLOPT</title>
<updated>2012-09-02T15:16:51Z</updated>
<author>
<name>Nuno Lopes</name>
<email>nunoplopes@sapo.pt</email>
</author>
<published>2012-09-02T15:16:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ad5a0ce40b8c4897ba3e12c3ec645bd38b95adff'/>
<id>urn:sha1:ad5a0ce40b8c4897ba3e12c3ec645bd38b95adff</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163098 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
