This commit is contained in:
Folkert 2021-11-09 20:57:36 +01:00
parent a9d561089a
commit a9ce02799c
6 changed files with 60 additions and 7 deletions

View file

@ -1,10 +1,15 @@
use std::ops::Index;
pub const OBJ_PATH: &str = env!(
pub const BUILTINS_HOST_OBJ_PATH: &str = env!(
"BUILTINS_HOST_O",
"Env var BUILTINS_HOST_O not found. Is there a problem with the build script?"
);
pub const BUILTINS_WASM32_OBJ_PATH: &str = env!(
"BUILTINS_WASM32_O",
"Env var BUILTINS_WASM32_O not found. Is there a problem with the build script?"
);
#[derive(Debug, Default)]
pub struct IntrinsicName {
pub options: [&'static str; 14],