Replies: 1 comment
-
Most developers only generate the bindings once and then bundle them with the package, generating them in the packages build step would add an unnecessary dependency on Clang.jl and require that everyone installing the package generate the bindings (which should be unnecessary). My preferred workflow is to keep a Julia REPL open with the generator project activated, and then run |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What is the best practice for re-generating the
LibPlaceholder.jl
file in the build script (e.g.deps/build.jl
)?Currently, I am using a
Makefile
at the root of the project, structured like so:and every time there is an update to
generator.{toml,jl}
I would need to manually re-run this script. Is there an idiomatic way to trigger this subproject rebuild process indeps/build.jl
?Beta Was this translation helpful? Give feedback.
All reactions