<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/llvm/lib/System/Unix/Program.inc, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2010-11-29T18:16:10+00:00</updated>
<entry>
<title>Merge System into Support.</title>
<updated>2010-11-29T18:16:10+00:00</updated>
<author>
<name>Michael J. Spencer</name>
<email>bigcheesegs@gmail.com</email>
</author>
<published>2010-11-29T18:16:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=447762da858c1705c5fce5288f874797dc4b1135'/>
<id>urn:sha1:447762da858c1705c5fce5288f874797dc4b1135</id>
<content type='text'>
llvm-svn: 120298
</content>
</entry>
<entry>
<title>Make FindProgramByName return paths with slashes unmodified on Windows.</title>
<updated>2010-11-02T20:32:39+00:00</updated>
<author>
<name>Mikhail Glushenkov</name>
<email>foldr@codedgers.com</email>
</author>
<published>2010-11-02T20:32:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=a581d8a27aa6c7d582ee73136e888821493f31bb'/>
<id>urn:sha1:a581d8a27aa6c7d582ee73136e888821493f31bb</id>
<content type='text'>
This makes its behaviour more consistent across platforms.

llvm-svn: 118048
</content>
</entry>
<entry>
<title>Check if ErrMsg is null. This fixes the "not" command.</title>
<updated>2010-10-29T17:20:42+00:00</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2010-10-29T17:20:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5bc07d2bce68708893c65b42a317b4e3c24570d0'/>
<id>urn:sha1:5bc07d2bce68708893c65b42a317b4e3c24570d0</id>
<content type='text'>
llvm-svn: 117666
</content>
</entry>
<entry>
<title>Make Program::Wait differentiate execution failure due to the file</title>
<updated>2010-10-29T16:54:25+00:00</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2010-10-29T16:54:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=fc81579b5e10b1c627c1bdbd9d1d035868cf11ee'/>
<id>urn:sha1:fc81579b5e10b1c627c1bdbd9d1d035868cf11ee</id>
<content type='text'>
being not found from the file being not executable. 

llvm-svn: 117664
</content>
</entry>
<entry>
<title>Make Program::Wait provide an error message string for errors</title>
<updated>2010-10-29T16:39:01+00:00</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2010-10-29T16:39:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=cae3c53b31ab42b69ee76438630084ebca8caea1'/>
<id>urn:sha1:cae3c53b31ab42b69ee76438630084ebca8caea1</id>
<content type='text'>
executing the child process and abnormal child process termination.

llvm-svn: 117661
</content>
</entry>
<entry>
<title>Revert r117582, which reverted r77396. Searching PATH for a string</title>
<updated>2010-10-28T20:34:33+00:00</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2010-10-28T20:34:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=47215f4e04d333aa63668e077df9301144aa1a2f'/>
<id>urn:sha1:47215f4e04d333aa63668e077df9301144aa1a2f</id>
<content type='text'>
which contains slashes is inconsistent with the meaning of PATH on
Unix-type platforms, and pretty surprising.

If the user has given a specific path to execute and we can't
execute it, we should fail and say why.  (Apparently the new
posix_spawn code doesn't always say why, but that's a separate
issue.)

llvm-svn: 117596
</content>
</entry>
<entry>
<title>Revert r77396.</title>
<updated>2010-10-28T19:32:58+00:00</updated>
<author>
<name>Mikhail Glushenkov</name>
<email>foldr@codedgers.com</email>
</author>
<published>2010-10-28T19:32:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=d7faab5c9578cb66827cc9b44d548fed31d5b358'/>
<id>urn:sha1:d7faab5c9578cb66827cc9b44d548fed31d5b358</id>
<content type='text'>
Original commit message:

    On "Unix", if Program::FindProgramByName is given a name containing
    slashes, just go with it, regardless of whether it looks like it will
    be executable. This follows the behavior of sh(1) more closely.

It's better when behaviour is consistent between platforms. This change also
makes FindExecutable() behave as expected on unix-likes (before this commit, it
used to always succeed).

llvm-svn: 117582
</content>
</entry>
<entry>
<title>Trailing whitespace.</title>
<updated>2010-10-28T19:32:53+00:00</updated>
<author>
<name>Mikhail Glushenkov</name>
<email>foldr@codedgers.com</email>
</author>
<published>2010-10-28T19:32:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=0e9d9b51ebfdc0a4575077b7f350712cde1e9e05'/>
<id>urn:sha1:0e9d9b51ebfdc0a4575077b7f350712cde1e9e05</id>
<content type='text'>
llvm-svn: 117581
</content>
</entry>
<entry>
<title>Add an explicit initialization to work around what appears to be a valgrind</title>
<updated>2010-09-30T23:56:49+00:00</updated>
<author>
<name>Daniel Dunbar</name>
<email>daniel@zuster.org</email>
</author>
<published>2010-09-30T23:56:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=31158b583aba82829dbbcac843fa839719055433'/>
<id>urn:sha1:31158b583aba82829dbbcac843fa839719055433</id>
<content type='text'>
false positive, at least on Darwin. I haven't filed this, but you can feel free.

llvm-svn: 115242
</content>
</entry>
<entry>
<title>Rather than using an ifdef on the target to zero out fields,</title>
<updated>2010-07-14T14:32:33+00:00</updated>
<author>
<name>Duncan Sands</name>
<email>baldrick@free.fr</email>
</author>
<published>2010-07-14T14:32:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=7a68cd094b2f1fc9027d63fab52d2a2cc207e10a'/>
<id>urn:sha1:7a68cd094b2f1fc9027d63fab52d2a2cc207e10a</id>
<content type='text'>
just use memset to zero the entire struct.

llvm-svn: 108330
</content>
</entry>
</feed>
