forked from OSchip/llvm-project
Accept not only --reproduce <foo> but also --reproduce=<foo>.
llvm-svn: 303905
This commit is contained in:
parent
13379d7c99
commit
5012858e26
|
@ -313,6 +313,7 @@ def alias_o_output2 : Separate<["--"], "output">, Alias<o>;
|
|||
def alias_pie_pic_executable: F<"pic-executable">, Alias<pie>;
|
||||
def alias_print_map_M: Flag<["-"], "M">, Alias<print_map>;
|
||||
def alias_relocatable_r: Flag<["-"], "r">, Alias<relocatable>;
|
||||
def alias_reproduce_eq: J<"reproduce=">, Alias<reproduce>;
|
||||
def alias_retain_symbols_file: S<"retain-symbols-file">, Alias<retain_symbols_file>;
|
||||
def alias_rpath_R: JoinedOrSeparate<["-"], "R">, Alias<rpath>;
|
||||
def alias_rpath_rpath: J<"rpath=">, Alias<rpath>;
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
## Check that directory path is stripped from -o <file-path>
|
||||
# RUN: mkdir -p %t.dir/build3/a/b/c
|
||||
# RUN: cd %t.dir
|
||||
# RUN: ld.lld build1/foo.o -o build3/a/b/c/bar -shared --as-needed --reproduce repro3.tar
|
||||
# RUN: ld.lld build1/foo.o -o build3/a/b/c/bar -shared --as-needed --reproduce=repro3.tar
|
||||
# RUN: tar xf repro3.tar
|
||||
# RUN: FileCheck %s --check-prefix=RSP3 < repro3/response.txt
|
||||
# RSP3: -o bar
|
||||
|
|
Loading…
Reference in New Issue