From 957da9056c36a5eea15c6058701f7465b31f64a8 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 30 Mar 2025 22:36:53 +0300 Subject: WIP: rewrite C++ backend to be C + C allows for a bit more control, and we can manually handle closure contexts. For example `examples/fib.fwd` now works for effectively any `n`, pretty cool. + Fairly slow Fibonacci, I must admit. Initial profiling indicates it's mainly due to branch mispredictions, but I'll have to look into this a bit deeper. + The code is a bit hacked together, for now I'm more interested in getting things working, I'll worry about making things pretty later. + For testing, there's also initial support for modules, just so I can print stuff to the terminal + This commit is way too big, lol --- scripts/makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts/makefile') diff --git a/scripts/makefile b/scripts/makefile index 11229bd..ae42506 100644 --- a/scripts/makefile +++ b/scripts/makefile @@ -42,7 +42,9 @@ COMPILER != [ -n "$(CROSS_COMPILE)" ] \ || echo $(CC) -OBFLAGS := -g +# -rdynamic is apparently platform-dependent, not sure if I want to rely on it +# but good enough for now +OBFLAGS := -g -rdynamic WARNFLAGS := -Wall -Wextra COMPILE_FLAGS := $(CFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(OBFLAGS) $(ASSERTFLAGS) \ -- cgit v1.2.3