forked from OSchip/llvm-project
Rename 'DarwinStaticLib' to 'DarwinLibName'
The former name doesn't make sense, we are using this parameter for both .a and .dylib libraries. No functional change. http://reviews.llvm.org/D6040 llvm-svn: 220939
This commit is contained in:
parent
c3eefa39cc
commit
2735a02572
|
@ -291,11 +291,11 @@ void DarwinClang::AddLinkARCArgs(const ArgList &Args,
|
|||
}
|
||||
|
||||
void MachO::AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
|
||||
StringRef DarwinStaticLib, bool AlwaysLink,
|
||||
StringRef DarwinLibName, bool AlwaysLink,
|
||||
bool IsEmbedded) const {
|
||||
SmallString<128> P(getDriver().ResourceDir);
|
||||
llvm::sys::path::append(P, "lib", IsEmbedded ? "macho_embedded" : "darwin",
|
||||
DarwinStaticLib);
|
||||
DarwinLibName);
|
||||
|
||||
// For now, allow missing resource libraries to support developers who may
|
||||
// not have compiler-rt checked out or integrated into their build (unless
|
||||
|
|
|
@ -234,7 +234,7 @@ public:
|
|||
|
||||
void AddLinkRuntimeLib(const llvm::opt::ArgList &Args,
|
||||
llvm::opt::ArgStringList &CmdArgs,
|
||||
StringRef DarwinStaticLib,
|
||||
StringRef DarwinLibName,
|
||||
bool AlwaysLink = false,
|
||||
bool IsEmbedded = false) const;
|
||||
|
||||
|
|
Loading…
Reference in New Issue