diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-06-09 23:05:05 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-06-09 23:05:05 +0200 |
commit | 2e4a31287705d8437cddd109c12b7e11825192bc (patch) | |
tree | 448157595deb0b6441abebff45990dc9bd3558e6 /lib/Makefile | |
parent | 0db708a285c74526ebcce31a10f5730f3f715d61 (diff) | |
download | matcha-threads-2e4a31287705d8437cddd109c12b7e11825192bc.tar.gz matcha-threads-2e4a31287705d8437cddd109c12b7e11825192bc.zip |
added riscv64
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 |