免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: weiweishuo
打印 上一主题 下一主题

[其他] 在写一个OS内核,求合作者 [复制链接]

论坛徽章:
1
综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00
1 [报告]
发表于 2013-10-13 07:49 |显示全部楼层
神人也!我大一大二的时候,还不知Linux为何物!

论坛徽章:
1
综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00
2 [报告]
发表于 2013-10-14 07:30 |显示全部楼层
各种.d文件是怎么回事呢?


-bash-4.1$ make
makefile:23: kernel.d: No such file or directory
makefile:23: utils.d: No such file or directory
makefile:23: proc.d: No such file or directory
makefile:23: kbd_drv.d: No such file or directory
makefile:23: func_table.d: No such file or directory
makefile:23: disp.d: No such file or directory
makefile:23: video_drv.d: No such file or directory
makefile:23: ku_utils.d: No such file or directory
makefile:23: hs.d: No such file or directory
makefile:23: fs_ext.d: No such file or directory
makefile:23: struinfo.d: No such file or directory
makefile:23: mm.d: No such file or directory
makefile:23: fs.d: No such file or directory
makefile:23: tty.d: No such file or directory
set -e;rm -f tty.d;\
        gcc -M tty.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ tty.d: \'  this_is_a_tmp_file  > tty.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f fs.d;\
        gcc -M fs.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ fs.d: \'  this_is_a_tmp_file  > fs.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f mm.d;\
        gcc -M mm.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ mm.d: \'  this_is_a_tmp_file  > mm.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f struinfo.d;\
        gcc -M struinfo.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ struinfo.d: \'  this_is_a_tmp_file  > struinfo.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f fs_ext.d;\
        gcc -M fs_ext.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ fs_ext.d: \'  this_is_a_tmp_file  > fs_ext.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f hs.d;\
        gcc -M hs.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ hs.d: \'  this_is_a_tmp_file  > hs.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f ku_utils.d;\
        gcc -M ku_utils.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ ku_utils.d: \'  this_is_a_tmp_file  > ku_utils.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f video_drv.d;\
        gcc -M video_drv.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ video_drv.d: \'  this_is_a_tmp_file  > video_drv.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f disp.d;\
        gcc -M disp.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ disp.d: \'  this_is_a_tmp_file  > disp.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f func_table.d;\
        gcc -M func_table.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ func_table.d: \'  this_is_a_tmp_file  > func_table.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f kbd_drv.d;\
        gcc -M kbd_drv.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ kbd_drv.d: \'  this_is_a_tmp_file  > kbd_drv.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f proc.d;\
        gcc -M proc.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ proc.d: \'  this_is_a_tmp_file  > proc.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f utils.d;\
        gcc -M utils.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ utils.d: \'  this_is_a_tmp_file  > utils.d;\
        rm  -f this_is_a_tmp_file
set -e;rm -f kernel.d;\
        gcc -M kernel.c -I../include/ -I./usr/include/ > this_is_a_tmp_file;\
        sed 's\:\ kernel.d: \'  this_is_a_tmp_file  > kernel.d;\
        rm  -f this_is_a_tmp_file
nasm -o ../bin/boot.bin boot.asm
make: nasm: Command not found
make: *** [boot.bin] Error 127
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP