diff options
| author | Ralf Jung <post@ralfj.de> | 2023-04-30 22:35:29 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2023-04-30 22:35:29 +0200 |
| commit | 697d13084476d8058423b226578a58a8c7d5c86a (patch) | |
| tree | 5e9698aacd7b6e8cbba75b99192af034868e7d78 /compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp | |
| parent | e52cc12df16eab3637d256987d7e6d0b81836b5d (diff) | |
| parent | eb62877597000ccf8bb99ab131b5977344afdfa3 (diff) | |
| download | rust-697d13084476d8058423b226578a58a8c7d5c86a.tar.gz rust-697d13084476d8058423b226578a58a8c7d5c86a.zip | |
Merge from rustc
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp index 448a1f62f69..35d6b9ed7a4 100644 --- a/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp @@ -39,6 +39,7 @@ enum class LLVMRustArchiveKind { BSD, DARWIN, COFF, + AIX_BIG, }; static Archive::Kind fromRust(LLVMRustArchiveKind Kind) { @@ -51,6 +52,8 @@ static Archive::Kind fromRust(LLVMRustArchiveKind Kind) { return Archive::K_DARWIN; case LLVMRustArchiveKind::COFF: return Archive::K_COFF; + case LLVMRustArchiveKind::AIX_BIG: + return Archive::K_AIXBIG; default: report_fatal_error("Bad ArchiveKind."); } |
