diff options
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index ab51aa8..6171ac2 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Johannes Stoelp +# Copyright (c) 2021 Johannes Stoelp ARCH ?= x86_64 @@ -8,6 +8,8 @@ else ifeq ($(ARCH),arm64) PREFIX := aarch64-linux-gnu- else ifeq ($(ARCH),arm) PREFIX := arm-linux-gnueabi- +else ifeq ($(ARCH),riscv64) +PREFIX := riscv64-linux-gnu- else $(error Unsupported architecture ARCH=$(ARCH)) endif |