52f1b121b347b3efe35b210715ddad43c45e573b
[pintos-anon] / src / TODO
1 * Write, test join.
2
3 * Write, test user programs.
4
5 * Figure out PD/PT management API.
6   - We should document what's in mmu.h.  
7
8 * Write, test VM.
9
10 * Implement `jitter'.
11
12 * Test list, hash ADTs.
13
14 * Compile and install gdb, dbg versions.
15   - Test gdb version.
16
17 * Write "tour".
18
19 ----------------------------------------------------------------------
20
21 * Cygwin support:
22   - PE linker scripts?  Doesn't seem to support ELF ones.
23   - .S files need _ prefixes on symbols.
24
25 * Filesystem dumps should include filehdrs?
26
27 * Cross-compile notes:
28
29 cd /tmp
30 bzcat ~/binutils-2.15.tar.bz2 | tar x
31 tar xzf newlib-1.12.0.tar.gz
32 tar xzf gcc-core-3.3.2.tar.gz
33 tar xzf gdb-6.2.1.tar.gz
34
35 PATH=$PATH:/usr/class/cs140/i386/bin
36
37 cd /tmp/binutils-2.15
38 mkdir i386
39 cd i386
40 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386
41 make LDFLAGS=-lintl
42 make install
43
44 cd /tmp/gcc-core-3.3.2.tar.gz
45 mkdir i386
46 cd i386
47 ../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
48 make
49 make install
50
51 cd /tmp/gdb-6.2.1
52 mkdir i386
53 cd i386
54 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui
55 make
56 make install