DragonOS/env.mk

14 lines
310 B
Makefile
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)