mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
Add targets for repl_test
This commit is contained in:
parent
0be3632da3
commit
c3641d38d2
2 changed files with 17 additions and 1 deletions
|
@ -16,6 +16,7 @@ indoc = "1.0.7"
|
|||
strip-ansi-escapes = "0.1.1"
|
||||
wasmer-wasi = "2.2.1"
|
||||
|
||||
roc_build = { path = "../compiler/build" }
|
||||
roc_repl_cli = {path = "../repl_cli"}
|
||||
roc_test_utils = {path = "../test_utils"}
|
||||
|
||||
|
@ -27,4 +28,18 @@ wasmer = { version = "2.2.1", default-features = false, features = ["singlepass"
|
|||
wasmer = { version = "2.2.1", default-features = false, features = ["cranelift", "universal"] }
|
||||
|
||||
[features]
|
||||
wasm = []
|
||||
default = ["target-aarch64", "target-x86_64", "target-wasm32"]
|
||||
wasm = ["target-wasm32"]
|
||||
target-arm = ["roc_build/target-arm", "roc_repl_cli/target-arm"]
|
||||
target-aarch64 = ["roc_build/target-aarch64", "roc_repl_cli/target-aarch64"]
|
||||
target-x86 = ["roc_build/target-x86", "roc_repl_cli/target-x86"]
|
||||
target-x86_64 = ["roc_build/target-x86_64", "roc_repl_cli/target-x86_64"]
|
||||
target-wasm32 = ["roc_build/target-wasm32", "roc_repl_cli/target-wasm32"]
|
||||
|
||||
target-all = [
|
||||
"target-aarch64",
|
||||
"target-arm",
|
||||
"target-x86",
|
||||
"target-x86_64",
|
||||
"target-wasm32"
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue