Przeglądaj źródła

Remove wrong flags. Specify dependencies in README file.

Luciano Dato 7 lat temu
rodzic
commit
1674055c8f
2 zmienionych plików z 5 dodań i 3 usunięć
  1. 4 1
      README.md
  2. 1 2
      static_rnnoise.sh

+ 4 - 1
README.md

@@ -4,7 +4,10 @@ A speech denoise lv2 plugin based on Xiph's RNNoise library
 
 IT DOES NOT WORK YET!!!
 
-To compile it
+You will require git gnu-make gnu-autoconf gnu-m4 gnu-libtool to be installed on your system in order to compile the static instance of RNNoise library
+For the plugin itself you'll need LV2 SDK, gnu-make, a c-compiler, git, pkg-config
+
+Commands to compile everything needed
 ```bash
   chmod +x static_rnnoise.sh
   ./static_rnnoise.sh

+ 1 - 2
static_rnnoise.sh

@@ -7,7 +7,6 @@ cd rnnoise/
 ./autogen.sh
 CFLAGS="-fvisibility=hidden -fPIC -Wl,--exclude-libs,ALL" \
 	./configure \
-  # --disable-examples --disable-doc \
-	--enable-single --enable-sse --enable-avx --disable-mpi \
+  --disable-examples --disable-doc \
 	--disable-shared --enable-static
 make -j2