diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-14 00:35:44 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-14 01:52:54 -0800 |
commit | 51858e5d46ed152fd61178e7014dcb02c6c7c08a (patch) | |
tree | f1598c4ea882c9660aa119a89cad10b880225718 /test_layers | |
parent | 730e6894671c2dbaa37fc7caaa376ccf77b0fc85 (diff) | |
download | mu-51858e5d46ed152fd61178e7014dcb02c6c7c08a.tar.gz |
5887 - reorganize library
Layers 0-89 are used in self-hosting SubX. Layers 90-99 are not needed for self-hosting SubX, and therefore could use transitional levels of syntax sugar. Layers 100 and up use all SubX syntax sugar.
Diffstat (limited to 'test_layers')
-rwxr-xr-x | test_layers | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test_layers b/test_layers index 568a0f21..0f7c736d 100755 --- a/test_layers +++ b/test_layers @@ -17,8 +17,8 @@ done ./clean ./build # build optimized since we'll be running it repeatedly below -# add SubX files one at a time -for f in [0-9]*.subx +# add pure-SubX files (without syntax sugar) one at a time +for f in 0[0-8]*.subx do echo "=== $f" ./bootstrap translate init.linux $(tools/enumerate --until $f |grep '\.subx$') -o a.elf |