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