Skip to content
Snippets Groups Projects
Verified Commit e3013ac4 authored by Jacob Lorentzon's avatar Jacob Lorentzon
Browse files

Add checks and install cbindgen in bootstrap.sh.

parent 2dadc977
No related branches found
No related tags found
No related merge requests found
...@@ -1024,9 +1024,10 @@ fi ...@@ -1024,9 +1024,10 @@ fi
cargoInstall cargo-config 0.1.1 cargoInstall cargo-config 0.1.1
cargoInstall just 1.16.0 cargoInstall just 1.16.0
cargoInstall cbindgen 0.26.0
if [ "$dependenciesonly" = false ]; then if [ "$dependenciesonly" = false ]; then
boot boot
fi fi
echo "Redox bootstrap complete!" echo "Redox bootstrap complete!"
\ No newline at end of file
...@@ -7,6 +7,10 @@ ifeq ($(shell which rustup),) ...@@ -7,6 +7,10 @@ ifeq ($(shell which rustup),)
$(error rustup not found, install from "https://rustup.rs/") $(error rustup not found, install from "https://rustup.rs/")
endif endif
ifeq ($(shell which cbindgen),)
$(error cbindgen not found, install from crates.io or from your package manager)
endif
ifeq ($(shell which nasm),) ifeq ($(shell which nasm),)
$(error nasm not found, install from your package manager) $(error nasm not found, install from your package manager)
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment