You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
451 B
20 lines
451 B
Test that only the darwin format needs to modify archive members to
|
|
avoid a ld64 bug.
|
|
|
|
RUN: echo foo > %t.o
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar --format=bsd rc %t.a %t.o
|
|
RUN: llvm-ar p %t.a > %t.bsd.o
|
|
RUN: cmp %t.bsd.o %t.o
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar --format=gnu rc %t.a %t.o
|
|
RUN: llvm-ar p %t.a > %t.gnu.o
|
|
RUN: cmp %t.gnu.o %t.o
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar --format=darwin rc %t.a %t.o
|
|
RUN: llvm-ar p %t.a > %t.darwin.o
|
|
RUN: not cmp %t.darwin.o %t.o
|