Commit 9b91744 1 parent a8c9dc0 commit 9b91744 Copy full SHA for 9b91744
File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -428,10 +428,8 @@ impl Tool {
428
428
429
429
/// Supports using `--` delimiter to separate arguments and path to source files.
430
430
pub ( crate ) fn supports_path_delimiter ( & self ) -> bool {
431
- matches ! (
432
- self . family,
433
- ToolFamily :: Clang { .. } | ToolFamily :: Msvc { clang_cl: true }
434
- ) && !self . cuda
431
+ // homebrew clang and zig-cc does not support this while stock version does
432
+ matches ! ( self . family, ToolFamily :: Msvc { clang_cl: true } ) && !self . cuda
435
433
}
436
434
}
437
435
Original file line number Diff line number Diff line change @@ -405,8 +405,6 @@ fn gnu_static() {
405
405
}
406
406
407
407
#[ test]
408
- // on macOS, cc/gcc is link to apple clang
409
- #[ cfg_attr( target_os = "macos" , ignore) ]
410
408
fn gnu_no_dash_dash ( ) {
411
409
let test = Test :: gnu ( ) ;
412
410
test. gcc ( ) . file ( "foo.c" ) . compile ( "foo" ) ;
You can’t perform that action at this time.
0 commit comments