If a response file is given via command line, the final command line arguments will not appear in the log because the actual arguments are in the given file. This patch is to show the final command line if /verbose is specified to help users. llvm-svn: 204754
8 lines
297 B
Plaintext
8 lines
297 B
Plaintext
# RUN: yaml2obj %p/Inputs/hello.obj.yaml > %t.obj
|
|
# RUN: not lld -flavor link /verbose @%p/Inputs/responsefile.txt >& %t.log
|
|
# RUN: FileCheck %s < %t.log
|
|
|
|
CHECK: warning: ignoring unknown argument: -foo
|
|
CHECK: warning: ignoring unknown argument: -bar\baz
|
|
Command line: link /verbose -foo -bar\baz
|