Incremental builds are currently unreliable on sparc64,
disable them by default for the time being.
Last-Update: 2018-08-07
Gbp-Pq: Name 2007_sparc64_disable_incremental_build.patch
debuginfo: Some(2),
debug_assertions: true,
overflow_checks: true,
+ #[cfg(target_arch = "sparc64")]
+ incremental: false,
+ #[cfg(not(target_arch = "sparc64"))]
incremental: true,
..Profile::default()
}
/// Check that the `CARGO_INCREMENTAL` environment variable results in
/// `rustc` getting `-Zincremental` passed to it.
+#[cfg(not(target_arch = "sparc64"))]
#[test]
fn cargo_compile_incremental() {
let p = project("foo")
);
}
+#[cfg(not(target_arch = "sparc64"))]
#[test]
fn incremental_profile() {
let p = project("foo")
);
}
+#[cfg(not(target_arch = "sparc64"))]
#[test]
fn incremental_config() {
let p = project("foo")