From 20dfdfec9fd13266866f9b1a87223812131ebcaa Mon Sep 17 00:00:00 2001 From: sofia Date: Sat, 5 Jul 2025 01:52:03 +0300 Subject: [PATCH] update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 90d6e21..743007d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,22 @@ # Reid-LLVM Attempt at re-creating Reid, this time using LLVM. +## What is currently being tested? + +Currently when testing the compiler I run `./libtest.sh fibonacci` or +`./libtest.sh arithmetic`. + +What `./libtest.sh $1` does, is it compiles and runs the rust example found with +name `$1`, which may exist in any of the two projects. The two mentioned above +are in `reid/examples`. + +All examples currently end up producing a `hello.o` and `hello.asm` file to the +root directory, which is then linked with `ldd` to produce a `main`, which is +finally executed. + +This is currently very work-in-progress and many things about this repository +change erratically. + ## Various notes in order to get this working properly This is what worked for me, might not (probably) work for you, depending on various versions of various libraries.