-
Notifications
You must be signed in to change notification settings - Fork 103
/
env.sh
31 lines (27 loc) · 1004 Bytes
/
env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
export MLUOPS_HOME=${SCRIPT_PATH}
if [[ -z ${NEUWARE_HOME} ]]; then
export NEUWARE_HOME=/usr/local/neuware
echo "set env 'NEUWARE_HOME' to default: ${NEUWARE_HOME}."
else
echo "env 'NEUWARE_HOME': ${NEUWARE_HOME}."
fi
export PATH=${NEUWARE_HOME}/bin:${PATH}
export LD_LIBRARY_PATH=${NEUWARE_HOME}/lib64:${MLUOPS_HOME}/build/lib:${LD_LIBRARY_PATH}
if [[ ! -d "${PWD}/.git/" ]]; then
# pass
echo "Ready for mlu-ops-building."
else
if [[ -f "${PWD}/.git/hooks/pre-commit" ]]; then
rm ${PWD}/.git/hooks/pre-commit
fi
echo "-- pre-commit hook inserted to ${PWD}/.git/hooks."
echo "-- Use git commit -n to bypass pre-commit hook."
ln -sf ${PWD}/tools/pre-commit ${PWD}/.git/hooks
if [[ -f "${PWD}/.git/hooks/commit-msg" ]]; then
rm ${PWD}/.git/hooks/commit-msg
fi
echo "-- commit-msg hook inserted to ${PWD}/.git/hooks."
ln -sf ${PWD}/tools/commit-msg ${PWD}/.git/hooks
echo "Ready for mlu-ops-building."
fi