We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It might be easier for external tools to distribute cc as a binary.
One solution is to use PyInstaller:
__main__.py
launcher.py
pyinstaller crytic_compile/launch.py
dist/launcher/*
There is also the possibility to use --onefile with pyinstaller to create 1 binary, however it creates a large startup delay
--onefile
I haven't looked at alternatives to pyinstaller, so it's something we can explore.
pyinstaller
Once we have a working process, we could do the same for slither
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It might be easier for external tools to distribute cc as a binary.
One solution is to use PyInstaller:
__main__.py
tolauncher.py
pyinstaller crytic_compile/launch.py
dist/launcher/*
There is also the possibility to use
--onefile
with pyinstaller to create 1 binary, however it creates a large startup delayI haven't looked at alternatives to
pyinstaller
, so it's something we can explore.Once we have a working process, we could do the same for slither
The text was updated successfully, but these errors were encountered: