mps VS lone

Compare mps vs lone and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
mps lone
8 7
539 296
1.5% 1.0%
6.9 9.7
2 months ago 21 days ago
C C
GNU General Public License v3.0 or later GNU Affero General Public License v3.0
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.

mps

Posts with mentions or reviews of mps. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-21.
  • Boehm Garbage Collector
    9 projects | news.ycombinator.com | 21 Jan 2024
    I have a library which has an extremely slow free, around 2m for large files, because of unnaturally scattered allocation patterns, but this old conservative GC didn't help at all. It was about 40% slower with libgc. mimalloc was a bit better. Best would be a properly fast GC, like mps https://github.com/Ravenbrook/mps, but this would be too much work.
  • Ask HN: Best compiler/interpreter books for hacking on Scheme?
    2 projects | news.ycombinator.com | 19 Jul 2023
    The first thing you should look at is MPS (see https://github.com/Ravenbrook/mps and https://www.ravenbrook.com/project/mps/). It's open source, professionally maintained and very powerful, and it was used e.g. in Dylan and LispWorks.
  • Memory Pool System is a flexible and adaptable memory manager
    1 project | /r/hypeurls | 17 Dec 2022
    1 project | news.ycombinator.com | 17 Dec 2022
  • Mmtk: Memory Management Toolkit
    2 projects | news.ycombinator.com | 14 Dec 2022
    I wonder how the MMTK compares to the venerable Ravenbrook MPS https://www.ravenbrook.com/project/mps/ which originated in Harlequin’s programming language implementations, particularly Dylan.
  • Garbage Collection with LLVM
    3 projects | /r/ProgrammingLanguages | 24 Sep 2022
    I am trying to implement garbage collection for my language because I want memory management for arrays/lists and strings. I am looking through LLVM's garbage collection page but the documentation isn't great. Are there any other resources that offer more concrete steps to implement garbage collection? Would it be wise to circumvent LLVM all together for garbage collection and only use something like the Memory Pool System? Thanks!
  • Memory Management Reference
    3 projects | news.ycombinator.com | 12 Jul 2022
    This post seems related to the authors of MPS (1) that seems to be a general garbage-collector to use with various languages.

    Many GC'd languages really didn't bother with stack-allocating variable-size entities, and regardless of if they did then _precicely_ scanning the stack would be complicated without compiler help.

    If the compiler doesn't leave any info to the GC, then it can't know if it's scanning a pointer or a float and if your GC strategy relies on compacting memory (ie moving objects) then trying to guess between a float or a pointer can become fatal.

    (1) https://github.com/Ravenbrook/mps

lone

Posts with mentions or reviews of lone. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-11.
  • How to Write a (Lisp) Interpreter (In Python)
    18 projects | news.ycombinator.com | 11 Mar 2024
    I made something somewhat close to that: a freestanding lisp. It targets the Linux kernel directly. No libc.

    https://github.com/lone-lang/lone

  • Boehm Garbage Collector
    9 projects | news.ycombinator.com | 21 Jan 2024
    > register scanning isn't portable

    Certainly not but it wasn't particularly hard to implement either. I just wrote some inline assembly for every architecture. Here's my programming language's x86_64 and aarch64 implementations:

    https://github.com/lone-lang/lone/blob/master/architecture/x...

    https://github.com/lone-lang/lone/blob/master/architecture/a...

  • Show HN: Self-contained Linux apps in Lisp
    1 project | news.ycombinator.com | 25 Nov 2023
    Not too long ago, a project of mine was shared here on HN.

    https://news.ycombinator.com/item?id=38126052

    In that thread I wrote:

    > I have this vision in my mind: embedding lone modules into sections of the lone ELF and shipping it out. Zero dependencies, self-contained.

    I've been working on that since that day. Proud to say I've gotten it to work and thought I'd make it the subject of my first Show HN. Some free software projects gained features along the way too.

    The link is to an article with a proper demonstration, technical details and what happened in the past few weeks.

    The complete repository itself can be found here:

    https://github.com/lone-lang/lone

    I've completely reorganized it since the last thread. Would be very happy if you guys tried it out.

  • A standalone zero-dependency Lisp for Linux
    6 projects | news.ycombinator.com | 3 Nov 2023
  • Decoded: GNU Coreutils
    5 projects | news.ycombinator.com | 8 Sep 2023
    To test my programming language. It's a freestanding lisp interpreter that doesn't link to libc. I wrote the code that handles the environment variables and in order to test it I needed full control over the program's inputs including its environment. The env utility provides this control by emptying the environment and setting only the variables I specify, solving 90% of the problem. Only thing I still can't control is argv[0]. With this new feature upstreamed, my test suite will be complete.

    Here's the code if you'd like to take a look:

    https://github.com/lone-lang/lone#testing

    https://github.com/lone-lang/lone/blob/master/scripts/test.b...

  • Writing Small CLI Programs in Common Lisp (2021)
    5 projects | news.ycombinator.com | 5 Sep 2023
    > only to be confronted with the notorious 'incompatible glibc version error'. It's super annoying.

    I started making my own freestanding Linux Lisp because of this exact issue. It's nowhere near as performant as something like SBCL but it's small and once compiled has no dependencies and will literally run on any Linux.

    https://github.com/lone-lang/lone

    I'm taking a break from this project but I plan to add a feature where I can put a Lisp script into the ELF itself so I can just copy it with the scripts included.

  • The 90s Developer Starter Pack
    4 projects | news.ycombinator.com | 9 Jul 2023
    The kernel just puts the data contiguously on the stack. Obtaining pointers to them can seem somewhat magical if you're writing a nolibc program but I wouldn't call it horrible.

    I implemented it for my programming language with some rather simple assembly code:

    https://github.com/lone-lang/lone/blob/master/arch/x86_64.c#...

    https://github.com/lone-lang/lone/blob/master/arch/aarch64.c...

What are some alternatives?

When comparing mps and lone you can also consider the following projects:

mmtk-core - Memory Management ToolKit

mxe - MXE (M cross environment)

c - Visual Studio Code C/C++ development

ohrrpgce - Official Hamster Republic RPG Construction Engine (mirror of SVN repository)

mark-sweep - A simple mark-sweep garbage collector in C

CIEL - CIEL Is an Extended Lisp. Scripting with batteries included.

dotfiles - config info

freebsd-src - The FreeBSD src tree publish-only repository. Experimenting with 'simple' pull requests....

janet-sh - Shorthand shell like functions for janet.

liblinux - Linux system calls.

coreutils - upstream mirror

src - Read-only git conversion of OpenBSD's official CVS src repository. Pull requests not accepted - send diffs to the tech@ mailing list.