From ee91fea993138624dce47b4c0b626a99db25f656 Mon Sep 17 00:00:00 2001 From: lawl Date: Sun, 21 Feb 2021 07:24:03 +0100 Subject: [PATCH] Use -O2 for LADSPA module --- c/ladspa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/ladspa/Makefile b/c/ladspa/Makefile index 635db04..f61aded 100644 --- a/c/ladspa/Makefile +++ b/c/ladspa/Makefile @@ -1,3 +1,3 @@ default: - $(CC) -Wall -Werror -c -fPIC ../ringbuf.c ../rnnoise/*.c module.c + $(CC) -Wall -Werror -O2 -c -fPIC ../ringbuf.c ../rnnoise/*.c module.c $(CC) -shared -Wl,--version-script=export.txt -o rnnoise_ladspa.so *.o