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 <[email protected]> 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 > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
