diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-09-14 01:42:29 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-09-14 01:45:55 -0700 |
commit | 46bb1d3157f9ad575c83a4bfa1e32b0d21bc8546 (patch) | |
tree | 28918f653d7cf970d33d5592047ef663289aca40 /build | |
parent | ded2b24ce28f4a9df75ce40117f0f06f09574369 (diff) | |
download | mu-46bb1d3157f9ad575c83a4bfa1e32b0d21bc8546.tar.gz |
5650 - support a second OS: soso
https://github.com/ozkl/soso + Much smaller than Linux; builds instantly + Supports graphics - No network support - Doesn't work on a cloud server (yet?)
Diffstat (limited to 'build')
-rwxr-xr-x | build | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/build b/build index be481d83..d65c4dc4 100755 --- a/build +++ b/build @@ -115,35 +115,37 @@ then # Assumption: SubX programs don't need to be retranslated every time we # rebuild the C++ bootstrap. + OS=${OS:-linux} + # simple example programs for n in `seq 1 12` do - older_than examples/ex$n 049init.linux examples/ex$n.subx && { - ./subx_bin translate 049init.linux examples/ex$n.subx -o examples/ex$n + older_than examples/ex$n init.$OS examples/ex$n.subx && { + ./subx_bin translate init.$OS examples/ex$n.subx -o examples/ex$n } done # simple apps that use the standard library for app in factorial crenshaw2-1 crenshaw2-1b handle do - older_than apps/$app 049init.linux [0-9]*.subx && apps/$app.subx { - ./subx_bin translate 049init.linux [0-9]*.subx apps/$app.subx -o apps/$app + older_than apps/$app init.$OS [0-9]*.subx apps/$app.subx && { + ./subx_bin translate init.$OS [0-9]*.subx apps/$app.subx -o apps/$app } done # self-hosting translator for phase in hex survey pack assort dquotes tests do - older_than apps/$phase 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx && { - ./subx_bin translate 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase + older_than apps/$phase init.$OS [0-9]*.subx apps/subx-common.subx apps/$phase.subx && { + ./subx_bin translate init.$OS [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase } done # higher-level syntax for phase in sigils do - older_than apps/$phase 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx && { - ./subx_bin translate 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase + older_than apps/$phase init.$OS [0-9]*.subx apps/subx-common.subx apps/$phase.subx && { + ./subx_bin translate init.$OS [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase } done |