mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
* la64能够进入到kernel_main * ci: 添加为ubuntu编译qemu-loongarch64的脚本 * feat: la64能输出hello world * la64 安装gcc && 配置github ci * chore: 更新CI工作流和构建脚本中的Docker镜像版本至v1.10 Signed-off-by: longjin <longjin@DragonOS.org>
15 lines
322 B
Makefile
15 lines
322 B
Makefile
|
||
ifeq ($(ARCH), )
|
||
# !!!!在这里设置ARCH,可选:
|
||
# x86_64, riscv64, loongarch64
|
||
# !!!!!!!如果不同时调整这里以及vscode的settings.json,那么自动补全和检查将会失效
|
||
export ARCH?=x86_64
|
||
endif
|
||
|
||
ifeq ($(EMULATOR), )
|
||
export EMULATOR=__NO_EMULATION__
|
||
endif
|
||
|
||
|
||
export DADK?=$(shell which dadk)
|