Produces a blob of bytes by serializing the `engine`'s configuration data to be checked, perhaps in a different process, with the `check_compatible` method below. The blob of bytes is inserted into the object file specified to become part of the final compiled artifact.
(&self, obj: &mut Object<'_>)
| 724 | /// The blob of bytes is inserted into the object file specified to become part |
| 725 | /// of the final compiled artifact. |
| 726 | pub(crate) fn append_compiler_info(&self, obj: &mut Object<'_>) -> Result<()> { |
| 727 | serialization::append_compiler_info(self, obj, &serialization::Metadata::new(&self)?); |
| 728 | Ok(()) |
| 729 | } |
| 730 | |
| 731 | #[cfg(any(feature = "cranelift", feature = "winch"))] |
| 732 | pub(crate) fn append_bti(&self, obj: &mut Object<'_>) { |
no test coverage detected