I switched from manually downloading Julia to using the juliaup installer. Now I just get a binary executable that launches Julia, but I cannot find the header files for embedding Julia in C/C++. Is this a limitation of juliaup, or I just need to look into the right directory?
1 Like
~/.julia/juliaup/julia-1.9.0+0.x64.linux.gnu/include/julia/
2 Likes
Try running
$ julia -E "joinpath(dirname(Sys.BINDIR),\"include\",\"julia\")"
2 Likes