-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rust: preparations to integrate Rust (#360)
Signed-off-by: Florian Lehner <florian.lehner@elastic.co>
- Loading branch information
Showing
6 changed files
with
61 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[env] | ||
CC_aarch64_unknown_linux_musl = "aarch64-linux-musl-gcc" | ||
CC_x86_64_unknown_linux_musl = "x86_64-linux-musl-gcc" | ||
|
||
# Zydis CMake config requires a C++ compiler for the test cases but the musl | ||
# toolchain doesn't have one. We simply force the compiler to `g++` here to | ||
# trick CMake into passing the check for a C++ compiler: it isn't actually | ||
# used anyway. | ||
TARGET_CXX = "g++" |
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
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
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