- Compatible with Emscripten 1.38.46-upstream or later upstream. - Refactors the Emscripten target spec to share code with other wasm targets. - Replaces the old incorrect wasm32 C call ABI with the correct one, preserving the old one as wasm32_bindgen_compat for wasm-bindgen compatibility. - Updates the varargs ABI used by Emscripten and deletes the old one. - Removes the obsolete wasm32-experimental-emscripten target. - Uses EMCC_CFLAGS on CI to avoid the timeout problems with #63649.
22 lines
783 B
Rust
22 lines
783 B
Rust
// Test that changing a tracked commandline argument invalidates
|
|
// the cache while changing an untracked one doesn't.
|
|
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
|
// revisions:rpass1 rpass2 rpass3
|
|
// compile-flags: -Z query-dep-graph
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![rustc_partition_codegened(module="commandline_args", cfg="rpass2")]
|
|
#![rustc_partition_reused(module="commandline_args", cfg="rpass3")]
|
|
|
|
// Between revisions 1 and 2, we are changing the debuginfo-level, which should
|
|
// invalidate the cache. Between revisions 2 and 3, we are adding `--verbose`
|
|
// which should have no effect on the cache:
|
|
//[rpass1] compile-flags: -C debuginfo=0
|
|
//[rpass2] compile-flags: -C debuginfo=2
|
|
//[rpass3] compile-flags: -C debuginfo=2 --verbose
|
|
|
|
pub fn main() {
|
|
// empty
|
|
}
|