浏览代码

Remove previous script for rnnoise static building

Luciano Dato 7 年之前
父节点
当前提交
f950f16117
共有 1 个文件被更改,包括 0 次插入30 次删除
  1. 0 30
      static_rnnoise.sh

+ 0 - 30
static_rnnoise.sh

@@ -1,30 +0,0 @@
-#!/usr/bin/env bash
-
-rm -rf rnnoise || true
-git clone https://github.com/xiph/rnnoise.git
-cd rnnoise/
-./autogen.sh
-
-if [ "$(uname)" == "Darwin" ]; then
-  CFLAGS="-fvisibility=hidden -fPIC " \ 
-	./configure \
-  --disable-examples --disable-doc \
-	--disable-shared --enable-static        
-elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
-  CFLAGS="-fvisibility=hidden -fPIC -Wl,--exclude-libs,ALL" \
-	./configure \
-  --disable-examples --disable-doc \
-  --disable-shared --enable-static
-# elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
-#     CFLAGS="-fvisibility=hidden -fPIC -Wl,--exclude-libs,ALL" \
-# 	./configure \
-#   --disable-examples --disable-doc \
-#   --disable-shared --enable-static
-# elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
-#     CFLAGS="-fvisibility=hidden -fPIC -Wl,--exclude-libs,ALL" \
-# 	./configure \
-#   --disable-examples --disable-doc \
-#   --disable-shared --enable-static
-fi
-
-make -j2