[PATCH] D154545: [llvm-rc] Allow detection by Meson
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 6 01:51:21 PDT 2023
mstorsjo updated this revision to Diff 537626.
mstorsjo added a comment.
Remove the "compatible with ..." part.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D154545/new/
https://reviews.llvm.org/D154545
Files:
llvm/test/tools/llvm-rc/helpmsg.test
llvm/tools/llvm-rc/llvm-rc.cpp
Index: llvm/tools/llvm-rc/llvm-rc.cpp
===================================================================
--- llvm/tools/llvm-rc/llvm-rc.cpp
+++ llvm/tools/llvm-rc/llvm-rc.cpp
@@ -521,7 +521,8 @@
// The tool prints nothing when invoked with no command-line arguments.
if (InputArgs.hasArg(OPT_help)) {
- T.printHelp(outs(), "rc [options] file...", "Resource Converter", false);
+ T.printHelp(outs(), "llvm-rc [options] file...", "LLVM Resource Converter",
+ false);
exit(0);
}
Index: llvm/test/tools/llvm-rc/helpmsg.test
===================================================================
--- llvm/test/tools/llvm-rc/helpmsg.test
+++ llvm/test/tools/llvm-rc/helpmsg.test
@@ -3,8 +3,8 @@
; RUN: diff %t1 %t2
; RUN: FileCheck -input-file=%t1 %s
-; CHECK: OVERVIEW: Resource Converter
-; CHECK-DAG: USAGE: rc [options] file...
+; CHECK: OVERVIEW: LLVM Resource Converter
+; CHECK-DAG: USAGE: llvm-rc [options] file...
; CHECK-DAG: OPTIONS:
; CHECK-NEXT: /? Display this help and exit.
; CHECK-NEXT: /C <value> Set the codepage used for input strings.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154545.537626.patch
Type: text/x-patch
Size: 1115 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230706/e8a38286/attachment.bin>
More information about the llvm-commits
mailing list