Deleted Added
sdiff udiff text old ( 193326 ) new ( 195341 )
full compact
1//===--- ToolChains.cpp - ToolChain Implementations ---------------------*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 370 unchanged lines hidden (view full) ---

379const char *Generic_GCC::GetForcedPicModel() const {
380 return 0;
381}
382
383DerivedArgList *Generic_GCC::TranslateArgs(InputArgList &Args) const {
384 return new DerivedArgList(Args, true);
385}
386
387/// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly.
388
389FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple, bool Lib32)
390 : Generic_GCC(Host, Triple) {
391 if (Lib32) {
392 getFilePaths().push_back(getHost().getDriver().Dir + "/../lib32");
393 getFilePaths().push_back("/usr/lib32");
394 } else {

--- 81 unchanged lines hidden ---