1 | # Vim
|
2 | *.swp
|
3 |
|
4 | # Emacs temp files
|
5 | *~
|
6 |
|
7 | # Python
|
8 | *.pyc
|
9 | __pycache__
|
10 | .mypy_cache/
|
11 | # Python build support
|
12 | build/temp.*
|
13 |
|
14 | # R
|
15 | .RData
|
16 | .Rhistory
|
17 | Rplots.pdf
|
18 |
|
19 | # Ninja
|
20 | build.ninja
|
21 | .ninja_*
|
22 |
|
23 | # GDB
|
24 | .gdbinit
|
25 |
|
26 | tags
|
27 | .vagrant
|
28 |
|
29 | # Our own temp dirs
|
30 | _bin/
|
31 | _build/
|
32 | _chroot/
|
33 | _devbuild/
|
34 | _gen
|
35 | _release/
|
36 | _soil-jobs/
|
37 | _test/
|
38 | _tmp/
|
39 | !opy/_regtest/src/_devbuild/
|
40 |
|
41 | # TODO: should get rid of these in favor of wedges
|
42 | _cache/
|
43 | _deps/
|
44 |
|
45 | # Our Python extensions. We need these at the top level to statically link
|
46 | # "import libc" in the "OVM tarball".
|
47 | fanos.so
|
48 | fastfunc.so
|
49 | fastlex.so
|
50 | libc.so
|
51 | line_input.so
|
52 | posix_.so
|
53 | yajl.so
|
54 |
|
55 | # my own stuff
|
56 | local.sh
|
57 | NOTES*.txt
|
58 | TODO*.txt
|
59 | Z.txt
|