mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 10:15:03 +00:00
14 lines
310 B
Makefile
14 lines
310 B
Makefile
|
||
ifeq ($(ARCH), )
|
||
# !!!!在这里设置ARCH,可选 x86_64 和 riscv64
|
||
# !!!!!!!如果不同时调整这里以及vscode的settings.json,那么自动补全和检查将会失效
|
||
export ARCH?=riscv64
|
||
endif
|
||
|
||
ifeq ($(EMULATOR), )
|
||
export EMULATOR=__NO_EMULATION__
|
||
endif
|
||
|
||
|
||
export DADK?=$(shell which dadk)
|