We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9efcc commit 7e36542Copy full SHA for 7e36542
tests/test.rs
@@ -563,6 +563,8 @@ fn gnu_apple_arch() {
563
.compiler("fake-gcc")
564
.target(&target)
565
.host(&"aarch64-apple-darwin")
566
+ // Fake SDK root to avoid running xcrun
567
+ .__set_env("SDKROOT", "/tmp")
568
.file("foo.c")
569
.compile("foo");
570
@@ -607,6 +609,8 @@ fn gnu_apple_deployment_target() {
607
609
.__set_env("TVOS_DEPLOYMENT_TARGET", "10.0")
608
610
.__set_env("WATCHOS_DEPLOYMENT_TARGET", "5.0")
611
.__set_env("XROS_DEPLOYMENT_TARGET", "1.0")
612
613
614
615
616
0 commit comments