This website requires JavaScript.
Explore
Help
Sign In
RPCS3
/
llvm-mirror
Watch
1
Star
0
Fork
0
You've already forked llvm-mirror
mirror of
https://github.com/RPCS3/llvm-mirror.git
synced
2024-11-23 11:13:28 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
89ae93e6d6
llvm-mirror
/
test
/
Object
/
mri5.test
3 lines
97 B
Plaintext
Raw
Normal View
History
Unescape
Escape
llvm-ar: Start adding support for mri scripts. I was quiet surprised to find this feature being used. Fortunately the uses I found look fairly simple. In fact, they are just a very verbose version of the regular ar commands. Start implementing it then by parsing the script and setting the command variables as if we had a regular command line. This patch adds just enough support to create an empty archive and do a bit of error checking. In followup patches I will implement at least addmod and addlib. From the description in the manual, even the more general case should not be too hard to implement if needed. The features that don't map 1:1 to the simple command line are * Reading from multiple archives. * Creating multiple archives. llvm-svn: 219521
2014-10-10 20:33:51 +02:00
; RUN: not llvm-ar -M t < %s 2>&1 | FileCheck %s
[llvm-ar] Uncapitalize error messages and delete full stop Most GNU binutils don't append full stops in error messages. This convention has been adopted by a bunch of LLVM binary utilities. Make llvm-ar follow the convention as well. Reviewed By: grimar Differential Revision: https://reviews.llvm.org/D67558 llvm-svn: 371912
2019-09-14 03:18:47 +02:00
; CHECK: error: cannot mix -M and other options
Reference in New Issue
Copy Permalink