Skip to content

Commit 02ebad4

Browse files
committed
Update rust version
1 parent 308ca1d commit 02ebad4

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.cargo/config renamed to .cargo/config.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
[target.x86_64-unknown-linux-gnu]
77
rustflags = [
88
"-C", "link-arg=-lgcc_eh",
9+
"-C", "link-arg=-undefined",
10+
"-C", "link-arg=dynamic_lookup",
911
]
1012

1113
[target.i686-linux-unknown-linux-gnu]
@@ -16,6 +18,8 @@ rustflags = [
1618
[target.aarch64-linux-unknown-linux-gnu]
1719
rustflags = [
1820
"-C", "link-arg=-lgcc_eh",
21+
"-C", "link-arg=-undefined",
22+
"-C", "link-arg=dynamic_lookup",
1923
]
2024

2125

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ SELECT powersync_init();
3131

3232
# Building and running
3333

34+
Initialize submodules recursively
35+
36+
```
37+
git submodule update --init --recursive
38+
```
39+
3440
```sh
3541
# Build the shell
3642
cargo build -t powersync_sqlite

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "nightly-2023-08-28"
2+
channel = "nightly-2024-05-18"

0 commit comments

Comments
 (0)