Skip to content

Commit

Permalink
Patch QEMU to fix build error
Browse files Browse the repository at this point in the history
QEMU 8 requires newer API from newer glibc.
  • Loading branch information
tienntr committed Dec 15, 2023
1 parent 7872a1f commit 3b955ca
Show file tree
Hide file tree
Showing 3 changed files with 481 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build-centos7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@ jobs:
run: scl enable devtoolset-11 -- make -j $(nproc)

- name: Build QEMU
run: scl enable devtoolset-11 rh-python38 -- make -j $(nproc) build-sim SIM=qemu
run: |
git config --global user.name builder
git config --global user.email [email protected]
pushd qemu
git am ../patches/qemu8-on-centos7.mbox
popd
scl enable devtoolset-11 rh-python38 -- make -j $(nproc) build-sim SIM=qemu
- name: Build Spike
run: scl enable devtoolset-11 -- make -j $(nproc) build-sim SIM=spike
Expand Down
Loading

0 comments on commit 3b955ca

Please sign in to comment.