Replies: 3 comments
-
With Python 3.10:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
With Python 3.7:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Another option is to try https://docs.exaloop.io/codon. The concept looks very promising. |
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
-
Using Nuitka to generate a StrictDoc static binary is a great idea, however it looks like some extra work has to be done before the whole build pipeline produces executables valid on all platforms.
Observations so far:
--static-libpython=no
because my pyenv-created Python versions do not allow the static build. When I run the nuitka-built binary for the first time on macOS, the warm up time takes up to 20+ seconds which is extremely long. Starting from the second run, however, the binary StrictDoc works much faster than the Python version. I am assuming that the startup time will change when compiled with--static-libpython=yes
.Below I am sharing the problems that I have encountered on macOS. The
segmentation fault
problem below is the most prominent so far, and I don't know how to fix it quickly. With more time, I would reach out to the Nuitka developers and ask them how the call stacks like the one below can be investigated (the call stack goes around bibtex).Beta Was this translation helpful? Give feedback.
All reactions