Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] initial riscv cabi #6

Draft
wants to merge 13 commits into
base: master
Choose a base branch
from
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# for the gofrontend deps (GMP, MPCR, etc)
external/

# These are separate git repos and are tracked independently
gofrontend/
libgo/libbacktrace
libgo/libffi
libgo/libbacktrace/
libgo/libffi/
# # These are separate git repos and are tracked independently
# gofrontend/
# libgo/libbacktrace
# libgo/libffi
# libgo/libbacktrace/
# libgo/libffi/

# Compiled Object files
*.slo
Expand Down
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "gofrontend"]
path = gofrontend
url = https://github.com/plctlab/gofrontend.git
[submodule "libgo/libffi"]
path = libgo/libffi
url = https://github.com/plctlab/libffi.git
[submodule "libgo/libbacktrace"]
path = libgo/libbacktrace
url = https://github.com/plctlab/libbacktrace.git
Loading