Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit 15f5b18

Browse files
Install git version of bindgen when running setup-devenv.sh
This fixes build issues on non Linux platforms.
1 parent a8930a6 commit 15f5b18

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
- `naev-artwork` (Used to render naev artwork.) ***DEPRECATED***
88
- `naev-linux-archaic` (Used for old release builds) ***DEPRECATED***
99

10+
### v1.12.9
11+
- Install git version of bindgen when running setup-devenv.sh
12+
- This fixes build issues on non Linux platforms.
13+
1014
### v1.12.8
1115
- Bump Meson to 1.7.0 in `naev-macos`
1216

naev-docs/setup-devenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ rustup-init -y --default-toolchain stable
99
source ~/.cargo/env
1010

1111
# Install bindgen-cli via cargo
12-
cargo install bindgen-cli
12+
cargo install bindgen-cli --git https://github.com/rust-lang/rust-bindgen.git#97ab915
1313

1414
# Print a "Ready to use" message
1515
echo "Ready to use"

naev-macos/setup-devenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ source ~/.cargo/env
3737
rustup install stable
3838

3939
# Install bindgen-cli via cargo
40-
cargo install bindgen-cli
40+
cargo install bindgen-cli --git https://github.com/rust-lang/rust-bindgen.git#97ab915
4141

4242
# Print a "Ready to use" message
4343
echo "Ready to use"

naev-release/setup-devenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ rustup-init -y --default-toolchain stable
99
source ~/.cargo/env
1010

1111
# Install bindgen-cli via cargo
12-
cargo install bindgen-cli
12+
cargo install bindgen-cli --git https://github.com/rust-lang/rust-bindgen.git#97ab915
1313

1414
# Print a "Ready to use" message
1515
echo "Ready to use"

naev-steamruntime/setup-devenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source ~/.cargo/env
1313
rustup install stable
1414

1515
# Install bindgen-cli via cargo
16-
cargo install bindgen-cli
16+
cargo install bindgen-cli --git https://github.com/rust-lang/rust-bindgen.git#97ab915
1717

1818
# Print a "Ready to use" message
1919
echo "Ready to use"

naev-windows/setup-devenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ source ~/.cargo/env
1212
rustup install stable
1313

1414
# Install bindgen-cli via cargo
15-
cargo install bindgen-cli
15+
cargo install bindgen-cli --git https://github.com/rust-lang/rust-bindgen.git#97ab915
1616

1717
# Print a "Ready to use" message
1818
echo "Ready to use"

0 commit comments

Comments
 (0)