From 809f184e875ce012b7e75c6def2ec56aebd5cf94 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 26 May 2021 10:24:00 +0200 Subject: [PATCH] c:ladspa: Fix linking with libm Fixes #140 --- c/ladspa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/ladspa/Makefile b/c/ladspa/Makefile index ee7b64d..8571d21 100644 --- a/c/ladspa/Makefile +++ b/c/ladspa/Makefile @@ -1,3 +1,3 @@ default: $(CC) -Wall -Werror -O2 -c -fPIC ../ringbuf.c ../rnnoise/*.c module.c - $(CC) -shared -lm -Wl,--version-script=export.txt -o rnnoise_ladspa.so *.o + $(CC) -o rnnoise_ladspa.so *.o -shared -Wl,--version-script=export.txt -lm