依然是一些针对Mac编译环境的适配

This commit is contained in:
liric
2022-09-15 21:19:20 +08:00
parent 499d32d17c
commit 518ce3818c
6 changed files with 10 additions and 9 deletions

View File

@ -22,8 +22,8 @@ kernel_subdirs := common driver process debug filesystem time arch exception mm
head.o: head.S
gcc -E head.S > head.s # 预处理
as $(ASFLAGS) -o head.o head.s
gcc -E head.S > _head.s # 预处理
as $(ASFLAGS) -o head.o _head.s
main.o: main.c