From 1076bb953baaf5b0dca8f762a51fbfc4fb0ef43c Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Thu, 12 Jun 2025 12:41:19 +0200 Subject: [PATCH] replaced deprecated -Ofast with -O3 -ffast-math --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a41d32b..625e2e0 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CXXFLAGS = -std=c++17 -W -Wall -Ofast -fno-exceptions -fno-rtti -I../dsp -I../code +CXXFLAGS = -std=c++17 -W -Wall -O3 -ffast-math -fno-exceptions -fno-rtti -I../dsp -I../code CXX = clang++ -stdlib=libc++ -march=native #CXX = g++ -march=native