mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
`arch` module are required to provide definitions for riscv64 system irq and memroy allocation, enabling `arch` module in target specific dependencies section. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
13 lines
283 B
TOML
13 lines
283 B
TOML
[package]
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
name = "vm-allocator"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
libc = "0.2.167"
|
|
vm-memory = { workspace = true }
|
|
|
|
[target.'cfg(any(target_arch = "aarch64", target_arch = "riscv64"))'.dependencies]
|
|
arch = { path = "../arch" }
|