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
I use a bootstrap.jl to simplify my julia environment startup, like this:
bootstrap.jl
# bootstrap.jl PREFIX = ENV["PREFIX"] using Cxx addHeaderDir(joinpath(PREFIX, "include")) addHeaderDir("/usr/include") addHeaderDir("/usr/include/eigen3")
and I start julia by julia-1.3.1 --project=demo -i -e 'include("bootstrap.jl")'
julia-1.3.1 --project=demo -i -e 'include("bootstrap.jl")'
But by this method, I cannot activate Cxx REPL by < shortcut.
<
How can I activate Cxx REPL in this manner?
If I do not use a bootstrap.jl, just start julia-1.3.1 and using Cxx there, I can activate Cxx REPL by <
using Cxx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use a
bootstrap.jl
to simplify my julia environment startup, like this:and I start julia by
julia-1.3.1 --project=demo -i -e 'include("bootstrap.jl")'
But by this method, I cannot activate Cxx REPL by
<
shortcut.How can I activate Cxx REPL in this manner?
If I do not use a
bootstrap.jl
, just start julia-1.3.1 andusing Cxx
there, I can activate Cxx REPL by<
The text was updated successfully, but these errors were encountered: