24 lines
431 B
Bash
Executable File
24 lines
431 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname "$0")/all-vars.sh
|
|
source $(dirname "$0")/all-utils.sh
|
|
source $(dirname "$0")/build-utils.sh
|
|
|
|
source $(dirname "$0")/tf-vars.sh
|
|
|
|
BAZEL_TARGETS="
|
|
//native_client:libstt.so
|
|
//native_client:generate_scorer_package
|
|
"
|
|
|
|
BAZEL_BUILD_FLAGS="${BAZEL_ANDROID_X86_64_FLAGS} ${BAZEL_EXTRA_FLAGS}"
|
|
BAZEL_ENV_FLAGS="TF_NEED_CUDA=0"
|
|
SYSTEM_TARGET=
|
|
SYSTEM_RASPBIAN=
|
|
|
|
do_bazel_build
|
|
|
|
do_stt_ndk_build "x86_64"
|