Changes to enable creation of native executables directly from gccld and to
ensure that -L paths don't contain both bytecode and native libraries.
This patch contributed by Adam Treat.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20370 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/gccld/gccld.h b/tools/gccld/gccld.h
index 922d535..ea9a8ee 100644
--- a/tools/gccld/gccld.h
+++ b/tools/gccld/gccld.h
@@ -31,13 +31,19 @@
                   const std::string & InputFilename,
                   const sys::Path & llc);
 
-int GenerateCFile(const std::string &OutputFile, const std::string &InputFile,
-                  const sys::Path &llc);
+int 
+GenerateCFile (const std::string &OutputFile, 
+               const std::string &InputFile,
+               const sys::Path &llc);
 int
 GenerateNative (const std::string & OutputFilename,
                 const std::string & InputFilename,
+                const std::vector<std::string> & LibPaths,
                 const std::vector<std::string> & Libraries,
                 const sys::Path & gcc,
-                char ** const envp);
+                char ** const envp,
+                bool Shared,
+                const std::string & RPath,
+                const std::string & SOName);
 
 } // End llvm namespace