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