From 7724efa41bf3b4f329924ed30bd0868e5d99a88b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 20 Oct 2021 23:34:10 -0400 Subject: [PATCH] Add loading/saving of wavetables. --- compile.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compile.mk b/compile.mk index 73c38aa1..4c2e95d3 100644 --- a/compile.mk +++ b/compile.mk @@ -19,6 +19,8 @@ FLAGS += -O3 -march=nocona -funsafe-math-optimizations FLAGS += -Wall -Wextra -Wno-unused-parameter # C++ standard CXXFLAGS += -std=c++11 +# C standard +CFLAGS += -std=c11 # Architecture-independent flags ifdef ARCH_LIN