This commit is contained in:
zhijian 2022-04-01 14:10:22 -04:00
parent 63bdcaf92a
commit b36be2f77f
2 changed files with 2 additions and 2 deletions

View File

@ -7,4 +7,4 @@
; RUN: echo "test big archive" > %t.txt
; RUN: not llvm-ar cr %t.ar %t.txt 2>&1 | FileCheck %s
; CHECK: unsupported big AIX write operation
; CHECK: big archive writer operation on AIX not yet supported

View File

@ -945,7 +945,7 @@ static void performWriteOperation(ArchiveOperation Operation,
Kind = !NewMembers.empty() ? getKindFromMember(NewMembers.front())
: getDefaultForHost();
if (Kind == object::Archive::K_AIXBIG)
fail("unsupported big AIX write operation");
fail("big archive writer operation on AIX not yet supported");
break;
case GNU:
Kind = object::Archive::K_GNU;