Skip to content

Commit

Permalink
Fix -o flag separator type
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Shadle authored and luser committed Mar 7, 2019
1 parent 36b40ac commit 4271e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/gcc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ counted_array!(pub static ARGS: [ArgInfo<ArgData>; _] = [
take_arg!("-iwithprefixbefore", PathBuf, CanBeSeparated, PreprocessorArgumentPath),
flag!("-nostdinc", PreprocessorArgumentFlag),
flag!("-nostdinc++", PreprocessorArgumentFlag),
take_arg!("-o", PathBuf, Separated, Output),
take_arg!("-o", PathBuf, CanBeSeparated, Output),
flag!("-remap", PreprocessorArgumentFlag),
flag!("-save-temps", TooHardFlag),
take_arg!("-stdlib", OsString, Concatenated('='), PreprocessorArgument),
Expand Down

0 comments on commit 4271e43

Please sign in to comment.