summaryrefslogtreecommitdiff
path: root/tools/llvm-ar
AgeCommit message (Expand)AuthorFilesLines
2015-03-23Purge unused includes throughout libSupport.Benjamin Kramer1-0/+1
2015-01-28llvm-ar: Remove unimplemented -N option from -helpDavid Majnemer1-1/+0
2015-01-07Manually specify the folder that llvm-ranlib should reside in for CMake-produ...Aaron Ballman1-0/+2
2014-12-11Only seek once before writing the member offsets.Rafael Espindola1-18/+20
2014-12-11llvm-ar: close input files early.Rafael Espindola1-16/+13
2014-12-08[CMake] Fix installation of llvm-ranlib on multiconfig builder.NAKAMURA Takumi2-1/+26
2014-12-04Introduce "llvm-ranlib" as a name of targets since Object/archive-symtab.test...NAKAMURA Takumi1-1/+1
2014-12-04For copy, cmake needs the full path to llvm-ar.Rafael Espindola1-1/+2
2014-12-04Add missing dependency on llvm-ar. Should hopefully fix the bots.Rafael Espindola1-1/+2
2014-12-03Make llvm-ar a real build target and install it.Rafael Espindola1-10/+5
2014-11-07Remove unused variable.Rafael Espindola1-2/+2
2014-10-22Make two helper functions static.Rafael Espindola1-2/+2
2014-10-22Handle spaces and quotes in file names in MRI scripts.Rafael Espindola1-0/+3
2014-10-21MRI scripts: Add addlib support.Rafael Espindola1-1/+20
2014-10-21Use a range loop. NFC.Rafael Espindola1-7/+6
2014-10-21Overwrite instead of adding to archives when creating them in mri scripts.Rafael Espindola1-67/+75
2014-10-21Convert a few std::string with StringRef. NFC.Rafael Espindola1-24/+30
2014-10-21Use a StringRef. No functionality change.Rafael Espindola1-5/+4
2014-10-21Move code a bit to avoid a few declarations. NFC.Rafael Espindola1-45/+40
2014-10-21Comment cleanup. NFC.Rafael Espindola1-16/+14
2014-10-21Add support for addmod to mri scripts.Rafael Espindola1-1/+5
2014-10-10llvm-ar: Start adding support for mri scripts.Rafael Espindola1-2/+57
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-14/+15
2014-08-01Remove some calls to std::move.Rafael Espindola1-5/+4
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+2
2014-07-14[CMake] Update libdeps.NAKAMURA Takumi1-0/+1
2014-07-06Update the MemoryBuffer API to use ErrorOr.Rafael Espindola1-7/+8
2014-07-03Add support for inline asm symbols in llvm-ar.Rafael Espindola3-1/+7
2014-06-26Revert "Introduce a string_ostream string builder facilty"Alp Toker1-1/+2
2014-06-26Introduce a string_ostream string builder faciltyAlp Toker1-2/+1
2014-06-24Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.Rafael Espindola1-1/+1
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-3/+3
2014-06-23Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola1-1/+2
2014-06-23Simplify memory management with std::unique_ptr.Rafael Espindola1-12/+8
2014-06-18Add a symbols() range and use a range loop.Rafael Espindola1-5/+3
2014-06-18Simplify code.Rafael Espindola1-10/+1
2014-06-16Convert the Archive API to use ErrorOr.Rafael Espindola1-5/+10
2014-06-13Finishing touch for the std::error_code transition.Rafael Espindola1-3/+4
2014-06-13Remove 'using std::error_code' from tools.Rafael Espindola1-3/+2
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-12Don't import make_error_code into the llvm namespace.Rafael Espindola1-1/+1
2014-06-11Use std::error_code instead of llvm::error_code.Rafael Espindola1-3/+3
2014-05-31Turn errc and windows_error into enum classes.Rafael Espindola1-2/+1
2014-05-23llvm-ar: Output the file we errored on.Filipe Cabecinhas1-1/+1
2014-04-25[C++] Use 'nullptr'. Tools edition.Craig Topper1-2/+2
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+2
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles1-2/+2
2014-03-01Now that we have C++11, turn simple functors into lambdas and remove a ton of...Benjamin Kramer1-12/+3
2014-02-24Replace the F_Binary flag with a F_Text one.Rafael Espindola1-1/+1
2014-02-21Add a SymbolicFile interface between Binary and ObjectFile.Rafael Espindola1-22/+20