<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emscripten/emar, branch fail</title>
<subtitle>Emscripten: An LLVM-to-JavaScript Compiler</subtitle>
<id>https://git.amat.us/emscripten/atom/emar?h=fail</id>
<link rel='self' href='https://git.amat.us/emscripten/atom/emar?h=fail'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/'/>
<updated>2013-02-27T00:42:31Z</updated>
<entry>
<title>add cache debugging</title>
<updated>2013-02-27T00:42:31Z</updated>
<author>
<name>Vladimir Vukicevic</name>
<email>vladimirv@dugeo.com</email>
</author>
<published>2013-02-27T00:39:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=d08b1ad1ec7500fe600a075c69ec72350ec89152'/>
<id>urn:sha1:d08b1ad1ec7500fe600a075c69ec72350ec89152</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Updated scripts to call python2 directly rather than relying on python symlink pointing to the right place. See PEP394 for details on why this should be OK.</title>
<updated>2012-12-19T23:06:48Z</updated>
<author>
<name>Alan Kligman</name>
<email>alan.kligman@gmail.com</email>
</author>
<published>2012-12-01T23:31:36Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=315f13e5a1b35e23241da080f0df16e80ece88ae'/>
<id>urn:sha1:315f13e5a1b35e23241da080f0df16e80ece88ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Misc fixes for Windows.</title>
<updated>2012-03-20T13:26:50Z</updated>
<author>
<name>Sigmund Vik</name>
<email>sigmund_vik@yahoo.com</email>
</author>
<published>2012-03-20T13:26:50Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=f829735cc3e20e5d2165a020e87c4128d2ed9792'/>
<id>urn:sha1:f829735cc3e20e5d2165a020e87c4128d2ed9792</id>
<content type='text'>
Most of these changes have to do with how python scripts are invoked.

For Linux, 'Popen([EMCC] + args)' works because the first line in emcc
is '#!/usr/bin/env python'. On Windows, the python interpreter has
to be explicitly invoked, e.g. 'Popen(['python', EMCC] + args)'. Note
that there is no harm in explicitly invoking the python interpreter
on Linux, so this works on both platforms.

For Windows, execvp() behaves differently than on Linux:
http://mail.python.org/pipermail/python-list/2002-July/763863.html
http://msdn.microsoft.com/en-us/library/3xw6zy53.aspx

This causes many strange things to happen as the parent process
terminated before its children. In this change the use of execvp()
has been replaced with subprocess.call().

This change also fixes some code that assumed that the path separator
always is '/', but for Windows it is '\'. And where the path module
can be required, we use path.normalize() and path.resolve() to check
if a filename is absolute in a platform agnostic manner.
</content>
</entry>
<entry>
<title>Use llvm-ar instead of llvm-link in emar</title>
<updated>2012-02-08T23:45:37Z</updated>
<author>
<name>Ehsan Akhgari</name>
<email>ehsan.akhgari@gmail.com</email>
</author>
<published>2012-02-07T22:05:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=f0fe97c44891b20962d4c3f7122d205cdfc479aa'/>
<id>urn:sha1:f0fe97c44891b20962d4c3f7122d205cdfc479aa</id>
<content type='text'>
This makes the semantics of emar to be the same as the semantics of
system ar.
</content>
</entry>
<entry>
<title>use llvm-link in emar instead of llvm-ld</title>
<updated>2012-01-25T23:07:52Z</updated>
<author>
<name>Alon Zakai</name>
<email>alonzakai@gmail.com</email>
</author>
<published>2012-01-25T23:07:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=d620f29853c826a062e3a64604595a6fcccc7d2a'/>
<id>urn:sha1:d620f29853c826a062e3a64604595a6fcccc7d2a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make emcc and emar more robust against odd makefile inputs</title>
<updated>2011-12-17T05:55:39Z</updated>
<author>
<name>Alon Zakai</name>
<email>alonzakai@gmail.com</email>
</author>
<published>2011-12-17T05:55:39Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=3c17526474d054acb9aa616d5af95103f040b2d2'/>
<id>urn:sha1:3c17526474d054acb9aa616d5af95103f040b2d2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>generate .o by default, not .bc. fixes test_zlib</title>
<updated>2011-12-15T01:01:16Z</updated>
<author>
<name>Alon Zakai</name>
<email>alonzakai@gmail.com</email>
</author>
<published>2011-12-15T01:01:16Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=df41a405914e60d21262b3fb9ab81a5832bb4405'/>
<id>urn:sha1:df41a405914e60d21262b3fb9ab81a5832bb4405</id>
<content type='text'>
</content>
</entry>
<entry>
<title>initial work to refactor emcc into emcc, emld, emar, emranlib</title>
<updated>2011-12-14T19:12:19Z</updated>
<author>
<name>Alon Zakai</name>
<email>alonzakai@gmail.com</email>
</author>
<published>2011-12-14T19:12:19Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten/commit/?id=5322f208ad2126038456c90860970739c6e36556'/>
<id>urn:sha1:5322f208ad2126038456c90860970739c6e36556</id>
<content type='text'>
</content>
</entry>
</feed>
