NJU-ProjectN/nemu ics2023 initialized
NJU-ProjectN/nemu eb63cf3568dbf4e0c3c6ef462e6ec685550fabbc Merge pull request #76 from rijuyuezhu/master
This commit is contained in:
parent
1efe03efb9
commit
2824efad33
141 changed files with 19573 additions and 0 deletions
54
nemu/tools/spike-diff/Makefile
Normal file
54
nemu/tools/spike-diff/Makefile
Normal file
|
@ -0,0 +1,54 @@
|
|||
#***************************************************************************************
|
||||
# Copyright (c) 2014-2022 Zihao Yu, Nanjing University
|
||||
#
|
||||
# NEMU is licensed under Mulan PSL v2.
|
||||
# You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||
# You may obtain a copy of Mulan PSL v2 at:
|
||||
# http://license.coscl.org.cn/MulanPSL2
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||
#
|
||||
# See the Mulan PSL v2 for more details.
|
||||
#**************************************************************************************/
|
||||
|
||||
REPO_PATH = repo
|
||||
ifeq ($(wildcard repo/spike_main),)
|
||||
$(shell git clone --depth=1 git@github.com:NJU-ProjectN/riscv-isa-sim $(REPO_PATH))
|
||||
endif
|
||||
|
||||
REPO_BUILD_PATH = $(REPO_PATH)/build
|
||||
REPO_MAKEFILE = $(REPO_BUILD_PATH)/Makefile
|
||||
$(REPO_MAKEFILE):
|
||||
@mkdir -p $(@D)
|
||||
cd $(@D) && $(abspath $(REPO_PATH))/configure
|
||||
sed -i -e 's/-g -O2/-O2/' $@
|
||||
|
||||
SPIKE = $(REPO_BUILD_PATH)/spike
|
||||
$(SPIKE): $(REPO_MAKEFILE)
|
||||
CFLAGS="-fvisibility=hidden" CXXFLAGS="-fvisibility=hidden" $(MAKE) -C $(^D)
|
||||
|
||||
BUILD_DIR = ./build
|
||||
$(shell mkdir -p $(BUILD_DIR))
|
||||
|
||||
inc_dependencies = fesvr riscv disasm customext fdt softfloat spike_main spike_dasm build
|
||||
INC_PATH = -I$(REPO_PATH) $(addprefix -I$(REPO_PATH)/, $(inc_dependencies))
|
||||
INC_PATH += -I$(NEMU_HOME)/include
|
||||
lib_dependencies = libspike_main.a libriscv.a libdisasm.a libsoftfloat.a libfesvr.a libfdt.a
|
||||
INC_LIBS = $(addprefix $(REPO_PATH)/build/, $(lib_dependencies))
|
||||
|
||||
NAME = $(GUEST_ISA)-spike-so
|
||||
BINARY = $(BUILD_DIR)/$(NAME)
|
||||
SRCS = difftest.cc
|
||||
|
||||
$(BINARY): $(SPIKE) $(SRCS)
|
||||
g++ -std=c++17 -O2 -shared -fPIC -fvisibility=hidden $(INC_PATH) $(SRCS) $(INC_LIBS) -o $@
|
||||
|
||||
clean:
|
||||
rm -rf $(BUILD_DIR)
|
||||
|
||||
all: $(BINARY)
|
||||
.DEFAULT_GOAL = all
|
||||
|
||||
.PHONY: all clean $(SPIKE)
|
Loading…
Add table
Add a link
Reference in a new issue