Browse Source

Use github mirror for rnnoise

Luciano Dato 7 years ago
parent
commit
21d810fc31
1 changed files with 3 additions and 4 deletions
  1. 3 4
      static_rnnoise.sh

+ 3 - 4
static_rnnoise.sh

@@ -2,13 +2,12 @@
 if [ -d "rnnoise" ]; then
   rm -rf ./rnnoise
 fi
-git clone https://git.xiph.org/rnnoise.git
+git clone https://github.com/xiph/rnnoise.git
 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-shared --enable-static
-  -enable-sse --enable-avx 
+	--enable-single --enable-sse --enable-avx --disable-mpi \
+	--disable-shared --enable-static
 make -j2