Skip to content

Commit 4d1db89

Browse files
Merge #92
92: Seems LLVM is deprecating single hypen long options in LLVM 11... r=adamgreig a=therealprof Signed-off-by: Daniel Egger <daniel@eggers-club.de> Co-authored-by: Daniel Egger <daniel@eggers-club.de>
2 parents 4ca023a + aa5464b commit 4d1db89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -323,17 +323,17 @@ pub fn run(tool: Tool, matches: ArgMatches) -> Result<i32> {
323323
if arch_name == "thumb" {
324324
// `-arch-name=thumb` doesn't produce the right output so instead we pass
325325
// `-triple=$target`, which contains more information about the target
326-
lltool.args(&["-triple", &ctxt.target]);
326+
lltool.args(&["--triple", &ctxt.target]);
327327
} else {
328-
lltool.args(&["-arch-name", arch_name]);
328+
lltool.args(&["--arch-name", arch_name]);
329329
}
330330
}
331331

332332
// Extra flags
333333
if let Tool::Readobj = tool {
334334
// The default output style of `readobj` is JSON-like, which is not user friendly, so we
335335
// change it to the human readable GNU style
336-
lltool.arg("-elf-output-style=GNU");
336+
lltool.arg("--elf-output-style=GNU");
337337
}
338338

339339
if tool.needs_build() {

0 commit comments

Comments
 (0)