You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is simple to fix. However the fix would break projects that use juvix init and then compile with --internal-build-dir as juvix init hardcodes the stdlib dependency to .juvix-build/stdlib/.
There's a failing smoke test for this bug at 67fa4f0
To reproduce, make a fresh Juvix project with no explicit dependencies and compile using the
--internal-build-dir
flag.The
--internal-build-dir
flag means that the user wants to use$buildDir
for build artifacts instead of$rootDir/.juvix-build
.Expected behaviour
The default stdlib is copied into
$buildDir/stdlib
(i.e the directory pointed to by--internal-build-dir
).Actual behaviour
The default stdlib is copied into
$rootDir/.juvix-build/stdlib
The text was updated successfully, but these errors were encountered: