about summary refs log tree commit diff
path: root/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp
AgeCommit message (Collapse)AuthorLines
2024-06-26Format C++ files in `llvm-wrapper`DianQK-19/+14
2024-04-15Add support for Arm64EC to the Standard LibraryDaniel Paoliello-2/+2
2024-04-03update messagesDan-1/+1
2024-02-21llvm-wrapper: fix warning C4305klensy-1/+1
llvm-wrapper/ArchiveWrapper.cpp(70): warning C4305: 'argument': truncation from 'int' to 'bool' while in llvm 12 signature was static ErrorOr<std::unique_ptr<MemoryBuffer>> getFile(const Twine &Filename, int64_t FileSize = -1, bool RequiresNullTerminator = true, bool IsVolatile = false); https://github.com/llvm/llvm-project/blame/fed41342a82f5a3a9201819a82bf7a48313e296b/llvm/include/llvm/Support/MemoryBuffer.h#L85-L87 in llvm 13 and later it was changed to static ErrorOr<std::unique_ptr<MemoryBuffer>> getFile(const Twine &Filename, bool IsText = false, bool RequiresNullTerminator = true, bool IsVolatile = false); https://github.com/llvm/llvm-project/blame/75e33f71c2dae584b13a7d1186ae0a038ba98838/llvm/include/llvm/Support/MemoryBuffer.h#L86-L88 so code was interpreted as MemoryBuffer::getFile(Path, /*IsText*/true, /*RequiresNullTerminator=*/false), but now will be MemoryBuffer::getFile(Path, /*IsText*/false, /*RequiresNullTerminator=*/false). How that worked before?
2023-08-22ArchiveWrapper: handle LLVM API updateAugie Fackler-0/+5
In llvm/llvm-project@f740bcb3707a17ed4ccd52157089011a586cc2a6 a boolean parameter changed to an enum. r? @nikic @rustbot label: +llvm-main
2023-04-19Recognize AIX style archive kindQiu Chaofan-0/+3
2022-07-25Use object instead of LLVM for reading bitcode from rlibsbjorn3-13/+0
2021-03-22Update the minimum external LLVM to 10Josh Stone-4/+0
2020-09-09Move `rustllvm` into `rustc_llvm`Vadim Petrochenkov-0/+226