Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
xv6-public
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
问题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
银宸时代
OS Lab Group
奖励实验
xv6-public
提交
76f09d7d
提交
76f09d7d
8月 28, 2007
创建
作者:
rsc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
clean up Makefile; add wc
上级
a1af3665
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
108 行增加
和
77 行删除
+108
-77
Makefile
Makefile
+54
-77
wc.c
wc.c
+54
-0
没有找到文件。
Makefile
浏览文件 @
76f09d7d
OBJS
=
\
OBJS
=
\
8253pit.o
\
bio.o
\
console.o
\
console.o
\
exec.o
\
file.o
\
file.o
\
fs.o
\
ide.o
\
ide.o
\
ioapic.o
\
kalloc.o
\
kalloc.o
\
kbd.o
\
lapic.o
\
lapic.o
\
ioapic.o
\
main.o
\
main.o
\
mp.o
\
mp.o
\
picirq.o
\
picirq.o
\
...
@@ -19,32 +24,27 @@ OBJS = \
...
@@ -19,32 +24,27 @@ OBJS = \
trapasm.o
\
trapasm.o
\
trap.o
\
trap.o
\
vectors.o
\
vectors.o
\
bio.o
\
fs.o
\
exec.o
\
8253pit.o
\
kbd.o
\
# Cross-compiling (e.g., on Mac OS X)
# Cross-compiling (e.g., on Mac OS X)
#
TOOLPREFIX = i386-jos-elf-
TOOLPREFIX
=
i386-jos-elf-
# Using native tools (e.g., on X86 Linux)
# Using native tools (e.g., on X86 Linux)
TOOLPREFIX
=
#
TOOLPREFIX =
CC
=
$(TOOLPREFIX)
gcc
CC
=
$(TOOLPREFIX)
gcc
AS
=
$(TOOLPREFIX)
gas
LD
=
$(TOOLPREFIX)
ld
LD
=
$(TOOLPREFIX)
ld
OBJCOPY
=
$(TOOLPREFIX)
objcopy
OBJCOPY
=
$(TOOLPREFIX)
objcopy
OBJDUMP
=
$(TOOLPREFIX)
objdump
OBJDUMP
=
$(TOOLPREFIX)
objdump
# On newer gcc you may need to add -fno-stack-protector to $(CFLAGS)
CFLAGS
=
-fno-builtin
-O2
-Wall
-MD
-ggdb
CFLAGS
=
-fno-builtin
-O2
-Wall
-MD
-ggdb
-fno-stack-protector
CFLAGS
+=
$(
shell
$(CC)
-fno-stack-protector
-E
-x
c /dev/null
>
/dev/null 2>&1
&&
echo
-fno-stack-protector
)
AS
=
$(TOOLPREFIX)
gas
xv6.img
:
bootblock kernel fs.img
xv6.img
:
bootblock kernel fs.img
dd
if
=
/dev/zero
of
=
xv6.img
count
=
10000
dd
if
=
/dev/zero
of
=
xv6.img
count
=
10000
dd
if
=
bootblock
of
=
xv6.img
conv
=
notrunc
dd
if
=
bootblock
of
=
xv6.img
conv
=
notrunc
dd
if
=
kernel
of
=
xv6.img
seek
=
1
conv
=
notrunc
dd
if
=
kernel
of
=
xv6.img
seek
=
1
conv
=
notrunc
bootblock
:
bootasm.S bootmain.c
bootblock
:
bootasm.S bootmain.c
$(CC)
-O
-nostdinc
-I
.
-c
bootmain.c
$(CC)
-O
-nostdinc
-I
.
-c
bootmain.c
$(CC)
-nostdinc
-I
.
-c
bootasm.S
$(CC)
-nostdinc
-I
.
-c
bootasm.S
$(LD)
-N
-e
start
-Ttext
0x7C00
-o
bootblock.o bootasm.o bootmain.o
$(LD)
-N
-e
start
-Ttext
0x7C00
-o
bootblock.o bootasm.o bootmain.o
...
@@ -52,71 +52,35 @@ bootblock : bootasm.S bootmain.c
...
@@ -52,71 +52,35 @@ bootblock : bootasm.S bootmain.c
$(OBJCOPY)
-S
-O
binary bootblock.o bootblock
$(OBJCOPY)
-S
-O
binary bootblock.o bootblock
./sign.pl bootblock
./sign.pl bootblock
kernel
:
$(OBJS) bootother.S initcode
.S
bootother
:
bootother
.S
$(CC)
-nostdinc
-I
.
-c
bootother
.S
$(CC)
-nostdinc
-I
.
-c
$*
.S
$(LD)
-N
-e
start
-Ttext
0x7000
-o
bootother.out bootother.o
$(LD)
-N
-e
start
-Ttext
0x7000
-o
bootother.out bootother.o
$(OBJCOPY)
-S
-O
binary bootother.out bootother
$(OBJCOPY)
-S
-O
binary bootother.out bootother
$(OBJDUMP)
-S
bootother.o
>
bootother.asm
$(OBJDUMP)
-S
bootother.o
>
bootother.asm
$(CC)
-nostdinc
-I
.
-c
initcode.S
initcode
:
initcode.S
$(CC)
-nostdinc
-I
.
-c
$*
.S
$(LD)
-N
-e
start
-Ttext
0
-o
initcode.out initcode.o
$(LD)
-N
-e
start
-Ttext
0
-o
initcode.out initcode.o
$(OBJCOPY)
-S
-O
binary initcode.out initcode
$(OBJCOPY)
-S
-O
binary initcode.out initcode
$(OBJDUMP)
-S
initcode.o
>
initcode.asm
$(OBJDUMP)
-S
initcode.o
>
initcode.asm
kernel
:
$(OBJS) bootother initcode
$(LD)
-Ttext
0x100000
-e
main
-o
kernel
$(OBJS)
-b
binary initcode bootother
$(LD)
-Ttext
0x100000
-e
main
-o
kernel
$(OBJS)
-b
binary initcode bootother
$(OBJDUMP)
-S
kernel
>
kernel.asm
$(OBJDUMP)
-S
kernel
>
kernel.asm
$(OBJDUMP)
-t
kernel |
awk
'/SYMBOL TABLE/ { go=1; next } go {print $$1, $$NF}'
>
kernel.sym
$(OBJDUMP)
-t
kernel |
sed
'1,/SYMBOL TABLE/d; s/ .* //'
>
kernel.sym
tags
:
$(OBJS) bootother.S _init
tags
:
$(OBJS) bootother.S _init
etags
*
.S
*
.c
etags
*
.S
*
.c
vectors.S
:
vectors.pl
vectors.S
:
vectors.pl
perl vectors.pl
>
vectors.S
perl vectors.pl
>
vectors.S
ULIB
=
ulib.o usys.o printf.o umalloc.o
ULIB
=
ulib.o usys.o printf.o umalloc.o
_usertests
:
usertests.o $(ULIB)
_%
:
%.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_usertests usertests.o
$(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
$@
$^
$(OBJDUMP)
-S
_usertests
>
usertests.asm
$(OBJDUMP)
-S
$@
>
$*
.asm
$(OBJDUMP)
-t
$@
|
sed
'1,/SYMBOL TABLE/d; s/ .* //'
>
$*
.sym
_echo
:
echo.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_echo echo.o
$(ULIB)
$(OBJDUMP)
-S
_echo
>
echo.asm
_cat
:
cat.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_cat cat.o
$(ULIB)
$(OBJDUMP)
-S
_cat
>
cat.asm
_init
:
init.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_init init.o
$(ULIB)
$(OBJDUMP)
-S
_init
>
init.asm
$(OBJDUMP)
-t
_init |
awk
'/SYMBOL TABLE/ { go=1; next } go {print $$1, $$NF}'
>
init.sym
_kill
:
kill.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_kill kill.o
$(ULIB)
$(OBJDUMP)
-S
_kill
>
kill.asm
_ls
:
ls.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_ls ls.o
$(ULIB)
$(OBJDUMP)
-S
_ls
>
ls.asm
_mkdir
:
mkdir.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_mkdir mkdir.o
$(ULIB)
$(OBJDUMP)
-S
_mkdir
>
mkdir.asm
_rm
:
rm.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_rm rm.o
$(ULIB)
$(OBJDUMP)
-S
_rm
>
rm.asm
_ln
:
ln.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_ln ln.o
$(ULIB)
$(OBJDUMP)
-S
_ln
>
ln.asm
_sh
:
sh.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_sh sh.o
$(ULIB)
$(OBJDUMP)
-S
_sh
>
sh.asm
_zombie
:
zombie.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_zombie zombie.o
$(ULIB)
$(OBJDUMP)
-S
_zombie
>
zombie.asm
_forktest
:
forktest.o $(ULIB)
_forktest
:
forktest.o $(ULIB)
# forktest has less library code linked in - needs to be small
# forktest has less library code linked in - needs to be small
...
@@ -124,18 +88,31 @@ _forktest: forktest.o $(ULIB)
...
@@ -124,18 +88,31 @@ _forktest: forktest.o $(ULIB)
$(LD)
-N
-e
main
-Ttext
0
-o
_forktest forktest.o ulib.o usys.o
$(LD)
-N
-e
main
-Ttext
0
-o
_forktest forktest.o ulib.o usys.o
$(OBJDUMP)
-S
_forktest
>
forktest.asm
$(OBJDUMP)
-S
_forktest
>
forktest.asm
mkfs
:
mkfs.c fs.h
mkfs
:
mkfs.c fs.h
cc
-o
mkfs mkfs.c
gcc
-Wall
-o
mkfs mkfs.c
UPROGS
=
_usertests _echo _cat _init _kill _ln _ls _mkdir _rm _sh _zombie _forktest
UPROGS
=
\
fs.img
:
mkfs README $(UPROGS)
_cat
\
_forktest
\
_init
\
_kill
\
_ln
\
_ls
\
_mkdir
\
_rm
\
_sh
\
_usertests
\
_wc
\
_zombie
\
fs.img
:
mkfs README $(UPROGS)
./mkfs fs.img README
$(UPROGS)
./mkfs fs.img README
$(UPROGS)
-include
*.d
-include
*.d
clean
:
clean
:
rm
-f
*
.ps
*
.tex
*
.dvi
*
.idx
*
.aux
*
.log
*
.ind
*
.ilg
\
rm
-f
*
.ps
*
.tex
*
.dvi
*
.idx
*
.aux
*
.log
*
.ind
*
.ilg
\
*
.o
*
.d
*
.asm vectors.S parport.out
\
*
.o
*
.d
*
.asm
*
.sym
vectors.S parport.out
\
bootblock kernel xv6.img fs.img mkfs
\
bootblock kernel xv6.img fs.img mkfs
\
$(UPROGS)
$(UPROGS)
...
@@ -153,10 +130,10 @@ PRINT = \
...
@@ -153,10 +130,10 @@ PRINT = \
console.c
\
console.c
\
string.c
\
string.c
\
xv6.pdf
:
$(PRINT)
xv6.pdf
:
$(PRINT)
./runoff
./runoff
print
:
xv6.pdf
print
:
xv6.pdf
# run in emulators
# run in emulators
...
@@ -164,7 +141,7 @@ bochs : fs.img xv6.img
...
@@ -164,7 +141,7 @@ bochs : fs.img xv6.img
if
[
!
-e
.bochsrc
]
;
then
ln
-s
dot-bochsrc .bochsrc
;
fi
if
[
!
-e
.bochsrc
]
;
then
ln
-s
dot-bochsrc .bochsrc
;
fi
bochs
-q
bochs
-q
qemu
:
fs.img xv6.img
qemu
:
fs.img xv6.img
qemu
-parallel
stdio
-hdb
fs.img xv6.img
qemu
-parallel
stdio
-hdb
fs.img xv6.img
# CUT HERE
# CUT HERE
...
@@ -172,7 +149,7 @@ qemu : fs.img xv6.img
...
@@ -172,7 +149,7 @@ qemu : fs.img xv6.img
# after running make dist, probably want to
# after running make dist, probably want to
# rename it to rev0 or rev1 or so on and then
# rename it to rev0 or rev1 or so on and then
# check in that version.
# check in that version.
dist
:
dist
:
rm
-rf
dist
rm
-rf
dist
mkdir
dist
mkdir
dist
for
i
in
*
.c
*
.h
*
.S
;
\
for
i
in
*
.c
*
.h
*
.S
;
\
...
@@ -182,7 +159,7 @@ dist :
...
@@ -182,7 +159,7 @@ dist :
sed
'/CUT HERE/,$$d'
Makefile
>
dist/Makefile
sed
'/CUT HERE/,$$d'
Makefile
>
dist/Makefile
cp
README dot-bochsrc
*
.pl toc.
*
runoff runoff1 runoff.list dist
cp
README dot-bochsrc
*
.pl toc.
*
runoff runoff1 runoff.list dist
dist-test
:
dist-test
:
rm
-rf
dist-test
rm
-rf
dist-test
mkdir
dist-test
mkdir
dist-test
cp
dist/
*
dist-test
cp
dist/
*
dist-test
...
@@ -190,11 +167,11 @@ dist-test :
...
@@ -190,11 +167,11 @@ dist-test :
cd
dist-test
;
../m bochs
||
true
cd
dist-test
;
../m bochs
||
true
cd
dist-test
;
../m qemu
cd
dist-test
;
../m qemu
# update this rule (change rev
0
) when it is time to
# update this rule (change rev
1
) when it is time to
# make a new revision.
# make a new revision.
tar
:
tar
:
rm
-rf
/tmp/xv6
rm
-rf
/tmp/xv6
mkdir
-p
/tmp/xv6
mkdir
-p
/tmp/xv6
cp
dist/
*
/tmp/xv6
cp
dist/
*
/tmp/xv6
(
cd
/tmp
;
tar
cf - xv6
)
|
gzip
>
xv6-rev
0
.tar.gz
(
cd
/tmp
;
tar
cf - xv6
)
|
gzip
>
xv6-rev
1
.tar.gz
wc.c
0 → 100644
浏览文件 @
76f09d7d
#include "types.h"
#include "stat.h"
#include "user.h"
char
buf
[
512
];
void
wc
(
int
fd
,
char
*
name
)
{
int
i
,
n
;
int
l
,
w
,
c
,
inword
;
l
=
w
=
c
=
0
;
inword
=
0
;
while
((
n
=
read
(
fd
,
buf
,
sizeof
(
buf
)))
>
0
){
for
(
i
=
0
;
i
<
n
;
i
++
){
c
++
;
if
(
buf
[
i
]
==
'\n'
)
l
++
;
if
(
strchr
(
"
\r\t\n\v
"
,
buf
[
i
]))
inword
=
0
;
else
if
(
!
inword
){
w
++
;
inword
=
1
;
}
}
}
if
(
n
<
0
){
printf
(
1
,
"wc: read error
\n
"
);
exit
();
}
printf
(
1
,
"%d %d %d %s
\n
"
,
l
,
w
,
c
,
name
);
}
int
main
(
int
argc
,
char
*
argv
[])
{
int
fd
,
i
;
if
(
argc
<=
1
)
{
wc
(
0
,
""
);
exit
();
}
for
(
i
=
1
;
i
<
argc
;
i
++
){
if
((
fd
=
open
(
argv
[
i
],
0
))
<
0
){
printf
(
1
,
"cat: cannot open %s
\n
"
,
argv
[
i
]);
exit
();
}
wc
(
fd
,
argv
[
i
]);
close
(
fd
);
}
exit
();
}
编写
预览
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论