-
Notifications
You must be signed in to change notification settings - Fork 1
/
env.sh
executable file
·65 lines (58 loc) · 1.85 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
function get_make_command()
{
echo command make
}
function make()
{
local start_time=$(date +"%s")
$(get_make_command) "$@"
local ret=$?
local end_time=$(date +"%s")
local tdiff=$(($end_time-$start_time))
local hours=$(($tdiff / 3600 ))
local mins=$((($tdiff % 3600) / 60))
local secs=$(($tdiff % 60))
echo
if [ $ret -eq 0 ] ; then
echo -n -e "\033[1;32m #### make \""$@"\" completed successfully!"
else
echo -n -e "\033[1;31m #### make target \""$@"\" failed !!!"
fi
if [ $hours -gt 0 ] ; then
printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
elif [ $mins -gt 0 ] ; then
printf "(%02g:%02g (mm:ss))" $mins $secs
elif [ $secs -gt 0 ] ; then
printf "(%s seconds)" $secs
fi
echo -e " ####\033[1;0m"
echo
return $ret
}
function setpaths()
{
arm_histbv310_path=${PWD}/tools/linux/toolchains/arm-histbv310-linux/bin
arm_histbv320_path=${PWD}/tools/linux/toolchains/arm-histbv320-linux/bin
aarch64_histbv100_path=${PWD}/tools/linux/toolchains/aarch64-histbv100-linux/bin
utils_path=${PWD}/tools/linux/utils/bin
PATH=${arm_histbv310_path}:${PATH//${arm_histbv310_path}:/}
PATH=${arm_histbv320_path}:${PATH//${arm_histbv320_path}:/}
PATH=${aarch64_histbv100_path}:${PATH//${aarch64_histbv100_path}:/}
PATH=${utils_path}:${PATH//${utils_path}:/}
}
function check_bash()
{
is_bash=`${SHELL} --version | grep "GNU bash"`
is_bash=${is_bash:0:8}
if [ "${is_bash}" != "GNU bash" ] ; then
echo "The shell may NOT be a bash, we need a bash to build SDK, please use bash!";
echo "To change your shell, you should be root first, and then set by steps followed:";
echo " rm -f /bin/sh";
echo " ln -s /bin/bash /bin/sh";
echo ""
fi
}
check_bash
setpaths
export HISI_LINUX_ENV=ok