mu1 VS llvm-mingw

Compare mu1 vs llvm-mingw 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)

llvm-mingw

An LLVM/Clang/LLD based mingw-w64 toolchain (by mstorsjo)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
mu1 llvm-mingw
3 15
2 1,634
- -
0.0 8.9
almost 5 years ago 4 days ago
HTML C
- GNU General Public License v3.0 or later
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.

llvm-mingw

Posts with mentions or reviews of llvm-mingw. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-14.
  • Crystal 1.11.0 Is Released
    6 projects | news.ycombinator.com | 14 Jan 2024
  • Ask HN: Who is using the D language and likes/doesn't like it? Why?
    6 projects | news.ycombinator.com | 23 Sep 2023
    > Doing Python with a C plugin, or just compiling a command line C/C++ isn't really systems programming.

    I care about a minimal set of tools in order to compile C/C++ programs. thats offered by:

    https://github.com/mstorsjo/llvm-mingw/releases

    and also MSYS2, and even the Zig C compiler. all less than 200 MB. meanwhile Visual Studio installing about 10 GB worth. If Microsoft can offer a similar experience then I am interested.

  • Clang compiler for Windows 10 gives this error
    1 project | /r/C_Programming | 2 Jul 2023
    Pick a community-supported Clang-based Mingw-w64 distribution.
  • My 24 year old HP Jornada can do things your modern iPhone still can't do
    5 projects | news.ycombinator.com | 15 Jun 2023
    > AFAIK there is no native GCC compiler for Windows

    might want to check your facts before spouting nonsense. there is, and has been for many, many years. more than one in fact:

    https://github.com/mstorsjo/llvm-mingw

    https://packages.msys2.org/base/mingw-w64-gcc

  • Release candidate: Godot 4.0 RC 5 (Yes, the pace is picking up!)
    3 projects | /r/godot | 24 Feb 2023
    MinGW is notoriously slow to link compared to MSVC, unless using llvm-mingw with the link=lld SCons option. If using MSVC, make sure to use 2022 or at least 2019 if possible – recent linkers tend to be faster than older versions.
  • Toolchain for cross-compiling DLL to windows/arm64
    1 project | /r/golang | 22 Nov 2022
    GCC doesn't support windows/arm64, but you should be able to do it with LLVM. I've never gotten it to work myself, but should be able to supply a cross toolchain: https://github.com/mstorsjo/llvm-mingw
  • Ask HN: Programming Without a Build System?
    15 projects | news.ycombinator.com | 12 Nov 2022
    Visual Studio is a bloated mess, and has been for many years. Its at least 10 times larger than other options, such as MinGW-LLVM:

    https://github.com/mstorsjo/llvm-mingw

  • Because cross-compiling binaries for Windows is easier than building natively
    15 projects | news.ycombinator.com | 18 Jun 2022
    Sadly Qt ships MinGW 8.1 which is positively ancient (released in 2018). If you're starting a new project (which you likely are if you are installing an IDE aha) there's no reason not to go for more recent compilers - msys2 has GCC12 (https://packages.msys2.org/package/mingw-w64-x86_64-gcc) and Clang 14 (https://packages.msys2.org/package/mingw-w64-x86_64-clang) which just work better overall, have much more complete C++20 support, have less bugs, better compile times (especially clang with the various PCH options that appeared in the last few versions), better static analysis, etc.

    Personally I use https://github.com/mstorsjo/llvm-mingw's releases directly which does not require MSYS but that's because I recompile all my libraries with specific options - if the MSYS libs as they are built are good for you there's no reason not to use them.

  • Some sanity for C and C++ development on Windows
    3 projects | news.ycombinator.com | 1 Jan 2022
    you can grab it here: https://github.com/mstorsjo/llvm-mingw/releases/tag/20211002
  • The Atrocities of COM win32 headers
    9 projects | news.ycombinator.com | 18 Dec 2021
    Clang (and lld) do support native TLS, and mingw-w64 does have the things that are needed. I think binutils also might have what's needed too, but AFAIK the thing that's missing is support for it in GCC.

    Actually, (upstream) Clang defaults to native TLS instead of emulated TLS. In MSYS2, Clang is overridden to use emulated TLS by deafult to interoperate better with GCC built code and libstdc++ though.

    The toolchain I maintain, https://github.com/mstorsjo/llvm-mingw, defaults to native TLS throughout.

What are some alternatives?

When comparing mu1 and llvm-mingw you can also consider the following projects:

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

mingw-w64 - (Unofficial) Mirror of mingw-w64-code

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

w64devkit - Portable C and C++ Development Kit for x64 (and x86) Windows

WikidPad - WikidPad is a single user desktop wiki

msys2

Odin - Odin Programming Language

cmake-init - The missing CMake project initializer

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

MSYS2-packages - Package scripts for MSYS2.

squeak.org - Squeak/Smalltalk Website

mxe - MXE (M cross environment)