Append "exe" suffix to executable files.
[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   sys::Path OutPath(OutputFilename);
407   if (OutPath.getSuffix() != "exe")
408     OutPath.appendSuffix("exe");
409
410   if (0 != sys::CopyFile(OutPath, llvmstub, &ErrMsg))
411     PrintAndExit(ErrMsg);
412
413   return;
414 #endif
415
416   // Output the script to start the program...
417   std::ofstream Out2(OutputFilename.c_str());
418   if (!Out2.good())
419     PrintAndExit("error opening '" + OutputFilename + "' for writing!");
420
421   Out2 << "#!/bin/sh\n";
422   // Allow user to setenv LLVMINTERP if lli is not in their PATH.
423   Out2 << "lli=${LLVMINTERP-lli}\n";
424   Out2 << "exec $lli \\\n";
425   // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
426   LibPaths.push_back("/lib");
427   LibPaths.push_back("/usr/lib");
428   LibPaths.push_back("/usr/X11R6/lib");
429   // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
430   // shared object at all! See RH 8: plain text.
431   std::vector<std::string>::iterator libc =
432     std::find(Libraries.begin(), Libraries.end(), "c");
433   if (libc != Libraries.end()) Libraries.erase(libc);
434   // List all the shared object (native) libraries this executable will need
435   // on the command line, so that we don't have to do this manually!
436   for (std::vector<std::string>::iterator i = Libraries.begin(),
437          e = Libraries.end(); i != e; ++i) {
438     sys::Path FullLibraryPath = sys::Path::FindLibrary(*i);
439     if (!FullLibraryPath.isEmpty() && FullLibraryPath.isDynamicLibrary())
440       Out2 << "    -load=" << FullLibraryPath.toString() << " \\\n";
441   }
442   Out2 << "    $0.bc ${1+\"$@\"}\n";
443   Out2.close();
444 }
445
446 // BuildLinkItems -- This function generates a LinkItemList for the LinkItems
447 // linker function by combining the Files and Libraries in the order they were
448 // declared on the command line.
449 static void BuildLinkItems(
450   Linker::ItemList& Items,
451   const cl::list<std::string>& Files,
452   const cl::list<std::string>& Libraries) {
453
454   // Build the list of linkage items for LinkItems.
455
456   cl::list<std::string>::const_iterator fileIt = Files.begin();
457   cl::list<std::string>::const_iterator libIt  = Libraries.begin();
458
459   int libPos = -1, filePos = -1;
460   while ( libIt != Libraries.end() || fileIt != Files.end() ) {
461     if (libIt != Libraries.end())
462       libPos = Libraries.getPosition(libIt - Libraries.begin());
463     else
464       libPos = -1;
465     if (fileIt != Files.end())
466       filePos = Files.getPosition(fileIt - Files.begin());
467     else
468       filePos = -1;
469
470     if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
471       // Add a source file
472       Items.push_back(std::make_pair(*fileIt++, false));
473     } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
474       // Add a library
475       Items.push_back(std::make_pair(*libIt++, true));
476     }
477   }
478 }
479
480 // Rightly this should go in a header file but it just seems such a waste.
481 namespace llvm {
482 extern void Optimize(Module*);
483 }
484
485 int main(int argc, char **argv, char **envp) {
486   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
487   try {
488     // Initial global variable above for convenience printing of program name.
489     progname = sys::Path(argv[0]).getBasename();
490
491     // Parse the command line options
492     cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
493     sys::PrintStackTraceOnErrorSignal();
494
495     // Construct a Linker (now that Verbose is set)
496     Linker TheLinker(progname, OutputFilename, Verbose);
497
498     // Keep track of the native link items (versus the bitcode items)
499     Linker::ItemList NativeLinkItems;
500
501     // Add library paths to the linker
502     TheLinker.addPaths(LibPaths);
503     TheLinker.addSystemPaths();
504
505     // Remove any consecutive duplicates of the same library...
506     Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
507                     Libraries.end());
508
509     if (LinkAsLibrary) {
510       std::vector<sys::Path> Files;
511       for (unsigned i = 0; i < InputFilenames.size(); ++i )
512         Files.push_back(sys::Path(InputFilenames[i]));
513       if (TheLinker.LinkInFiles(Files))
514         return 1; // Error already printed
515
516       // The libraries aren't linked in but are noted as "dependent" in the
517       // module.
518       for (cl::list<std::string>::const_iterator I = Libraries.begin(),
519            E = Libraries.end(); I != E ; ++I) {
520         TheLinker.getModule()->addLibrary(*I);
521       }
522     } else {
523       // Build a list of the items from our command line
524       Linker::ItemList Items;
525       BuildLinkItems(Items, InputFilenames, Libraries);
526
527       // Link all the items together
528       if (TheLinker.LinkInItems(Items, NativeLinkItems) )
529         return 1; // Error already printed
530     }
531
532     std::auto_ptr<Module> Composite(TheLinker.releaseModule());
533
534     // Optimize the module
535     Optimize(Composite.get());
536
537     // Generate the bitcode for the optimized module.
538     std::string RealBitcodeOutput = OutputFilename;
539
540 #if defined(_WIN32) || defined(__CYGWIN__)
541     if (!LinkAsLibrary && sys::Path(OutputFilename).getSuffix() != "exe")
542       RealBitcodeOutput += ".exe";
543 #endif
544
545     if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
546     GenerateBitcode(Composite.get(), RealBitcodeOutput);
547
548     // If we are not linking a library, generate either a native executable
549     // or a JIT shell script, depending upon what the user wants.
550     if (!LinkAsLibrary) {
551       // If the user wants to run a post-link optimization, run it now.
552       if (!PostLinkOpts.empty()) {
553         std::vector<std::string> opts = PostLinkOpts;
554         for (std::vector<std::string>::iterator I = opts.begin(),
555              E = opts.end(); I != E; ++I) {
556           sys::Path prog(*I);
557           if (!prog.canExecute()) {
558             prog = sys::Program::FindProgramByName(*I);
559             if (prog.isEmpty())
560               PrintAndExit(std::string("Optimization program '") + *I +
561                 "' is not found or not executable.");
562           }
563           // Get the program arguments
564           sys::Path tmp_output("opt_result");
565           std::string ErrMsg;
566           if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
567             PrintAndExit(ErrMsg);
568
569           const char* args[4];
570           args[0] = I->c_str();
571           args[1] = RealBitcodeOutput.c_str();
572           args[2] = tmp_output.c_str();
573           args[3] = 0;
574           if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
575             if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
576               sys::Path target(RealBitcodeOutput);
577               target.eraseFromDisk();
578               if (tmp_output.renamePathOnDisk(target, &ErrMsg))
579                 PrintAndExit(ErrMsg, 2);
580             } else
581               PrintAndExit("Post-link optimization output is not bitcode");
582           } else {
583             PrintAndExit(ErrMsg);
584           }
585         }
586       }
587
588       // If the user wants to generate a native executable, compile it from the
589       // bitcode file.
590       //
591       // Otherwise, create a script that will run the bitcode through the JIT.
592       if (Native) {
593         // Name of the Assembly Language output file
594         sys::Path AssemblyFile ( OutputFilename);
595         AssemblyFile.appendSuffix("s");
596
597         // Mark the output files for removal if we get an interrupt.
598         sys::RemoveFileOnSignal(AssemblyFile);
599         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
600
601         // Determine the locations of the llc and gcc programs.
602         sys::Path llc = FindExecutable("llc", argv[0]);
603         if (llc.isEmpty())
604           PrintAndExit("Failed to find llc");
605
606         sys::Path gcc = FindExecutable("gcc", argv[0]);
607         if (gcc.isEmpty())
608           PrintAndExit("Failed to find gcc");
609
610         // Generate an assembly language file for the bitcode.
611         std::string ErrMsg;
612         if (0 != GenerateAssembly(AssemblyFile.toString(), RealBitcodeOutput,
613             llc, ErrMsg))
614           PrintAndExit(ErrMsg);
615
616         if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
617                                 NativeLinkItems, gcc, envp, ErrMsg))
618           PrintAndExit(ErrMsg);
619
620         // Remove the assembly language file.
621         AssemblyFile.eraseFromDisk();
622       } else if (NativeCBE) {
623         sys::Path CFile (OutputFilename);
624         CFile.appendSuffix("cbe.c");
625
626         // Mark the output files for removal if we get an interrupt.
627         sys::RemoveFileOnSignal(CFile);
628         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
629
630         // Determine the locations of the llc and gcc programs.
631         sys::Path llc = FindExecutable("llc", argv[0]);
632         if (llc.isEmpty())
633           PrintAndExit("Failed to find llc");
634
635         sys::Path gcc = FindExecutable("gcc", argv[0]);
636         if (gcc.isEmpty())
637           PrintAndExit("Failed to find gcc");
638
639         // Generate an assembly language file for the bitcode.
640         std::string ErrMsg;
641         if (0 != GenerateCFile(
642             CFile.toString(), RealBitcodeOutput, llc, ErrMsg))
643           PrintAndExit(ErrMsg);
644
645         if (0 != GenerateNative(OutputFilename, CFile.toString(), 
646                                 NativeLinkItems, gcc, envp, ErrMsg))
647           PrintAndExit(ErrMsg);
648
649         // Remove the assembly language file.
650         CFile.eraseFromDisk();
651
652       } else {
653         EmitShellScript(argv);
654       }
655
656       // Make the script executable...
657       std::string ErrMsg;
658       if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
659         PrintAndExit(ErrMsg);
660
661       // Make the bitcode file readable and directly executable in LLEE as well
662       if (sys::Path(RealBitcodeOutput).makeExecutableOnDisk(&ErrMsg))
663         PrintAndExit(ErrMsg);
664
665       if (sys::Path(RealBitcodeOutput).makeReadableOnDisk(&ErrMsg))
666         PrintAndExit(ErrMsg);
667     }
668   } catch (const std::string& msg) {
669     PrintAndExit(msg,2);
670   } catch (...) {
671     PrintAndExit("Unexpected unknown exception occurred.", 2);
672   }
673
674   // Graceful exit
675   return 0;
676 }