about summary refs log tree commit diff stats
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* much love mainKartik K. Agaram2023-12-191-0/+5
|
* use markdown syntax for images without attributesKartik K. Agaram2023-11-261-2/+2
| | | | Sourcehut still can't handle the third :shrug:
* couple of tweaks to ReadmeKartik K. Agaram2023-08-041-2/+2
|
* more portableKartik K. Agaram2022-02-241-3/+0
| | | | https://stackoverflow.com/questions/1815329/portable-way-to-get-file-size-in-bytes-in-the-shell/1815582#1815582
* klunky attempt to support BSD statKartik Agaram2022-02-241-0/+3
| | | | Many thanks again, Wade.
* acknowledge current statusKartik K. Agaram2022-01-141-3/+13
|
* link to the Mu tourKartik K. Agaram2021-12-071-1/+3
|
* I'm going to hell for this..Kartik K. Agaram2021-11-121-1/+1
| | | | | This typo has been around since July 2019 (commit 784e17d487). I swear I've spelt the name correctly scores of times before that.
* translate_emulated has gotten _much_ slowerKartik Agaram2021-10-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I spent some time timing this command: cd ./linux/bootstrap; ./clean; popd; time ./translate_emulated apps/ex2.mu Times at a few commits this year, along with notes on what changed in the linux/ directory: 517a01c95a62a8d6227357d514dc9fff83388153 Feb 17 1:30 time ./translate_mu_baremetal_emulated baremetal/ex2.mu 71e4f3812982dba2efb471283d310224e8db363e Mar 3 1:30 time ./translate_emulated ex2.mu 2df1d1a73046a0a7b6523552b53f407651ed36df May 14 1:53 time ./translate_emulated apps/ex2.mu ff8ec9bcff7577ba923fe7868ea62ecceed55ee7 + patch May 14 2:10 -- start showing stack trace on abort 9831a8cef9cb8f412590ffa6ab9f52b8b51ab9d2 + patch May 19 2:23 8c47da082b63b6aa6aafd45e1f8f7edd4459e555 Jun 18 2:27 -- what changed in the middle here?! b625c6304eca827c04eda719fa6f7927294b80bc Jul 29 3:13 -- seemingly minor change to linux/next-word 52e3ea8a4bec791e4c2d64fb8aca9e26cdf60f25 Aug 15 4:55 ba4a3c5be70d473479e663be0400b798f88c113d Aug 22 4:57 -- one additional compiler check in linux/mu.subx 899cdcc3f3da2be04801ab79b53ec2264e8b1e4c Aug 29 5:44 5:54 975f372d67a5242d3c046712d43ec9f61a920009 Oct 31 5:22 So it's not a single commit :/ Unclear what's going on.
* .Kartik K. Agaram2021-09-211-4/+7
|
* .Kartik K. Agaram2021-09-031-1/+2
|
* .Kartik K. Agaram2021-07-161-1/+1
|
* .Kartik K. Agaram2021-07-161-2/+2
|
* .Kartik K. Agaram2021-06-271-2/+2
|
* .Kartik K. Agaram2021-06-271-16/+15
|
* .Kartik Agaram2021-06-241-1/+1
|
* .Kartik Agaram2021-06-231-1/+1
|
* make code in Readme easier to copyKartik K. Agaram2021-06-181-8/+8
| | | | Thanks Sumeet Agarwal for the suggestion.
* shell: better screenshotKartik Agaram2021-06-151-1/+1
|
* .Kartik Agaram2021-06-151-0/+7
|
* .Kartik K. Agaram2021-04-161-3/+3
|
* .Kartik Agaram2021-03-291-1/+1
|
* .Kartik K. Agaram2021-03-231-2/+2
|
* mouse support that requires pollingKartik K. Agaram2021-03-231-12/+12
|
* fix some broken linksKartik K. Agaram2021-03-141-3/+3
|
* .Kartik K. Agaram2021-03-131-2/+2
|
* some tweaks while updating mu-normieKartik Agaram2021-03-121-1/+1
|
* .Kartik K. Agaram2021-03-091-2/+0
|
* make the library reference easier to findKartik K. Agaram2021-03-091-16/+18
|
* .Kartik K. Agaram2021-03-091-10/+13
|
* 7848Kartik K. Agaram2021-03-041-2/+2
|
* 7847Kartik K. Agaram2021-03-041-2/+1
|
* 7846Kartik K. Agaram2021-03-041-1/+1
|
* 7845Kartik K. Agaram2021-03-031-0/+2
|
* 7844Kartik K. Agaram2021-03-031-7/+8
|
* 7843 - clean up README after directory reorgKartik K. Agaram2021-03-031-32/+41
|
* 7842 - new directory organizationKartik K. Agaram2021-03-031-36/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Baremetal is now the default build target and therefore has its sources at the top-level. Baremetal programs build using the phase-2 Mu toolchain that requires a Linux kernel. This phase-2 codebase which used to be at the top-level is now under the linux/ directory. Finally, the phase-2 toolchain, while self-hosting, has a way to bootstrap from a C implementation, which is now stored in linux/bootstrap. The bootstrap C implementation uses some literate programming tools that are now in linux/bootstrap/tools. So the whole thing has gotten inverted. Each directory should build one artifact and include the main sources (along with standard library). Tools used for building it are relegated to sub-directories, even though those tools are often useful in their own right, and have had lots of interesting programs written using them. A couple of things have gotten dropped in this process: - I had old ways to run on just a Linux kernel, or with a Soso kernel. No more. - I had some old tooling for running a single test at the cursor. I haven't used that lately. Maybe I'll bring it back one day. The reorg isn't done yet. Still to do: - redo documentation everywhere. All the README files, all other markdown, particularly vocabulary.md. - clean up how-to-run comments at the start of programs everywhere - rethink what to do with the html/ directory. Do we even want to keep supporting it? In spite of these shortcomings, all the scripts at the top-level, linux/ and linux/bootstrap are working. The names of the scripts also feel reasonable. This is a good milestone to take stock at.
* 7834Kartik Agaram2021-03-011-2/+3
|
* 7833Kartik Agaram2021-02-281-8/+7
|
* 7832Kartik K. Agaram2021-02-281-0/+2
|
* 7831Kartik K. Agaram2021-02-281-26/+31
|
* 7756Kartik Agaram2021-02-181-3/+6
|
* 7755Kartik Agaram2021-02-181-3/+3
|
* 7754Kartik Agaram2021-02-171-16/+23
|
* 7691Kartik Agaram2021-02-071-4/+5
|
* 7681Kartik Agaram2021-02-011-4/+3
|
* 7675 - drop Travis CIKartik Agaram2021-01-281-2/+0
|
* 7475Kartik Agaram2020-12-301-7/+7
|
* 7471Kartik Agaram2020-12-291-0/+7
|
* 7465Kartik Agaram2020-12-291-4/+3
|