40 lines
891 B
Bash
Executable File
40 lines
891 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
do_bazel_build()
|
|
{
|
|
local _opt_or_dbg=${1:-"opt"}
|
|
|
|
cd ${DS_TFDIR}
|
|
eval "export ${BAZEL_ENV_FLAGS}"
|
|
|
|
bazel ${BAZEL_OUTPUT_USER_ROOT} build \
|
|
-s --explain bazel_explain.log --verbose_explanations \
|
|
--workspace_status_command="bash native_client/bazel_workspace_status_cmd.sh" \
|
|
-c ${_opt_or_dbg} ${BAZEL_BUILD_FLAGS} ${BAZEL_TARGETS}
|
|
|
|
if [ "${_opt_or_dbg}" = "opt" ]; then
|
|
verify_bazel_rebuild "${DS_ROOT_TASK}/tensorflow/bazel_explain.log"
|
|
fi
|
|
}
|
|
|
|
shutdown_bazel()
|
|
{
|
|
cd ${DS_TFDIR}
|
|
bazel ${BAZEL_OUTPUT_USER_ROOT} shutdown
|
|
}
|
|
|
|
do_stt_binary_build()
|
|
{
|
|
cd ${DS_DSDIR}
|
|
make -C native_client/ \
|
|
TARGET=${SYSTEM_TARGET} \
|
|
TFDIR=${DS_TFDIR} \
|
|
RASPBIAN=${SYSTEM_RASPBIAN} \
|
|
EXTRA_CFLAGS="${EXTRA_LOCAL_CFLAGS}" \
|
|
EXTRA_LDFLAGS="${EXTRA_LOCAL_LDFLAGS}" \
|
|
EXTRA_LIBS="${EXTRA_LOCAL_LIBS}" \
|
|
stt${PLATFORM_EXE_SUFFIX}
|
|
}
|