about summary refs log tree commit diff stats
path: root/subx/build
Commit message (Expand)AuthorAgeFilesLines
* 3930 - experimental bytecode interpreterKartik K. Agaram2017-06-191-0/+106
2-07 15:26:05 -0800 committer Kartik Agaram <vc@akkartik.com> 2019-12-07 18:06:16 -0800 5797 - move `enumerate/` to `tools/` directory' href='/akkartik/mu/commit/tools/Readme.md?h=hlt&id=72f278ae6bb52e17dbdeac0fce41a794e8dfd0d1'>72f278ae ^
c1d596f5 ^



f821c0e2 ^

9e45cae0 ^


c1d596f5 ^
9e45cae0 ^
c1d596f5 ^


2249e605 ^











1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

                                                 







                                                                            



                               

                                                                           


                                                                          
                                                                            
                                                                      


                     











                                                                               
Run all these from the top-level `mu/` directory.

### Some tools for Mu's build process

These are built automatically.

* `enumerate`: list numeric files in current directory, optionally `--until`
  some prefix.


### Miscellaneous odds and ends

These are built lazily.

* `browse_trace`: debugging tool. See `browse_trace.readme.md` for details.

* `linkify`: inserts hyperlinks from variables to definitions in Mu's html
  sources. Hacky; just see the number of tests. Invoked by `update_html`.

* `treeshake_all`: rebuild SubX binaries without tests and unused functions.
  Hacky; just helps estimate the code needed to perform various tasks.
  ```
  tools/treeshake_all
  ```

### Notes to self: constraints on the tools/ directory
* Don't overwhelm the initial view of the project with lots of crap in the
  root directory.
* Directories go up top in the github view, so too many sub-directories are
  also overwhelming.
* Don't increase increase build time too much; everything in `tools/` shouldn't
  be automatically built.
  * stuff needed all the time is built from root directory.
* `tools/` contains many independent things; don't make it hard to see
  boundaries. Ideally just one source file per tool. If not, give related
  files similar name prefixes.