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

feat: add linux/riscv64 support #92

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ linux-x86: ## 🐧 Build a dynamically linked cjit using libs found on Linux x86
@rm -f .build_done*
date | tee .build_done_linux

linux-riscv64: ## 🐧 Build a dynamically linked cjit using libs found on RISC-V 64
$(MAKE) -f build/linux.mk embed-posix cjit
@rm -f .build_done*
date | tee .build_done_linux

win-wsl: ## 🪟 Build cjit.exe for WIN64 on an Ubuntu WSL VM using gcc-mingw-w64
$(MAKE) -f build/win-wsl.mk cross-win embed-win cjit.exe
@rm -f .build_done*
Expand Down
Loading