Update.
isspam build / build (push) Failing after 2m27s

This commit is contained in:
2025-03-20 15:27:02 +01:00
parent 89f3345746
commit 70bac99083
5 changed files with 140 additions and 8 deletions
+4 -5
View File
@@ -1,20 +1,20 @@
CC = gcc
CFLAGS = -Ofast
all: build run valgrind build_risspam run_risspam
all: build run valgrind build_risspam run_risspam build_cpp
build:
@echo "Compiling retoor_c project.".
@# removed -pedantic flag because it doesn't accept ' for formatting numbers
@# using printf
@$(CC) $(CFLAGS) retoor_c/isspam.c -o isspam
build_cpp:
@echo "Compiling C++ version of isspam."
@g++ -Ofast retoor_c/isspam.cpp -o isspam_cpp
build_risspam:
@echo "Compiling 12bitfloat_risspam project."
cd 12bitfloat_rust/risspam && cargo run --release && cp target/release/risspam ../../
run: run_spam wl run_not_spam
run_risspam: run_spam_risspam run_not_spam_risspam
@@ -36,7 +36,6 @@ run_spam_risspam:
run_not_spam_risspam:
@./risspam ./not_spam/*.txt
valgrind: build
valgrind ./isspam ./spam/*.txt