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