| 1 | | Thre is some information about building gcc with the jit here <https://gcc.gnu.org/onlinedocs/gcc-10.2.0/jit/internals/index.html>. |
| 2 | | |
| 3 | | Notably, apparently this slows down gcc, so they recommend separate builds, using the standard build for most everything, and the jit build to install the jit bits. |
| 4 | | |
| 5 | | Debian and Homebrew have the libgccjit component as a separate installation from gcc itself for this reason, kind of how we have libomp as a separate installation from the lvvm tree. |
| 6 | | |
| 7 | | We should probably do that with our libgccjit as well. |
| | 1 | Thre is some information about building gcc with the jit here <https://gcc.gnu.org/onlinedocs/gcc-10.2.0/jit/internals/index.html> |