mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-23 22:45:14 +00:00
WIP
This commit is contained in:
parent
a9d561089a
commit
a9ce02799c
6 changed files with 60 additions and 7 deletions
|
@ -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],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue