mu1 VS tup

Compare mu1 vs tup and see what are their differences.

mu1

Prototype tree-walking interpreter back when Mu was a high-level statement-oriented language, c. 2018 (by akkartik)

tup

Tup is a file-based build system. (by gittup)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
mu1 tup
3 23
2 1,139
- -
0.0 7.7
almost 5 years ago 27 days ago
HTML C
- GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

mu1

Posts with mentions or reviews of mu1. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-03.
  • Small Project Build Systems (2021)
    2 projects | news.ycombinator.com | 3 Apr 2023
    I got sick of juggling code that migrated from one category to the other, so I wrote a little script that deals with chopping up a large source file into multiple TUs before feeding them to the compiler.

    https://github.com/akkartik/mu1/blob/master/build2

    More details: https://news.ycombinator.com/item?id=33574154#33575045

  • Ask HN: Programming Without a Build System?
    15 projects | news.ycombinator.com | 12 Nov 2022
    This really speaks to me. Modern software is too hard to assemble from source. If you're shipping sources, every moving part you add increases the odds of something going wrong on other people's computers.

    It's worth having some skepticism of tools. By making some operations easy, tools encourage them. Build systems make it easy to bloat software. Package managers make it easy to bloat dependencies. This dynamic explains why Python in particular has such a terrible package management story. It's been around longer than Node or Rust, so if they seem better -- wait 10 years!

    For many of my side projects I try to minimize moving parts for anyone (usually the '1' is literally true) who tries them out. I work in Unix, and one thing I built is a portable shell script that acts like a build system while being much more transparent about what it does: https://codeberg.org/akkartik/basic-build

    When I use this script my build instructions are more verbose, but I think that's a good thing. They're more explicit for newcomers, and they also impose costs that nudge me to keep my programs minimalist.

    You can see this build system evolve to add partial builds and parallel builds in one of my projects:

    https://github.com/akkartik/mu1/blob/master/build0

    https://github.com/akkartik/mu1/blob/master/build1

    https://github.com/akkartik/mu1/blob/master/build2

    https://github.com/akkartik/mu1/blob/master/build3

    https://github.com/akkartik/mu1/blob/master/build4

    Each of these does the same thing for this one repo -- build it -- but adding successively more bells and whistles.

    I think providing just the most advanced version, build4, would do my users a disservice. It's also the most likely to break, where build0 is rock solid. If my builds do break for someone, they can poke around and downgrade to a simpler version.

  • 10 Years Against Division of Labor in Software
    5 projects | news.ycombinator.com | 22 Jan 2022
    Totally agreed!

    Here's a prototype from a few years ago where I tried to make this easier: https://github.com/akkartik/mu1#readme (read just the first few paragraphs)

    I still think the full answer lies in this direction.

tup

Posts with mentions or reviews of tup. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-03.
  • Show HN: Hancho – A simple and pleasant build system in ~500 lines of Python
    4 projects | news.ycombinator.com | 3 Mar 2024
    Whenever looking at one these, I think back to the obscure but interesting "tup":

    “How is it so awesome? In a typical build system, the dependency arrows go down. Although this is the way they would naturally go due to gravity, it is unfortunately also where the enemy's gate is. This makes it very inefficient and unfriendly. In tup, the arrows go up.”

    https://gittup.org/tup/

  • Mazzle – A Pipelines as Code Tool
    1 project | news.ycombinator.com | 31 Dec 2023
    Once upon a time, you could roll your own of this using `tup` which might have my favorite "how it works" in the readme:

    How is it so awesome?

    In a typical build system, the dependency arrows go down. Although this is the way they would naturally go due to gravity, it is unfortunately also where the enemy's gate is. This makes it very inefficient and unfriendly. In tup, the arrows go up. This is obviously true because it rhymes. See how the dependencies differ in make and tup:

    [ Make vs. Tup ]

    See the difference? The arrows go up. This makes it very fast.

    https://gittup.org/tup/

    Also has a whitepaper: https://gittup.org/tup/build_system_rules_and_algorithms.pdf

  • Using LD_PRELOAD to cheat, inject features and investigate programs
    6 projects | news.ycombinator.com | 8 Sep 2023
  • Mk: A Successor to Make [pdf]
    5 projects | news.ycombinator.com | 16 Jul 2023
  • What should I use to take notes in college?
    13 projects | /r/archlinux | 23 Jun 2023
    Ten years ago, I used reStructuredText and its support for LaTeX math and syntax highlighting. I used tup (tup monitor -a -f) to take care of running rst2html on save.
  • Knit: Making a Better Make
    6 projects | news.ycombinator.com | 8 Apr 2023
  • Buck2: Our open source build system
    3 projects | /r/cpp | 6 Apr 2023
    I might be showing my ignorance here, but this just sounds like Tup? https://gittup.org/tup/
  • Small Project Build Systems (2021)
    2 projects | news.ycombinator.com | 3 Apr 2023
    I agree. While I like the idea of tup (https://gittup.org/tup/ -- the first "forward" build system I remember hearing of), writing a makefile is easy enough that thinking about the problem upside-down doesn't offer a compelling reason to switch.

    Ptrace is one option for tracing dependencies, but it comes with a performance hit. A low-level alternative would be ftrace (https://lwn.net/Articles/608497/) or dtrace (https://en.wikipedia.org/wiki/DTrace).

    Tup uses LD_PRELOAD (or equivalent) to intercept calls to C file i/o functions. On OSX it looks DYLD_INSERT_LIBRARIES would be the equivalent.

  • Why Use Make
    10 projects | news.ycombinator.com | 11 Jan 2023
    * order-only prerequisites - X must happen before Y if it's happening but a change in X doesn't trigger Y

    This is just a small selection and there are missing things (like how to handle rules that affect multiple targets).

    It's all horrible and complex because like a lot of languages there's a manual listing the features but not much in the way of motivations for how or why you'd use them so you have to find that out by painful experience.

    It's also very difficult to address the warts and problems in (GNU) make because it's so critical to the build systems of so many packages that any breaking change could end up being a disaster for 1000s of packages used in your favorite linux distribution or even bits of Android and so on.

    So it's in a very constrained situation BECAUSE of it's "popularity".

    Make is also not a good way to logically describe your build/work - something like Meson would be better - where you can describe on the one hand what a "program" model was as a kind of class or interface and on the other an implementation of the many nasty operating system specific details of how to build an item of that class or type.

    Make has so many complex possible ways of operating (sometimes not all needed) that it can be hard to think about.

    The things that Make can do end up slowing it down as a parser such that for large builds the time to parse the makefile becomes significant.

    Make uses a dependency tree - when builds get large one starts to want an Inverted Dependency Tree. i.e. instead of working out what the aim of the build is and therefore what subcomponents need to be checked for changes we start with what changed and that gives us a list of actions that have to be taken. This sidesteps parsing of a huge makefile with a lot of build information in it that is mostly not relevant at all to the things that have changed. TUP is the first tool I know about that used this approach and having been burned hard by make and ninja when it comes to parsing huge makefiles (ninja is better but still slow) I think TUP's answer is the best https://gittup.org/tup/

  • Content based change detection with Make
    4 projects | news.ycombinator.com | 20 Sep 2022
    You might enjoy Tup[1] if you've not checked it out before.

    [1]: https://gittup.org/tup/

What are some alternatives?

When comparing mu1 and tup you can also consider the following projects:

iceberg - Twitter hit an iceberg, let's replace the ship by Thanksgiving (Nov 24, 2022)

please - High-performance extensible build system for reproducible multi-language builds.

create-react-app-zero - All of Create React App, none of the dependencies

Taskfile - Repository for the Taskfile template.

WikidPad - WikidPad is a single user desktop wiki

magma-nvim - Interact with Jupyter from NeoVim.

Odin - Odin Programming Language

just - 🤖 Just a command runner

pyenv-virtualenv - a pyenv plugin to manage virtualenv (a.k.a. python-virtualenv)

gnumake-windows - Instructions for building gnumake.exe as a native windows application

llvm-mingw - An LLVM/Clang/LLD based mingw-w64 toolchain

doit - task management & automation tool