Skip to content

Instantly share code, notes, and snippets.

@keiichiw
Last active November 2, 2017 10:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keiichiw/0fcedda2d29c81a2d1be to your computer and use it in GitHub Desktop.
Save keiichiw/0fcedda2d29c81a2d1be to your computer and use it in GitHub Desktop.
demonstration of xv6 ported to GAIA processor
# 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