mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 23:04:49 +00:00
don't use the unique stdlib, even in --optimize mode
This commit is contained in:
parent
27cfd4d7ad
commit
664a232cb1
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ pub fn build_file(
|
|||
// Release builds use uniqueness optimizations
|
||||
let stdlib = match opt_level {
|
||||
OptLevel::Normal => roc_builtins::std::standard_stdlib(),
|
||||
OptLevel::Optimize => roc_builtins::unique::uniq_stdlib(),
|
||||
OptLevel::Optimize => roc_builtins::std::standard_stdlib(),
|
||||
};
|
||||
let loaded = roc_load::file::load_and_monomorphize(
|
||||
&arena,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue