Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings.
[oota-llvm.git] / tools / llvm-ld / llvm-ld.cpp
1 //===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
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 //===----------------------------------------------------------------------===//
9 //
10 // This utility is intended to be compatible with GCC, and follows standard
11 // system 'ld' conventions.  As such, the default output file is ./a.out.
12 // Additionally, this program outputs a shell script that is used to invoke LLI
13 // to execute the program.  In this manner, the generated executable (a.out for
14 // example), is directly executable, whereas the bitcode file actually lives in
15 // the a.out.bc file generated by this program.  Also, Force is on by default.
16 //
17 // Note that if someone (or a script) deletes the executable program generated,
18 // the .bc file will be left around.  Considering that this is a temporary hack,
19 // I'm not too worried about this.
20 //
21 //===----------------------------------------------------------------------===//
22
23 #include "llvm/LinkAllVMCore.h"
24 #include "llvm/Linker.h"
25 #include "llvm/System/Program.h"
26 #include "llvm/Module.h"
27 #include "llvm/PassManager.h"
28 #include "llvm/Bitcode/ReaderWriter.h"
29 #include "llvm/Target/TargetData.h"
30 #include "llvm/Target/TargetMachine.h"
31 #include "llvm/Target/TargetMachineRegistry.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/FileUtilities.h"
34 #include "llvm/Support/ManagedStatic.h"
35 #include "llvm/Support/MemoryBuffer.h"
36 #include "llvm/Support/Streams.h"
37 #include "llvm/Support/SystemUtils.h"
38 #include "llvm/System/Signals.h"
39 #include <fstream>
40 #include <memory>
41 #include <cstring>
42 using namespace llvm;
43
44 // Input/Output Options
45 static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
46   cl::desc("<input bitcode files>"));
47
48 static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
49   cl::desc("Override output filename"),
50   cl::value_desc("filename"));
51
52 static cl::opt<bool> Verbose("v",
53   cl::desc("Print information about actions taken"));
54
55 static cl::list<std::string> LibPaths("L", cl::Prefix,
56   cl::desc("Specify a library search path"),
57   cl::value_desc("directory"));
58
59 static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
60   cl::desc("Specify a framework search path"),
61   cl::value_desc("directory"));
62
63 static cl::list<std::string> Libraries("l", cl::Prefix,
64   cl::desc("Specify libraries to link to"),
65   cl::value_desc("library prefix"));
66
67 static cl::list<std::string> Frameworks("framework",
68   cl::desc("Specify frameworks to link to"),
69   cl::value_desc("framework"));
70
71 // Options to control the linking, optimization, and code gen processes
72 static cl::opt<bool> LinkAsLibrary("link-as-library",
73   cl::desc("Link the .bc files together as a library, not an executable"));
74
75 static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
76   cl::desc("Alias for -link-as-library"));
77
78 static cl::opt<bool> Native("native",
79   cl::desc("Generate a native binary instead of a shell script"));
80
81 static cl::opt<bool>NativeCBE("native-cbe",
82   cl::desc("Generate a native binary with the C backend and GCC"));
83
84 static cl::list<std::string> PostLinkOpts("post-link-opts",
85   cl::value_desc("path"),
86   cl::desc("Run one or more optimization programs after linking"));
87
88 static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
89   cl::desc("Pass options to the system linker"));
90
91 // Compatibility options that llvm-ld ignores but are supported for 
92 // compatibility with LD
93 static cl::opt<std::string> CO3("soname", cl::Hidden,
94   cl::desc("Compatibility option: ignored"));
95
96 static cl::opt<std::string> CO4("version-script", cl::Hidden,
97   cl::desc("Compatibility option: ignored"));
98
99 static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
100   cl::desc("Compatibility option: ignored"));
101
102 static  cl::opt<std::string> CO6("h", cl::Hidden,
103   cl::desc("Compatibility option: ignored"));
104
105 static cl::opt<bool> CO7("start-group", cl::Hidden, 
106   cl::desc("Compatibility option: ignored"));
107
108 static cl::opt<bool> CO8("end-group", cl::Hidden, 
109   cl::desc("Compatibility option: ignored"));
110
111 /// This is just for convenience so it doesn't have to be passed around
112 /// everywhere.
113 static std::string progname;
114
115 /// PrintAndExit - Prints a message to standard error and exits with error code
116 ///
117 /// Inputs:
118 ///  Message  - The message to print to standard error.
119 ///
120 static void PrintAndExit(const std::string &Message, int errcode = 1) {
121   cerr << progname << ": " << Message << "\n";
122   llvm_shutdown();
123   exit(errcode);
124 }
125
126 static void PrintCommand(const std::vector<const char*> &args) {
127   std::vector<const char*>::const_iterator I = args.begin(), E = args.end(); 
128   for (; I != E; ++I)
129     if (*I)
130       cout << "'" << *I << "'" << " ";
131   cout << "\n" << std::flush;
132 }
133
134 /// CopyEnv - This function takes an array of environment variables and makes a
135 /// copy of it.  This copy can then be manipulated any way the caller likes
136 /// without affecting the process's real environment.
137 ///
138 /// Inputs:
139 ///  envp - An array of C strings containing an environment.
140 ///
141 /// Return value:
142 ///  NULL - An error occurred.
143 ///
144 ///  Otherwise, a pointer to a new array of C strings is returned.  Every string
145 ///  in the array is a duplicate of the one in the original array (i.e. we do
146 ///  not copy the char *'s from one array to another).
147 ///
148 static char ** CopyEnv(char ** const envp) {
149   // Count the number of entries in the old list;
150   unsigned entries;   // The number of entries in the old environment list
151   for (entries = 0; envp[entries] != NULL; entries++)
152     /*empty*/;
153
154   // Add one more entry for the NULL pointer that ends the list.
155   ++entries;
156
157   // If there are no entries at all, just return NULL.
158   if (entries == 0)
159     return NULL;
160
161   // Allocate a new environment list.
162   char **newenv = new char* [entries];
163   if ((newenv = new char* [entries]) == NULL)
164     return NULL;
165
166   // Make a copy of the list.  Don't forget the NULL that ends the list.
167   entries = 0;
168   while (envp[entries] != NULL) {
169     newenv[entries] = new char[strlen (envp[entries]) + 1];
170     strcpy (newenv[entries], envp[entries]);
171     ++entries;
172   }
173   newenv[entries] = NULL;
174
175   return newenv;
176 }
177
178
179 /// RemoveEnv - Remove the specified environment variable from the environment
180 /// array.
181 ///
182 /// Inputs:
183 ///  name - The name of the variable to remove.  It cannot be NULL.
184 ///  envp - The array of environment variables.  It cannot be NULL.
185 ///
186 /// Notes:
187 ///  This is mainly done because functions to remove items from the environment
188 ///  are not available across all platforms.  In particular, Solaris does not
189 ///  seem to have an unsetenv() function or a setenv() function (or they are
190 ///  undocumented if they do exist).
191 ///
192 static void RemoveEnv(const char * name, char ** const envp) {
193   for (unsigned index=0; envp[index] != NULL; index++) {
194     // Find the first equals sign in the array and make it an EOS character.
195     char *p = strchr (envp[index], '=');
196     if (p == NULL)
197       continue;
198     else
199       *p = '\0';
200
201     // Compare the two strings.  If they are equal, zap this string.
202     // Otherwise, restore it.
203     if (!strcmp(name, envp[index]))
204       *envp[index] = '\0';
205     else
206       *p = '=';
207   }
208
209   return;
210 }
211
212 /// GenerateBitcode - generates a bitcode file from the module provided
213 void GenerateBitcode(Module* M, const std::string& FileName) {
214
215   if (Verbose)
216     cout << "Generating Bitcode To " << FileName << '\n';
217
218   // Create the output file.
219   std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
220                                std::ios::binary;
221   std::ofstream Out(FileName.c_str(), io_mode);
222   if (!Out.good())
223     PrintAndExit("error opening '" + FileName + "' for writing!");
224
225   // Ensure that the bitcode file gets removed from the disk if we get a
226   // terminating signal.
227   sys::RemoveFileOnSignal(sys::Path(FileName));
228
229   // Write it out
230   WriteBitcodeToFile(M, Out);
231
232   // Close the bitcode file.
233   Out.close();
234 }
235
236 /// GenerateAssembly - generates a native assembly language source file from the
237 /// specified bitcode file.
238 ///
239 /// Inputs:
240 ///  InputFilename  - The name of the input bitcode file.
241 ///  OutputFilename - The name of the file to generate.
242 ///  llc            - The pathname to use for LLC.
243 ///  envp           - The environment to use when running LLC.
244 ///
245 /// Return non-zero value on error.
246 ///
247 static int GenerateAssembly(const std::string &OutputFilename,
248                             const std::string &InputFilename,
249                             const sys::Path &llc,
250                             std::string &ErrMsg ) {
251   // Run LLC to convert the bitcode file into assembly code.
252   std::vector<const char*> args;
253   args.push_back(llc.c_str());
254   args.push_back("-f");
255   args.push_back("-o");
256   args.push_back(OutputFilename.c_str());
257   args.push_back(InputFilename.c_str());
258   args.push_back(0);
259
260   if (Verbose) {
261     cout << "Generating Assembly With: \n";
262     PrintCommand(args);
263   }
264
265   return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
266 }
267
268 /// GenerateCFile - generates a C source file from the specified bitcode file.
269 static int GenerateCFile(const std::string &OutputFile,
270                          const std::string &InputFile,
271                          const sys::Path &llc,
272                          std::string& ErrMsg) {
273   // Run LLC to convert the bitcode file into C.
274   std::vector<const char*> args;
275   args.push_back(llc.c_str());
276   args.push_back("-march=c");
277   args.push_back("-f");
278   args.push_back("-o");
279   args.push_back(OutputFile.c_str());
280   args.push_back(InputFile.c_str());
281   args.push_back(0);
282
283   if (Verbose) {
284     cout << "Generating C Source With: \n";
285     PrintCommand(args);
286   }
287
288   return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
289 }
290
291 /// GenerateNative - generates a native object file from the
292 /// specified bitcode file.
293 ///
294 /// Inputs:
295 ///  InputFilename   - The name of the input bitcode file.
296 ///  OutputFilename  - The name of the file to generate.
297 ///  NativeLinkItems - The native libraries, files, code with which to link
298 ///  LibPaths        - The list of directories in which to find libraries.
299 ///  FrameworksPaths - The list of directories in which to find frameworks.
300 ///  Frameworks      - The list of frameworks (dynamic libraries)
301 ///  gcc             - The pathname to use for GGC.
302 ///  envp            - A copy of the process's current environment.
303 ///
304 /// Outputs:
305 ///  None.
306 ///
307 /// Returns non-zero value on error.
308 ///
309 static int GenerateNative(const std::string &OutputFilename,
310                           const std::string &InputFilename,
311                           const Linker::ItemList &LinkItems,
312                           const sys::Path &gcc, char ** const envp,
313                           std::string& ErrMsg) {
314   // Remove these environment variables from the environment of the
315   // programs that we will execute.  It appears that GCC sets these
316   // environment variables so that the programs it uses can configure
317   // themselves identically.
318   //
319   // However, when we invoke GCC below, we want it to use its normal
320   // configuration.  Hence, we must sanitize its environment.
321   char ** clean_env = CopyEnv(envp);
322   if (clean_env == NULL)
323     return 1;
324   RemoveEnv("LIBRARY_PATH", clean_env);
325   RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
326   RemoveEnv("GCC_EXEC_PREFIX", clean_env);
327   RemoveEnv("COMPILER_PATH", clean_env);
328   RemoveEnv("COLLECT_GCC", clean_env);
329
330
331   // Run GCC to assemble and link the program into native code.
332   //
333   // Note:
334   //  We can't just assemble and link the file with the system assembler
335   //  and linker because we don't know where to put the _start symbol.
336   //  GCC mysteriously knows how to do it.
337   std::vector<std::string> args;
338   args.push_back(gcc.c_str());
339   args.push_back("-fno-strict-aliasing");
340   args.push_back("-O3");
341   args.push_back("-o");
342   args.push_back(OutputFilename);
343   args.push_back(InputFilename);
344
345   // Add in the library and framework paths
346   for (unsigned index = 0; index < LibPaths.size(); index++) {
347     args.push_back("-L" + LibPaths[index]);
348   }
349   for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
350     args.push_back("-F" + FrameworkPaths[index]);
351   }
352
353   // Add the requested options
354   for (unsigned index = 0; index < XLinker.size(); index++)
355     args.push_back(XLinker[index]);
356
357   // Add in the libraries to link.
358   for (unsigned index = 0; index < LinkItems.size(); index++)
359     if (LinkItems[index].first != "crtend") {
360       if (LinkItems[index].second)
361         args.push_back("-l" + LinkItems[index].first);
362       else
363         args.push_back(LinkItems[index].first);
364     }
365
366   // Add in frameworks to link.
367   for (unsigned index = 0; index < Frameworks.size(); index++) {
368     args.push_back("-framework");
369     args.push_back(Frameworks[index]);
370   }
371       
372   // Now that "args" owns all the std::strings for the arguments, call the c_str
373   // method to get the underlying string array.  We do this game so that the
374   // std::string array is guaranteed to outlive the const char* array.
375   std::vector<const char *> Args;
376   for (unsigned i = 0, e = args.size(); i != e; ++i)
377     Args.push_back(args[i].c_str());
378   Args.push_back(0);
379
380   if (Verbose) {
381     cout << "Generating Native Executable With:\n";
382     PrintCommand(Args);
383   }
384
385   // Run the compiler to assembly and link together the program.
386   int R = sys::Program::ExecuteAndWait(
387     gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
388   delete [] clean_env;
389   return R;
390 }
391
392 /// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
393 /// bitcode file for the program.
394 static void EmitShellScript(char **argv) {
395   if (Verbose)
396     cout << "Emitting Shell Script\n";
397 #if defined(_WIN32) || defined(__CYGWIN__)
398   // Windows doesn't support #!/bin/sh style shell scripts in .exe files.  To
399   // support windows systems, we copy the llvm-stub.exe executable from the
400   // build tree to the destination file.
401   std::string ErrMsg;  
402   sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0]);
403   if (llvmstub.isEmpty())
404     PrintAndExit("Could not find llvm-stub.exe executable!");
405
406   if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
407     PrintAndExit(ErrMsg);
408
409   return;
410 #endif
411
412   // Output the script to start the program...
413   std::ofstream Out2(OutputFilename.c_str());
414   if (!Out2.good())
415     PrintAndExit("error opening '" + OutputFilename + "' for writing!");
416
417   Out2 << "#!/bin/sh\n";
418   // Allow user to setenv LLVMINTERP if lli is not in their PATH.
419   Out2 << "lli=${LLVMINTERP-lli}\n";
420   Out2 << "exec $lli \\\n";
421   // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
422   LibPaths.push_back("/lib");
423   LibPaths.push_back("/usr/lib");
424   LibPaths.push_back("/usr/X11R6/lib");
425   // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
426   // shared object at all! See RH 8: plain text.
427   std::vector<std::string>::iterator libc =
428     std::find(Libraries.begin(), Libraries.end(), "c");
429   if (libc != Libraries.end()) Libraries.erase(libc);
430   // List all the shared object (native) libraries this executable will need
431   // on the command line, so that we don't have to do this manually!
432   for (std::vector<std::string>::iterator i = Libraries.begin(),
433          e = Libraries.end(); i != e; ++i) {
434     sys::Path FullLibraryPath = sys::Path::FindLibrary(*i);
435     if (!FullLibraryPath.isEmpty() && FullLibraryPath.isDynamicLibrary())
436       Out2 << "    -load=" << FullLibraryPath.toString() << " \\\n";
437   }
438   Out2 << "    $0.bc ${1+\"$@\"}\n";
439   Out2.close();
440 }
441
442 // BuildLinkItems -- This function generates a LinkItemList for the LinkItems
443 // linker function by combining the Files and Libraries in the order they were
444 // declared on the command line.
445 static void BuildLinkItems(
446   Linker::ItemList& Items,
447   const cl::list<std::string>& Files,
448   const cl::list<std::string>& Libraries) {
449
450   // Build the list of linkage items for LinkItems.
451
452   cl::list<std::string>::const_iterator fileIt = Files.begin();
453   cl::list<std::string>::const_iterator libIt  = Libraries.begin();
454
455   int libPos = -1, filePos = -1;
456   while ( libIt != Libraries.end() || fileIt != Files.end() ) {
457     if (libIt != Libraries.end())
458       libPos = Libraries.getPosition(libIt - Libraries.begin());
459     else
460       libPos = -1;
461     if (fileIt != Files.end())
462       filePos = Files.getPosition(fileIt - Files.begin());
463     else
464       filePos = -1;
465
466     if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
467       // Add a source file
468       Items.push_back(std::make_pair(*fileIt++, false));
469     } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
470       // Add a library
471       Items.push_back(std::make_pair(*libIt++, true));
472     }
473   }
474 }
475
476 // Rightly this should go in a header file but it just seems such a waste.
477 namespace llvm {
478 extern void Optimize(Module*);
479 }
480
481 int main(int argc, char **argv, char **envp) {
482   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
483   try {
484     // Initial global variable above for convenience printing of program name.
485     progname = sys::Path(argv[0]).getBasename();
486
487     // Parse the command line options
488     cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
489     sys::PrintStackTraceOnErrorSignal();
490
491     // Construct a Linker (now that Verbose is set)
492     Linker TheLinker(progname, OutputFilename, Verbose);
493
494     // Keep track of the native link items (versus the bitcode items)
495     Linker::ItemList NativeLinkItems;
496
497     // Add library paths to the linker
498     TheLinker.addPaths(LibPaths);
499     TheLinker.addSystemPaths();
500
501     // Remove any consecutive duplicates of the same library...
502     Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
503                     Libraries.end());
504
505     if (LinkAsLibrary) {
506       std::vector<sys::Path> Files;
507       for (unsigned i = 0; i < InputFilenames.size(); ++i )
508         Files.push_back(sys::Path(InputFilenames[i]));
509       if (TheLinker.LinkInFiles(Files))
510         return 1; // Error already printed
511
512       // The libraries aren't linked in but are noted as "dependent" in the
513       // module.
514       for (cl::list<std::string>::const_iterator I = Libraries.begin(),
515            E = Libraries.end(); I != E ; ++I) {
516         TheLinker.getModule()->addLibrary(*I);
517       }
518     } else {
519       // Build a list of the items from our command line
520       Linker::ItemList Items;
521       BuildLinkItems(Items, InputFilenames, Libraries);
522
523       // Link all the items together
524       if (TheLinker.LinkInItems(Items, NativeLinkItems) )
525         return 1; // Error already printed
526     }
527
528     std::auto_ptr<Module> Composite(TheLinker.releaseModule());
529
530     // Optimize the module
531     Optimize(Composite.get());
532
533     // Generate the bitcode for the optimized module.
534     std::string RealBitcodeOutput = OutputFilename;
535     if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
536     GenerateBitcode(Composite.get(), RealBitcodeOutput);
537
538     // If we are not linking a library, generate either a native executable
539     // or a JIT shell script, depending upon what the user wants.
540     if (!LinkAsLibrary) {
541       // If the user wants to run a post-link optimization, run it now.
542       if (!PostLinkOpts.empty()) {
543         std::vector<std::string> opts = PostLinkOpts;
544         for (std::vector<std::string>::iterator I = opts.begin(),
545              E = opts.end(); I != E; ++I) {
546           sys::Path prog(*I);
547           if (!prog.canExecute()) {
548             prog = sys::Program::FindProgramByName(*I);
549             if (prog.isEmpty())
550               PrintAndExit(std::string("Optimization program '") + *I +
551                 "' is not found or not executable.");
552           }
553           // Get the program arguments
554           sys::Path tmp_output("opt_result");
555           std::string ErrMsg;
556           if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
557             PrintAndExit(ErrMsg);
558
559           const char* args[4];
560           args[0] = I->c_str();
561           args[1] = RealBitcodeOutput.c_str();
562           args[2] = tmp_output.c_str();
563           args[3] = 0;
564           if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
565             if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
566               sys::Path target(RealBitcodeOutput);
567               target.eraseFromDisk();
568               if (tmp_output.renamePathOnDisk(target, &ErrMsg))
569                 PrintAndExit(ErrMsg, 2);
570             } else
571               PrintAndExit("Post-link optimization output is not bitcode");
572           } else {
573             PrintAndExit(ErrMsg);
574           }
575         }
576       }
577
578       // If the user wants to generate a native executable, compile it from the
579       // bitcode file.
580       //
581       // Otherwise, create a script that will run the bitcode through the JIT.
582       if (Native) {
583         // Name of the Assembly Language output file
584         sys::Path AssemblyFile ( OutputFilename);
585         AssemblyFile.appendSuffix("s");
586
587         // Mark the output files for removal if we get an interrupt.
588         sys::RemoveFileOnSignal(AssemblyFile);
589         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
590
591         // Determine the locations of the llc and gcc programs.
592         sys::Path llc = FindExecutable("llc", argv[0]);
593         if (llc.isEmpty())
594           PrintAndExit("Failed to find llc");
595
596         sys::Path gcc = FindExecutable("gcc", argv[0]);
597         if (gcc.isEmpty())
598           PrintAndExit("Failed to find gcc");
599
600         // Generate an assembly language file for the bitcode.
601         std::string ErrMsg;
602         if (0 != GenerateAssembly(AssemblyFile.toString(), RealBitcodeOutput,
603             llc, ErrMsg))
604           PrintAndExit(ErrMsg);
605
606         if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
607                                 NativeLinkItems, gcc, envp, ErrMsg))
608           PrintAndExit(ErrMsg);
609
610         // Remove the assembly language file.
611         AssemblyFile.eraseFromDisk();
612       } else if (NativeCBE) {
613         sys::Path CFile (OutputFilename);
614         CFile.appendSuffix("cbe.c");
615
616         // Mark the output files for removal if we get an interrupt.
617         sys::RemoveFileOnSignal(CFile);
618         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
619
620         // Determine the locations of the llc and gcc programs.
621         sys::Path llc = FindExecutable("llc", argv[0]);
622         if (llc.isEmpty())
623           PrintAndExit("Failed to find llc");
624
625         sys::Path gcc = FindExecutable("gcc", argv[0]);
626         if (gcc.isEmpty())
627           PrintAndExit("Failed to find gcc");
628
629         // Generate an assembly language file for the bitcode.
630         std::string ErrMsg;
631         if (0 != GenerateCFile(
632             CFile.toString(), RealBitcodeOutput, llc, ErrMsg))
633           PrintAndExit(ErrMsg);
634
635         if (0 != GenerateNative(OutputFilename, CFile.toString(), 
636                                 NativeLinkItems, gcc, envp, ErrMsg))
637           PrintAndExit(ErrMsg);
638
639         // Remove the assembly language file.
640         CFile.eraseFromDisk();
641
642       } else {
643         EmitShellScript(argv);
644       }
645
646       // Make the script executable...
647       std::string ErrMsg;
648       if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
649         PrintAndExit(ErrMsg);
650
651       // Make the bitcode file readable and directly executable in LLEE as well
652       if (sys::Path(RealBitcodeOutput).makeExecutableOnDisk(&ErrMsg))
653         PrintAndExit(ErrMsg);
654
655       if (sys::Path(RealBitcodeOutput).makeReadableOnDisk(&ErrMsg))
656         PrintAndExit(ErrMsg);
657     }
658   } catch (const std::string& msg) {
659     PrintAndExit(msg,2);
660   } catch (...) {
661     PrintAndExit("Unexpected unknown exception occurred.", 2);
662   }
663
664   // Graceful exit
665   return 0;
666 }