-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: cast overflow in 32-bits OS (#978)
* fix: cast overflow in 32-bits OS * Fix type conversion issues in bitwise.rs, host.rs, host_env.rs, macros.rs, and system.rs * Fix error in as_usize_or_fail macro * Update CI configuration and add Cross.toml * Fix command arguments in ethereum-tests.yml * Update Ethereum tests workflow * Update Cross.toml with pre-build commands for i686 target
- Loading branch information
Showing
4 changed files
with
22 additions
and
6 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
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,10 @@ | ||
[build] | ||
pre-build = [ | ||
"apt-get update && apt-get install --assume-yes --no-install-recommends llvm-dev clang libclang-dev", | ||
] | ||
|
||
[target.i686-unknown-linux-gnu] | ||
image = "ghcr.io/cross-rs/i686-unknown-linux-gnu:main" | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main" |
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