Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
redox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pirson Bethancourt
redox
Commits
e3013ac4
Verified
Commit
e3013ac4
authored
1 year ago
by
Jacob Lorentzon
Browse files
Options
Downloads
Patches
Plain Diff
Add checks and install cbindgen in bootstrap.sh.
parent
2dadc977
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bootstrap.sh
+2
-1
2 additions, 1 deletion
bootstrap.sh
mk/depends.mk
+4
-0
4 additions, 0 deletions
mk/depends.mk
with
6 additions
and
1 deletion
bootstrap.sh
+
2
−
1
View file @
e3013ac4
...
@@ -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
This diff is collapsed.
Click to expand it.
mk/depends.mk
+
4
−
0
View file @
e3013ac4
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment