-
Newb question time! With the
Does the interpreter not support/grok all that the compiler (or build script) does, out of box? Namely here the |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
You can try You should then be able to use the interpreter normally, with your compiled modules visible. Pethaps we can add a a |
Beta Was this translation helpful? Give feedback.
-
Ah, actually there is an old limitation in the interpreter not understanding relative paths. We should fix this. |
Beta Was this translation helpful? Give feedback.
-
Aha, the plot thickens; the limitation i was thinking of is no longer there, but there is another bug at play: Here is what the canonical way to run main interpreted would be:
which fails:
The issue here is that gxi evals this as a script, and there is no module context to anchor the resolution of the module path, so it fails. This is a bug. |
Beta Was this translation helpful? Give feedback.
-
Opened issue for tracking resolution: #1242 |
Beta Was this translation helpful? Give feedback.
Opened issue for tracking resolution: #1242