You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I recently started looking at using this library as a way to generate tests that cross a C/Rust boundary, and so far it's working pretty well!
In our case, we are already using a cc::Build for some C libraries, so I thought it would be nice if there was a simple way to translate between the two, so we don't have to repeat all of our builder flags, e.g.
Would you be open to a PR adding a From<cc::Build> implementation for cpp_build::Config? The downside would be adding cc as a public API (I don't think it is currently), but would make maintaining a set of flags/include paths/tools like this a bit simpler.
Thanks!
The text was updated successfully, but these errors were encountered:
Would you be open to a PR adding a Fromcc::Build implementation for cpp_build::Config?
I think that makes sense
The downside would be adding cc as a public API (I don't think it is currently), but would make maintaining a set of flags/include paths/tools like this a bit simpler.
Given that cc has been in the 1.0 for so long and proven to be stable, I think this is not a problem. And probably a good thing to expose it directly
Hi, I recently started looking at using this library as a way to generate tests that cross a C/Rust boundary, and so far it's working pretty well!
In our case, we are already using a
cc::Build
for some C libraries, so I thought it would be nice if there was a simple way to translate between the two, so we don't have to repeat all of our builder flags, e.g.Would you be open to a PR adding a
From<cc::Build>
implementation forcpp_build::Config
? The downside would be addingcc
as a public API (I don't think it is currently), but would make maintaining a set of flags/include paths/tools like this a bit simpler.Thanks!
The text was updated successfully, but these errors were encountered: