Replies: 1 comment
-
There is a static Jim_EvalEnsemble() in both jim.c and jim-namespace.c. We can rename one of those. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This seemed straightforward enough but i'm failing time and again:
i'm attempting to create a full(er)-featured single-file jimsh.c by hacking on
make-bootstrap-jim
, starting small, like addingnamespace
support with a small change to:cexts="namespace aio readdir regexp file exec clock array"
which ends in:
So instead...
allexts="bootstrap aio readdir regexp file glob exec clock array stdlib tclcompat namespace"
Which leads to:
That function comes from
jim-namespace.c
, indicating that the namespace extension belongs incexts
, but doing that leads to ODR violations (yet not doing it leads to a binary without namespace support, as can be seen in the output fromtest-bootstrap-jim
).Certainly there's just some very simple trick i'm missing?
Beta Was this translation helpful? Give feedback.
All reactions