-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable symbol mangling on macOS and Windows (#34)
- Loading branch information
Showing
11 changed files
with
459 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cyclors" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
authors = ["kydos <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -30,3 +30,4 @@ cmake = "0.1" | |
|
||
[features] | ||
iceoryx = [] | ||
prefix_symbols = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[target.x86_64-unknown-linux-musl] | ||
image = "jenoch/rust-cross:x86_64-unknown-linux-musl" | ||
|
||
[target.arm-unknown-linux-gnueabi] | ||
image = "jenoch/rust-cross:arm-unknown-linux-gnueabi" | ||
|
||
[target.arm-unknown-linux-gnueabihf] | ||
image = "jenoch/rust-cross:arm-unknown-linux-gnueabihf" | ||
|
||
[target.armv7-unknown-linux-gnueabihf] | ||
image = "jenoch/rust-cross:armv7-unknown-linux-gnueabihf" | ||
|
||
[target.aarch64-unknown-linux-gnu] | ||
image = "jenoch/rust-cross:aarch64-unknown-linux-gnu" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
image = "jenoch/rust-cross:aarch64-unknown-linux-musl" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# cyclors | ||
Low level RUST APIs for cyclone | ||
|
||
## Supported Features | ||
|
||
* ```iceoryx```: Enable support for the Iceoryx PSMX plugin in Cyclone DDS (Linux and macOS only). | ||
* ```prefix_symbols```: Prefix the symbols in the Cyclone DDS and Cyclocut libraries with the version of the cyclors crate. This allows for different versions of the crate to be loaded together statically. On macOS and Windows platforms ```llvm-nm``` and ```llvm-objcopy``` are required. | ||
|
||
**Note:** The ```iceoryx``` and ```prefix_symbols``` features are optional and cannot be enabled at the same time. |
Oops, something went wrong.