Skip to content
This repository was archived by the owner on Feb 25, 2021. It is now read-only.

Commit 0fe06e9

Browse files
authored
Merge pull request BlockstreamResearch#64 from mpapierski/63-big-endian
Use correct flag on big endian machines.
2 parents 2f8855f + 3b86de9 commit 0fe06e9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.rs

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ fn main() {
6161
.define("ENABLE_MODULE_ECDH", Some("1"))
6262
.define("ENABLE_MODULE_RECOVERY", Some("1"));
6363

64+
if let Ok(target_endian) = std::env::var("CARGO_CFG_TARGET_ENDIAN") {
65+
if target_endian == "big" {
66+
base_config.define("WORDS_BIGENDIAN", Some("1"));
67+
}
68+
}
69+
6470
if use_64bit_compilation {
6571
base_config.define("USE_FIELD_5X52", Some("1"))
6672
.define("USE_SCALAR_4X64", Some("1"))

0 commit comments

Comments
 (0)