Skip to content

Commit b5a4330

Browse files
committed
perf: experiment with turning off run time cache
1 parent c15f8ff commit b5a4330

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

profiling/build.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -322,12 +322,8 @@ fn cfg_preload(vernum: u64) -> bool {
322322

323323
fn cfg_run_time_cache(vernum: u64) -> bool {
324324
println!("cargo::rustc-check-cfg=cfg(php_run_time_cache)");
325-
if vernum >= 80000 {
326-
println!("cargo:rustc-cfg=php_run_time_cache");
327-
true
328-
} else {
329-
false
330-
}
325+
let _ = vernum;
326+
false
331327
}
332328

333329
fn cfg_trigger_time_sample() -> bool {

0 commit comments

Comments
 (0)