Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/perry/src/commands/compile/build_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ const BUILD_CACHE_ENV_VARS: &[&str] = &[
// a different backend means different object bytes.
"PERRY_LLVM_INPROCESS",
"PERRY_WRITE_BARRIERS",
// #9342 kill switch: `PERRY_U8_INLINE_READ=0` removes the inline u8-read
// lane from the emitted code, so an object built with the lane must not be
// served from cache to a build that turned it off (and vice versa).
"PERRY_U8_INLINE_READ",
"PERRY_SHADOW_STACK",
"PERRY_RS4GC",
// `-Os` vs `-O3` for every native module.
Expand Down
Loading