From 8dbc0edb935a62d748aaac39258d4a985de0ae17 Mon Sep 17 00:00:00 2001 From: Jiajie Chen Date: Wed, 17 Apr 2019 07:59:22 +0800 Subject: [PATCH] Disable biscuit for Darwin-riscv32 --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9184610..d961b32 100644 --- a/Makefile +++ b/Makefile @@ -44,15 +44,13 @@ ucore: @cp $(ucore_bin_path)/* $(out_dir)/ucore biscuit: -ifneq ($(shell uname)-$(arch), Darwin-riscv64) -ifneq ($(shell uname)-$(arch), Darwin-aarch64) +ifneq ($(shell uname)-$(arch), Darwin-$(filter $(arch), riscv32 riscv64 aarch64)) @echo Building biscuit programs @mkdir -p biscuit/build @cd biscuit/build && cmake $(cmake_build_args) .. && make @rm -rf $(out_dir)/biscuit && mkdir -p $(out_dir)/biscuit @cp $(biscuit_bin_path)/* $(out_dir)/biscuit endif -endif $(busybox): ifeq ($(arch), x86_64)