BUUUUUNCH of shit, but added logger, more stl nonsense, improved code quaklity, squashed bugs.

This commit is contained in:
2025-05-31 16:12:31 +03:00
parent 3b1b2bfb06
commit 2a31d770ed
31 changed files with 1543 additions and 21 deletions

View File

@@ -1,4 +1,4 @@
CC = clang
all: ../build/libc+ test compile_commands.json
@@ -6,10 +6,10 @@ clean:
rm -rf test *.o compile_commands.json
test: test.o
cc -o $@ $^ -L../build -l:libc+.a -ggdb # -nostdlib++ -lsupc++
$(CC) -o $@ $^ -L../build -l:libc+.a -ggdb # -nostdlib++ -lsupc++
%.o: %.cpp
cc -c -o $@ $< -std=c++23 -I../src/include -ggdb # -nostdinc++
$(CC) -c -o $@ $< -std=c++23 -I../src/include -ggdb # -nostdinc++
../build/libc+:
$(MAKE) -C ../