mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-21 20:15:21 +00:00
build: Install libfdt in github cross-build workflow
In AArch64 prototype, there are code to construct the flattened device tree, and to make such code compilable we need to install libfdt-dev. In normal situation, this installation process can be done by either installing libfdt-dev locally or in the development container. Before formal AArch64 CI is setup, we use the workaround in this commit to install libfdt in the github cross-build workflow. Signed-off-by: Henry Wang <Henry.Wang@arm.com>
This commit is contained in:
parent
2d13751d7d
commit
e436bbf3bb
2
.github/workflows/cross-build.yaml
vendored
2
.github/workflows/cross-build.yaml
vendored
@ -22,6 +22,8 @@ jobs:
|
||||
toolchain: ${{ matrix.rust }}
|
||||
target: ${{ matrix.target }}
|
||||
override: true
|
||||
- name: Install arm64 libfdt
|
||||
run: wget http://ftp.us.debian.org/debian/pool/main/d/device-tree-compiler/libfdt-dev_1.6.0-1_arm64.deb && dpkg-deb -xv libfdt-dev_1.6.0-1_arm64.deb ./tlibfdtdev && sudo mkdir /tmmmp && mkdir target && mkdir target/debug && mkdir target/debug/deps && sudo cp ./tlibfdtdev/usr/lib/aarch64-linux-gnu/libfdt.a target/debug/deps/libfdt.a && echo "libfdt installed"
|
||||
- name: Disable "with-serde" in kvm-bindings
|
||||
run: sed -i 's/"with-serde",\ //g' vmm/Cargo.toml
|
||||
- name: Build
|
||||
|
Loading…
x
Reference in New Issue
Block a user