mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +03:00
12 lines
341 B
Plaintext
12 lines
341 B
Plaintext
[build]
|
|
target-dir = "target/rust/"
|
|
rustflags = []
|
|
|
|
[target.wasm32-unknown-unknown]
|
|
rustflags = [
|
|
# Increas the stack size from 1MB to 2MB. This is required to avoid running out of stack space
|
|
# in debug builds. The error is reported as `RuntimeError: memory access out of bounds`.
|
|
"-C",
|
|
"link-args=-z stack-size=2097152",
|
|
]
|