Returns the target triple which this engine is compiling code for and/or running code for.
(&self)
| 322 | /// Returns the target triple which this engine is compiling code for |
| 323 | /// and/or running code for. |
| 324 | pub(crate) fn target(&self) -> target_lexicon::Triple { |
| 325 | return self.config().compiler_target(); |
| 326 | } |
| 327 | |
| 328 | /// Verify that this engine's configuration is compatible with loading |
| 329 | /// modules onto the native host platform. |
no test coverage detected