[cfe-commits] r160231 - /cfe/trunk/lib/Driver/Tools.cpp

David Chisnall csdavec at swan.ac.uk
Sun Jul 15 15:11:46 PDT 2012


I've just done a clean build on FreeBSD 8.3/x86-64 and this test passes.  I've also tested on 9.0-RELEASE and 10-CURRENT and I can't reproduce this test failure.  Is there something odd about this buildbot?

David

On 15 Jul 2012, at 22:27, Benjamin Kramer wrote:

> This seems to have caused a failure on the freebsd8 x86_64 buildbot
> 
> http://lab.llvm.org:8011/builders/clang-X86_64-freebsd/builds/3619
> 
> hello.c is the only test that builds, links and runs an executable, it doesn't report what actually went wrong though. Maybe fbsd8 needs special treatment?
> 
> - Ben
> 
> On 15.07.2012, at 14:53, David Chisnall <csdavec at swan.ac.uk> wrote:
> 
>> Author: theraven
>> Date: Sun Jul 15 07:53:06 2012
>> New Revision: 160231
>> 
>> URL: http://llvm.org/viewvc/llvm-project?rev=160231&view=rev
>> Log:
>> Enable new linker behaviour on FreeBSD.
>> 
>> 
>> Modified:
>>   cfe/trunk/lib/Driver/Tools.cpp
>> 
>> Modified: cfe/trunk/lib/Driver/Tools.cpp
>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Tools.cpp?rev=160231&r1=160230&r2=160231&view=diff
>> ==============================================================================
>> --- cfe/trunk/lib/Driver/Tools.cpp (original)
>> +++ cfe/trunk/lib/Driver/Tools.cpp Sun Jul 15 07:53:06 2012
>> @@ -4996,6 +4996,8 @@
>>                                 const char *LinkingOutput) const {
>>  const Driver &D = getToolChain().getDriver();
>>  ArgStringList CmdArgs;
>> +  CmdArgs.push_back("--hash-style=both");
>> +  CmdArgs.push_back("--enable-new-dtags");
>> 
>>  if (!D.SysRoot.empty())
>>    CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
>> 
>> 
>> _______________________________________________
>> cfe-commits mailing list
>> cfe-commits at cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
> 





More information about the cfe-commits mailing list