Update docs.
[pintos-anon] / src / TODO
1 * Add stats.
2
3 * Write, test VM.
4
5 * Handling of read-only pages?
6
7 * Test list, hash ADTs.
8   - Finish comments for hash.[ch].
9
10 * References/bibliography.
11   - Userprog refers to [SysV-i386].
12
13 * Write "tour".
14
15 ----------------------------------------------------------------------
16
17 * Cygwin support:
18   - PE linker scripts?  Doesn't seem to support ELF ones.
19   - .S files need _ prefixes on symbols.
20
21 * Filesystem dumps should include filehdrs?
22
23 * Cross-compile notes:
24
25 cd /tmp
26 bzcat ~/binutils-2.15.tar.bz2 | tar x
27 tar xzf newlib-1.12.0.tar.gz
28 tar xzf gcc-core-3.3.2.tar.gz
29 tar xzf gdb-6.2.1.tar.gz
30
31 PATH=$PATH:/usr/class/cs140/i386/bin
32
33 cd /tmp/binutils-2.15
34 mkdir i386
35 cd i386
36 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386
37 make LDFLAGS=-lintl
38 make install
39
40 cd /tmp/gcc-core-3.3.2.tar.gz
41 mkdir i386
42 cd i386
43 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --with-gnu-as --with-as=/usr/class/cs140/i386/bin/i386-elf-as --with-gnu-ld --with-ld=/usr/class/cs140/i386/bin/i386-elf-ld --with-headers=/tmp/newlib-1.12.0/newlib/libc/include --with-newlib
44 make
45 make install
46
47 cd /tmp/gdb-6.2.1
48 mkdir i386
49 cd i386
50 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui
51 make
52 make install