From 92ad88b617f437dea1873e5649d0363207da0f4f Mon Sep 17 00:00:00 2001 From: Caoruihong Date: Mon, 17 May 2021 23:10:46 +0800 Subject: [PATCH] chore: use bounds_checking_function from //third_party the bounds_checking_function in //kernel/liteos_m/compnents was removed, we should use this component from //third_party fix #I3RPVJ Change-Id: Icfc7f4b1166719e4eb1b5f360ff2e96a350a0bc7 Signed-off-by: Caoruihong --- riscv32/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/riscv32/Makefile b/riscv32/Makefile index bef5762..5f4b0f9 100755 --- a/riscv32/Makefile +++ b/riscv32/Makefile @@ -60,8 +60,8 @@ LOCAL_ASMSRCS := $(wildcard $(LITEOSTOPDIR)/kernel/arch/risc-v/riscv32/gcc/*.S) $(wildcard $(OPENHARMONYDIR)/device/qemu/$(LITEOS_PLATFORM)/los_start.S) \ $(wildcard $(OPENHARMONYDIR)/device/qemu/$(LITEOS_PLATFORM)/libc/*.S) -LOCAL_CSRCS += $(wildcard $(LITEOSTOPDIR)/components/bounds_checking_function/src/*.c) -CFLAGS += -I $(LITEOSTOPDIR)/components/bounds_checking_function/include +LOCAL_CSRCS += $(wildcard $(OPENHARMONYDIR)/third_party/bounds_checking_function/src/*.c) +CFLAGS += -I $(OPENHARMONYDIR)/third_party/bounds_checking_function/include CC = $(CROSS_COMPILE)gcc AS = $(CROSS_COMPILE)as -- Gitee