Even with -disable-opt we should still internalize and strip if requested.
[oota-llvm.git] / tools / gccld / gccld.h
1 //===- gccld.h - Utility functions header file ------------------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains function prototypes for the functions in util.cpp.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Module.h"
15 #include "llvm/Linker.h"
16
17 #include <string>
18 #include <set>
19 #include <ostream>
20
21 namespace llvm {
22
23 int
24 GenerateBytecode (Module * M,
25                   bool Strip,
26                   bool Internalize,
27                   std::ostream * Out);
28
29 int
30 GenerateAssembly (const std::string & OutputFilename,
31                   const std::string & InputFilename,
32                   const std::string & llc,
33                   char ** const envp);
34
35 int GenerateCFile(const std::string &OutputFile, const std::string &InputFile,
36                   const std::string &llc, char ** const envp);
37 int
38 GenerateNative (const std::string & OutputFilename,
39                 const std::string & InputFilename,
40                 const std::vector<std::string> & Libraries,
41                 const std::vector<std::string> & LibPaths,
42                 const std::string & gcc,
43                 char ** const envp);
44
45 } // End llvm namespace