Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-11 | tests/rust: dynamic linking doesn't work on darwin | Dylan Baker | 1 | -0/+4 | |
This is a bug, and needs to be fixed, but in the short term testing other rust functionality on darwin is an improvement over testing none. | |||||
2020-02-25 | test: merge installed_files.txt into test.json | Daniel Mensinger | 2 | -7/+10 | |
2019-11-18 | Use strict function prototypes | Michael Hirsch, Ph.D | 1 | -1/+1 | |
2019-06-21 | Add Rust generated pdbs to list of installed files. | Jussi Pakkanen | 1 | -1/+6 | |
2018-02-02 | Fix Rust shared polyglot test case for cross-compilation | Adam C. Foltzer | 1 | -1/+1 | |
The crate-type in this case should have been `cdylib` since it's linking via C, rather than the default `dylib` that is meant for linking via `rustc`. | |||||
2017-06-09 | Enhance Rust support | Adam C. Foltzer | 4 | -0/+21 | |
- Adds a `crate_type` kwarg to library targets, allowing the different types of Rust [linkage][1]. - Shared libraries use the `dylib` crate type by default, but can also be `cdylib` - Static libraries use the `rlib` crate type by default, but can also be `staticlib` - If any Rust target has shared library dependencies, add the appropriate linker arguments, including rpath for the sysroot of the Rust compiler [1]: https://doc.rust-lang.org/reference/linkage.html |