From 74c4a4763fc6294c2185faa4fb6f2a6df30bc5dd Mon Sep 17 00:00:00 2001 From: Oskar Date: Tue, 10 Sep 2024 16:41:15 +0200 Subject: changed some things to see if i can make this C code compile with c++, there is most definitely a lot of bugs here still --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 161bd9e..3084c5f 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ -CC=gcc -CFLAGS_TESTBIN=-O0 -Wfatal-errors -Wall -Werror -Wextra -g3 -fsanitize=address -fsanitize=leak -Wpedantic -Wformat=2 -Wshadow -Wformat-truncation=2 -Wformat-overflow -fno-common -std=c99 -CFLAGS=-O3 -flto -march=native -DNDEBUG -fomit-frame-pointer -s -static -std=c99 +CC=g++ +CFLAGS_TESTBIN=-O0 -Wfatal-errors -Wall -Werror -Wextra -g3 -fsanitize=address -fsanitize=leak -Wpedantic -Wformat=2 -Wshadow -Wformat-truncation=2 -Wformat-overflow -fno-common -std=c++20 +CFLAGS=-O3 -flto -march=native -DNDEBUG -fomit-frame-pointer -s -static -std=c++20 TARGET=tsr TESTTARGET=tsr-TESTING SP_TESTTARGET=tsr-SP INSTALL_DIRECTORY=/usr/local/bin MAKEFLAGS += -SRCS=trashsys.c -SRCS_SP=trashsys_small_paths.c +SRCS=trashsys.cc +SRCS_SP=trashsys_small_paths.cc #P_MAX_SIZE="47" all: release -- cgit v1.2.3