Skip to content

Commit

Permalink
Handle -Xarch_<arch> <arg> for Clang
Browse files Browse the repository at this point in the history
A new ArgDisposition is introduces that combines the Concatenated
and Separated behaviors, but produces results similar to a plain
Separated argument with the full original -Xarch_<arch> argument.

Fixes #2090
  • Loading branch information
torarnv committed Oct 1, 2024
1 parent d7763fc commit 4f01aa3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
20 changes: 20 additions & 0 deletions src/compiler/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ pub enum ArgDisposition {
CanBeSeparated(Delimiter),
/// As "-arg<delimiter>value"
Concatenated(Delimiter),
/// As "-arg<delimiter>suffix value"
ConcatenatedAndSeparated(Delimiter),
}

pub enum NormalizedDisposition {
Expand Down Expand Up @@ -456,6 +458,17 @@ impl<T: ArgumentValue> ArgInfo<T> {
a => a?,
}
}
ArgInfo::TakeArg(_s, create, ArgDisposition::ConcatenatedAndSeparated(_)) => {
if let Some(a) = get_next_arg() {
Argument::WithValue(
arg.to_string().leak(),
create(a)?,
ArgDisposition::Separated,
)
} else {
return Err(ArgParseError::UnexpectedEndOfArgs);
}
}
})
}

Expand All @@ -471,6 +484,7 @@ impl<T: ArgumentValue> ArgInfo<T> {
}
&ArgInfo::TakeArg(s, _, ArgDisposition::CanBeSeparated(Some(d)))
| &ArgInfo::TakeArg(s, _, ArgDisposition::Concatenated(Some(d)))
| &ArgInfo::TakeArg(s, _, ArgDisposition::ConcatenatedAndSeparated(Some(d)))
if arg.len() > s.len() && arg.starts_with(s) =>
{
arg.as_bytes()[s.len()].cmp(&d)
Expand Down Expand Up @@ -855,6 +869,12 @@ mod tests {
info.process("-foo", || Some("bar".into())).unwrap(),
arg!(WithValue("-foo", Foo("bar"), CanBeConcatenated('=')))
);

let info = take_arg!("-foo", OsString, ConcatenatedAndSeparated('_'), Foo);
assert_eq!(
info.process("-foo_bar", || Some("baz".into())).unwrap(),
arg!(WithValue("-foo_bar", Foo("baz"), Separated))
);
}

#[test]
Expand Down
1 change: 1 addition & 0 deletions src/compiler/clang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ counted_array!(pub static ARGS: [ArgInfo<gcc::ArgData>; _] = [
take_arg!("-MF", PathBuf, CanBeSeparated, DepArgumentPath),
take_arg!("-MQ", OsString, CanBeSeparated, DepTarget),
take_arg!("-MT", OsString, CanBeSeparated, DepTarget),
take_arg!("-Xarch", OsString, ConcatenatedAndSeparated('_'), PassThrough),
take_arg!("-Xclang", OsString, Separated, XClang),
take_arg!("-add-plugin", OsString, Separated, PassThrough),
take_arg!("-debug-info-kind", OsString, Concatenated('='), PassThrough),
Expand Down
3 changes: 2 additions & 1 deletion src/compiler/diab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ where
match arg {
Argument::WithValue(_, ref v, ArgDisposition::Separated)
| Argument::WithValue(_, ref v, ArgDisposition::CanBeConcatenated(_))
| Argument::WithValue(_, ref v, ArgDisposition::CanBeSeparated(_)) => {
| Argument::WithValue(_, ref v, ArgDisposition::CanBeSeparated(_))
| Argument::WithValue(_, ref v, ArgDisposition::ConcatenatedAndSeparated(_)) => {
if v.clone().into_arg_os_string().starts_with("@") {
cannot_cache!("@");
}
Expand Down
3 changes: 2 additions & 1 deletion src/compiler/gcc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ where
match arg {
Argument::WithValue(_, ref v, ArgDisposition::Separated)
| Argument::WithValue(_, ref v, ArgDisposition::CanBeConcatenated(_))
| Argument::WithValue(_, ref v, ArgDisposition::CanBeSeparated(_)) => {
| Argument::WithValue(_, ref v, ArgDisposition::CanBeSeparated(_))
| Argument::WithValue(_, ref v, ArgDisposition::ConcatenatedAndSeparated(_)) => {
if v.clone().into_arg_os_string().starts_with("@") {
cannot_cache!("@");
}
Expand Down

0 comments on commit 4f01aa3

Please sign in to comment.