summaryrefslogtreecommitdiff
path: root/include/llvm/Linker.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-30 00:29:39 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-30 00:29:39 +0000
commitc9a83e4f19519e19469efa0ed39d81ed60b94401 (patch)
treed5b7f780b05a06327e4b4b6538506ce8713057fe /include/llvm/Linker.h
parent0a1817392d3ad7ec2681e6bf495f490c443ec0b7 (diff)
downloadllvm-c9a83e4f19519e19469efa0ed39d81ed60b94401.tar.gz
llvm-c9a83e4f19519e19469efa0ed39d81ed60b94401.tar.bz2
llvm-c9a83e4f19519e19469efa0ed39d81ed60b94401.tar.xz
If an archive is not recognized as an LLVM bytecode archive then declare
that it is native so that the linker will pass it on downstream. This avoids a problem where the native link line fails because there is both a .so and a .a file. The .a file gets processed as bytecode and then dropped from the command line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Linker.h')
-rw-r--r--include/llvm/Linker.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Linker.h b/include/llvm/Linker.h
index 160a0695cd..66a8483367 100644
--- a/include/llvm/Linker.h
+++ b/include/llvm/Linker.h
@@ -229,7 +229,8 @@ class Linker {
/// @returns true if an error occurs, otherwise false.
/// @brief Link in one archive.
bool LinkInArchive(
- const sys::Path& Filename ///< Filename of the archive to link
+ const sys::Path& Filename, ///< Filename of the archive to link
+ bool& is_native ///< Indicates if archive is a native archive
);
/// This method links the \p Src module into the Linker's Composite module