Commit 5530be5 1 parent 3c35da5 commit 5530be5 Copy full SHA for 5530be5
File tree 2 files changed +5
-2
lines changed
packages/turbo-repository/rust
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ linker = "rust-lld"
18
18
[target .aarch64-apple-darwin ]
19
19
linker = " rust-lld"
20
20
21
+ [target .x86_64-apple-darwin ]
22
+ linker = " rust-lld"
23
+
21
24
[alias ]
22
25
xtask = " run --package xtask --"
23
26
tr-build = " build -p turbo"
Original file line number Diff line number Diff line change 1
1
fn main ( ) {
2
- #[ cfg( not( all ( target_os = "macos" , target_arch = "aarch64" ) ) ) ]
2
+ #[ cfg( not( target_os = "macos" ) ) ]
3
3
napi_build:: setup ( ) ;
4
4
5
5
// This is a workaround for napi always including a GCC specific flag.
6
- #[ cfg( all ( target_os = "macos" , target_arch = "aarch64" ) ) ]
6
+ #[ cfg( target_os = "macos" ) ]
7
7
{
8
8
println ! ( "cargo:rerun-if-env-changed=DEBUG_GENERATED_CODE" ) ;
9
9
println ! ( "cargo:rerun-if-env-changed=TYPE_DEF_TMP_PATH" ) ;
You can’t perform that action at this time.
0 commit comments