Skip to content

Commit

Permalink
Sandboxer: Replace features with bin parameter
Browse files Browse the repository at this point in the history
Signed-off-by: dierbei <[email protected]>
  • Loading branch information
dierbei committed Nov 7, 2023
1 parent 9a7d522 commit b111fc9
Show file tree
Hide file tree
Showing 20 changed files with 490 additions and 454 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.idea
bin
/bin
.vscode
target
**/src/api/*
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ SYSTEMD_CONF_DIR := /etc/sysconfig
all: vmm quark wasm

bin/vmm-sandboxer:
@cd vmm/sandbox && cargo build --release --features=${HYPERVISOR}
@mkdir -p bin && cp vmm/sandbox/target/release/vmm-sandboxer bin/vmm-sandboxer
@cd vmm/sandbox && cargo build --release --bin ${HYPERVISOR}
@mkdir -p bin && cp vmm/sandbox/target/release/${HYPERVISOR} bin/vmm-sandboxer

bin/vmm-task:
@cd vmm/task && cargo build --release --target=${ARCH}-unknown-linux-musl
Expand Down
4 changes: 2 additions & 2 deletions quark/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b111fc9

Please sign in to comment.