- 1f6efa3 Merge System into Support. by Michael J. Spencer · 15 years ago
- d66f2b7 Rename FindExecutable to PrependMainExecutablePath. by Mikhail Glushenkov · 15 years ago
- c8aef4b GetDLLSuffix: Remove the leading dot from LTDL_SHLIB_EXT. by Mikhail Glushenkov · 15 years ago
- 572ec1f Trailing whitespace. by Mikhail Glushenkov · 15 years ago
- 081c34b Get rid of static constructors for pass registration. Instead, every pass exposes an initializeMyPassFunction(), which by Owen Anderson · 15 years ago
- e4f1a9b Move tool_output_file into its own file. by Dan Gohman · 15 years ago
- d4c4543 Make tool_output_file's raw_ostream instance a member variable instead by Dan Gohman · 15 years ago
- f291401 Convert tools to use tool_output_file, and introduce error by Dan Gohman · 15 years ago
- 4bb122e Print chatty verbose messages to errs() instead of outs(). by Dan Gohman · 15 years ago
- 199b66a don't pass -f to llc, it doesn't have it anymore. Patch by Kevin Fan (PR7090) by Chris Lattner · 15 years ago
- 43bc70e Fix more -Wcast-qual warnings. by Dan Gohman · 15 years ago
- 132a994 Fix llvm-ld to clean up its output files in case of an error. by Dan Gohman · 15 years ago
- 46475cb revert r99719 which is breaking the botz. by Chris Lattner · 15 years ago
- 00ad278 Make llvm-ld remove its output files in the event of an error. by Dan Gohman · 15 years ago
- 92f5fcc No need to check the same condition twice. by Dan Gohman · 15 years ago
- 51ecc38 Trim #includes. by Dan Gohman · 15 years ago
- 34b96f4 It's not necessary to call raw_ostream::close explicitly on automatic by Dan Gohman · 15 years ago
- 25c54c0 make sure to delete the llvm module before calling llvm_shutdown, by Chris Lattner · 15 years ago
- 12ea66a Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 16 years ago
- 316e326 llvm-ld doesn't throw. by Chris Lattner · 16 years ago
- baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 16 years ago
- 74382b7 Prune #includes from llvm/Linker.h and llvm/System/Path.h, by Chris Lattner · 16 years ago
- 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 16 years ago
- 8608cf2 Use (void *)(intptr_t) to cast function addresses to void* by Dan Gohman · 16 years ago
- 197f728 Fix FindExecutable to use sys::Path::GetMainExecutable instead of by Dan Gohman · 16 years ago
- d7de7bc Added -b option to override the default bitcode output file name. by Sanjiv Gupta · 16 years ago
- ac95cc7 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 16 years ago
- ff9834a Kill off last uses of TargetMachineRegistry class. by Daniel Dunbar · 16 years ago
- 0d7c695 To simplify the upcoming context-on-type change, switch all command line tools to using the default global context for now. by Owen Anderson · 16 years ago
- 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 16 years ago
- 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 16 years ago
- cc14d25 Change various llvm utilities to use PrettyStackTraceProgram in by Chris Lattner · 17 years ago
- 5d5a897 make llvm-ld smart enough to link against native libraries that are by Chris Lattner · 17 years ago
- 0c6ba44 ignore the -m elf_i386 directive used in the linux kernel by Andrew Lenharth · 17 years ago
- ca29dff Since we are using GCC to assemble the program, make sure the assembly syntax is AT&T. by Argyrios Kyrtzidis · 17 years ago
- 48cca1f Add an "exe" suffix only if the output file has no suffix at all. by Argyrios Kyrtzidis · 17 years ago
- 1662183 Make sure all produced executable files have "exe" suffix on Windows. by Argyrios Kyrtzidis · 17 years ago
- 5b90a72 Append "exe" suffix to executable files. by Argyrios Kyrtzidis · 17 years ago
- ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
- 3992f52 Add support for frameworks. Patch by Shantonu Sen! by Chris Lattner · 18 years ago
- 03a1c7a Fix llvm-ld -Xlinker, patch by Daniel Teske! by Chris Lattner · 18 years ago
- 21c62da remove attributions from tools. by Chris Lattner · 18 years ago
- 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
- 0a4c8de Remove dead option. by Reid Spencer · 18 years ago
- a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 18 years ago
- 3f931b8 Fix pr1448 by Chris Lattner · 18 years ago
- 44dadff switch tools to bitcode instead of bytecode by Chris Lattner · 18 years ago
- bb3f3d3 add bitcode support. by Chris Lattner · 18 years ago
- 3b72639 Augment the verbose output to print out the sub-commands executed. by Reid Spencer · 18 years ago
- c82a5da For PR1302: by Reid Spencer · 18 years ago
- 9ba8a76 Add possibility to set memory limit for binaries run via libSystem. This by Anton Korobeynikov · 19 years ago
- 708585a Clean up error handling. by Reid Spencer · 19 years ago
- 98a030c For PR1153: Copy a couple more missing options from gccld to llvm-ld. by Reid Spencer · 19 years ago
- 17be679 default to emiting an uncompressed .bc file by Chris Lattner · 19 years ago
- e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
- c30598b make all llvm tools call llvm_shutdown when they exit, static'ify some stuff. by Chris Lattner · 19 years ago
- 68fe61d Replacing std::iostreams with llvm iostreams. Some of these changes involve by Bill Wendling · 19 years ago
- 2803b4c Minor style fixes from review. by Reid Spencer · 19 years ago
- 4952143 For PR998: by Reid Spencer · 19 years ago
- 7b28955 Fix a problem in the the last patch that subverts error message printing. by Reid Spencer · 19 years ago
- d41b30d Unbreak VC++ build. by Jeff Cohen · 19 years ago
- 7d51544 - Fixed broken Win32 build by Anton Korobeynikov · 19 years ago
- 5a06077 For PR797: by Reid Spencer · 19 years ago
- e5c9cb5 For PR797: by Reid Spencer · 19 years ago
- e1647f4 For PR797: by Reid Spencer · 19 years ago
- 8ea5ecb For PR797: by Reid Spencer · 19 years ago
- e2f8ad8 Fix cut-n-pasto in comments. by Devang Patel · 19 years ago
- af303d5 For PR780: by Reid Spencer · 19 years ago
- 2f86362 Delete memory allocated by CopyEnv by Chris Lattner · 19 years ago
- 78df5c3 Make sure command line options are parsed before we try to add the LibPath by Reid Spencer · 20 years ago
- f4484f3 For PR521: by Reid Spencer · 20 years ago
- 73a74be Implement PR512: by Reid Spencer · 20 years ago
- 328ead9 Adjust the constructor to the Linker class to take an argument that names by Reid Spencer · 20 years ago
- a229c5c Final Changes For PR495: by Reid Spencer · 20 years ago
- dd04df0 For PR495: by Reid Spencer · 20 years ago
- 3da94ae Remove trailing whitespace by Misha Brukman · 20 years ago
- bf9add4 The first argument to ExecuteAndWait should be the program name, but pointed by Chris Lattner · 20 years ago
- 7456e3c Conform to the documented interface by null terminating argument lists! by Chris Lattner · 21 years ago
- 5fb6ed4 Use binary mode for reading/writing bytecode files by Jeff Cohen · 21 years ago
- 1ef8bda For PR351: by Reid Spencer · 21 years ago
- 8d8b41d Correct compilation for Cygwin. FindExecutable now returns a sys::Path. by Reid Spencer · 21 years ago
- 81417b6 Fix the Win32 build by Misha Brukman · 21 years ago
- bf42763 Make parameters to CopyFile use explicit instantiation of sys::Path. by Reid Spencer · 21 years ago
- f6358c7 For PR351: * Support changes in sys::Program::ExecuteAndWait interface by Reid Spencer · 21 years ago
- 06c06db sys::CopyFile returns void and throws an exception on error which will be by Reid Spencer · 21 years ago
- 1bd2653 The CopyFile function got moved into the sys namespace. by Reid Spencer · 21 years ago
- 5f76760 For PR351: by Reid Spencer · 21 years ago
- 6da1e0d For PR351: by Reid Spencer · 21 years ago
- 93f8f55 For PR351: Adjust to interface change for FindExecutable. by Reid Spencer · 21 years ago
- 319cdec For PR351: by Reid Spencer · 21 years ago
- 05f7e79 Make the loop termination condition clear when building the set of items to by Reid Spencer · 21 years ago
- c406413 Convert to use new Linker class interface by Reid Spencer · 21 years ago
- 6b463b2 When -link-as-library, add -l options to Module's deplibs by Reid Spencer · 21 years ago
- c191d49 Fix PR139:\ by Reid Spencer · 21 years ago
- 445564a Incorporate GenerateCode.cpp. Make static things static. by Reid Spencer · 21 years ago
- 605b9e2 Linker.h has a new home. by Reid Spencer · 21 years ago
- 227b6d0 Fix usage of changed function prototype by Reid Spencer · 21 years ago
- aefd04b Add some missing #includes by Reid Spencer · 21 years ago
- c0af3f0 Initial implementation of llvm-ld: stolen from gccld. by Reid Spencer · 21 years ago