demonstration of xv6 ported to GAIA processor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you execute `make run`, xv6 will be compiled by UCC and boot up in the simulator. | |
# You need OCaml and clang to compile UCC. | |
all: ucc xv6 | |
ucc: | |
git clone git@github.com:kw-udon/ucc.git | |
make -C ./ucc/ | |
xv6: | |
git clone git@github.com:wasabiz/xv6.git | |
make -C ./xv6/ | |
.PHONY: run | |
run: ucc xv6 | |
make -C ./xv6/ sim | |
.PHONY: clean | |
clean: | |
rm -rf ./ucc/ ./xv6/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment