(&mut self, name: &str, value: &str)
| 1565 | /// Panics if this configuration's compiler was [disabled][Config::enable_compiler]. |
| 1566 | #[cfg(any(feature = "cranelift", feature = "winch"))] |
| 1567 | pub unsafe fn cranelift_flag_set(&mut self, name: &str, value: &str) -> &mut Self { |
| 1568 | self.compiler_config_mut() |
| 1569 | .settings |
| 1570 | .insert(name.to_string(), value.to_string()); |
| 1571 | self |
| 1572 | } |
| 1573 | |
| 1574 | /// Set a custom [`Cache`]. |
| 1575 | /// |