Skip to content

Commit 2850715

Browse files
authored
Merge pull request #28 from superwall/develop
Pass linker flags to cross compiler
2 parents 02bc59a + 4506610 commit 2850715

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

.cargo/config.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[target.x86_64-linux-android]
2+
rustflags = [
3+
"-C", "link-arg=-Wl,-z,max-page-size=16384"
4+
]
5+
6+
[target.armv7-linux-androideabi]
7+
rustflags = [
8+
"-C", "link-arg=-Wl,-z,max-page-size=16384"
9+
]
10+
11+
[target.aarch64-linux-android]
12+
rustflags = [
13+
"-C", "link-arg=-Wl,-z,max-page-size=16384"
14+
]
15+
16+
[target.i686-linux-android]
17+
rustflags = [
18+
"-C", "link-arg=-Wl,-z,max-page-size=16384"
19+
]

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# CHANGELOG
22

3+
## 0.2.8
4+
5+
### Enhancements
6+
7+
- Pass linker flags for 16kb architecture on Android
8+
9+
## 0.2.7
10+
11+
- Version bump
12+
313
## 0.2.6
414

515
### Enhancements

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cel-eval"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.htmlž

0 commit comments

Comments
 (0)