Fixed libfvad
This commit is contained in:
+1
-1
Submodule client updated: 3807c26d60...2ac12a77b8
+1
-1
Submodule shared updated: 29bd5e55c4...5606fc3d8f
Vendored
+1
@@ -31,6 +31,7 @@ exec_script build_ed25519.sh
|
||||
exec_script build_jsoncpp.sh
|
||||
#exec_script build_mysqlconnector.sh
|
||||
exec_script build_opus.sh
|
||||
exec_script build_libfvad.sh
|
||||
exec_script build_soxr.sh
|
||||
exec_script build_portaudio.sh
|
||||
exec_script build_protobuf.sh
|
||||
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
source ../scripts/build_helper.sh
|
||||
|
||||
library_path="libfvad"
|
||||
requires_rebuild ${library_path}
|
||||
[[ $? -eq 0 ]] && exit 0
|
||||
|
||||
_fpic=""
|
||||
[[ ${build_os_type} == "linux" ]] && _fpic="-fPIC"
|
||||
cmake_build ${library_path} -DCMAKE_C_FLAGS="${_fpic}" -DBUILD_TESTS=OFF -DCMAKE_CXX_FLAGS="${_fpic}" -DBUILD_TESTS=OFF -DBUILD_SHARED=OFF -DBUILD_STATIC=ON -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=Release
|
||||
check_err_exit ${library_path} "Failed to build ed25519!"
|
||||
set_build_successful ${library_path}
|
||||
Reference in New Issue
Block a user