igvm_c: switch Makefile to cargo-c #94
Merged
+31
−38
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Using
cargo cbuildandcargo cinstallhas various advantages:it is able to generate a shared library (
cdylib- this is important because if you have two dependencies that are Ruststaticlibs, they final link will fail due to duplicate symbols)it takes care of generating the
.pcfile and correctly includes the dependencies of the Rust standard library. This makes it possible to cross-compile not justlibigvm, but alsodump_igvm, and to easily link with the staticlibigvm.aafter they've been installed into$(DESTDIR)/$(PREFIX).