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
There is some runtime code embedded to the current compiler output. We should have a single .so/.a for the code shared between different Titan modules.
A solution for this issue will also fix #87.
The text was updated successfully, but these errors were encountered:
I do not think this runtime should be a shared library, its size will probably not be big enough to offset the extra indirection. There is also the question of where the source for this runtime (and its compiled object file) is installed, and how the Titan compiler finds them (without inconveniencing the user).
I think the least inconvenient place to put the runtime would be bundled together with our version of Lua. (Yes, this would come at the cost of making it harder to run titan with an unmodified Lua)
There is some runtime code embedded to the current compiler output. We should have a single
.so
/.a
for the code shared between different Titan modules.A solution for this issue will also fix #87.
The text was updated successfully, but these errors were encountered: