Frequently Asked Questions about CJIT
Here we try to answer the most asked questions.
What's different between tcc -run
and CJIT?
The main difference is in usability.
CJIT improves three main UX aspects for now:
-
It works as a single executable file which embeds the TinyCC compiler, all its headers and its standard library. This way there is no need to install anything system wide, check paths and setup build folders.
-
It supports adding multiple files into one execution: can accept wildcards to ingest anything that is a C source, a pre-compiled object or a shared library. The symbols exported by each file will be visible to all during the same execution.
-
It finds automatically common system libraries for each target platform, avoiding the need to repeat these settings and look for the right paths.
We are happy to further the improve developer experience with CJIT, and your advice is welcome: open an issue!
What's different between libgccjit
and CJIT?
CJIT is built as an command-line interpreter using the TinyCC backend
for in-memory compilation. In the future it may also offer libgccjit
as backend, as long as it will be possible to embed it all inside a
single executable file, which is a core feature of CJIT's vision for
developer experience.
Which parts of CJIT are licensed, under what?
Detailed licensing information for CJIT is in the REUSE metadata file. We check correctness of these attributions at every single commit.
All CJIT's original code is licensed using GNU GPL v3 and will be updated to use future versions of this license published by the Free Software Foundation. All included licenses are compatible with this.
We grant to everyone the freedome to use, study, modify, and redistribute modifications of CJIT as long as such modifications are licensed with one of the licenses already present: MIT, GPL or LGPL.
Where to I send my corrections to this documentation?
You are welcome to open an issue or a PR to the dyne/docs project.
The source of the CJIT manual is in the markdown formatted files in src/cjit/docs
inside the repository.
I have a new question, whom can I ask?
You are welcome to interact in public with Dyne.org hackers over any of our channels and social network acconts.
If you prefer to interact privately, write a mail to info@dyne.org.