mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
don't use max-threads on windows
This commit is contained in:
parent
ef9f2a4bdc
commit
f91e358aff
@ -157,7 +157,10 @@ mod cli_run {
|
||||
let flags = {
|
||||
let mut vec = flags.to_vec();
|
||||
|
||||
vec.push("--max-threads=1");
|
||||
// max-threads segfaults on windows right now
|
||||
if !cfg!(windows) {
|
||||
vec.push("--max-threads=1");
|
||||
}
|
||||
|
||||
vec.into_iter()
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user