[lld] r268240 - Force llvm-ar to use the gnu format.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Mon May 2 08:16:43 PDT 2016


Author: rafael
Date: Mon May  2 10:16:43 2016
New Revision: 268240

URL: http://llvm.org/viewvc/llvm-project?rev=268240&view=rev
Log:
Force llvm-ar to use the gnu format.

Should fix the bots. Otherwise we try to create a thin bsd anchive.

Modified:
    lld/trunk/test/ELF/reproduce-thin-archive.s

Modified: lld/trunk/test/ELF/reproduce-thin-archive.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/reproduce-thin-archive.s?rev=268240&r1=268239&r2=268240&view=diff
==============================================================================
--- lld/trunk/test/ELF/reproduce-thin-archive.s (original)
+++ lld/trunk/test/ELF/reproduce-thin-archive.s Mon May  2 10:16:43 2016
@@ -4,7 +4,7 @@
 # RUN: mkdir -p %t.dir
 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.dir/foo.o
 # RUN: cd %t.dir
-# RUN: llvm-ar rcT foo.a foo.o
+# RUN: llvm-ar --format=gnu rcT foo.a foo.o
 # RUN: ld.lld -m elf_x86_64 foo.a -o bar --reproduce repro
 # RUN: diff foo.a repro/%:t.dir/foo.a
 # RUN: diff foo.o repro/%:t.dir/foo.o




More information about the llvm-commits mailing list