forked from cubefs/cubefs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh
executable file
·99 lines (74 loc) · 2.59 KB
/
build.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/bin/bash
RootPath=$(cd $(dirname $0); pwd)
build_linux_x86_64() {
make
}
# build arm64 with amd64 docker ubuntu:focal, apt-get install -y gcc-9-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-9-aarch64-linux-gnu g++-aarch64-linux-gnu
# Support Ubuntu focal, not support CentOS7
build_linux_arm64_gcc9() {
echo "build linux arm64 gcc9"
get_rocksdb_compress_dep
export PORTABLE=1
export ARCH=arm64
# export CC=aarch64-linux-gnu-gcc
export EXTRA_CFLAGS="-Wno-error=deprecated-copy -fno-strict-aliasing -Wclass-memaccess -Wno-error=class-memaccess -Wpessimizing-move -Wno-error=pessimizing-move"
export EXTRA_CXXFLAGS=$EXTRA_CFLAGS
CGO_ENABLED=1 GOOS=linux GOARCH=arm64 make
}
# build arm64 with amd64 docker buntu:xenial , apt-get install -y gcc-4.9-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-4.9-aarch64-linux-gnu g++-aarch64-linux-gnu
# support CentOS7
#
build_linux_arm64_gcc4() {
echo "build linux arm64 gcc4.9"
get_rocksdb_compress_dep
export PORTABLE=1
export ARCH=arm64
# export CC=aarch64-linux-gnu-gcc
export EXTRA_CFLAGS=" -fno-strict-aliasing "
export EXTRA_CXXFLAGS=$EXTRA_CFLAGS
CGO_ENABLED=1 GOOS=linux GOARCH=arm64 make
}
# wget compress dep
get_rocksdb_compress_dep() {
#################################################################
## Might check the dep files each in individual if wget failed ##
#################################################################
if [ ! -d "${RootPath}/vendor/dep" ]; then
mkdir -p ${RootPath}/vendor/dep
fi
cd ${RootPath}/vendor/dep
if [ ! -d "${RootPath}/vendor/dep/zlib-1.2.11" ]; then
wget http://www.zlib.net/zlib-1.2.11.tar.gz
tar zxf zlib-1.2.11.tar.gz
fi
if [ ! -d "${RootPath}/vendor/dep/bzip2-1.0.6" ]; then
wget https://sourceforge.net/projects/bzip2/files/bzip2-1.0.6.tar.gz
tar zxf bzip2-1.0.6.tar.gz
fi
if [ ! -d "${RootPath}/vendor/dep/zstd-1.4.8" ]; then
wget https://codeload.github.com/facebook/zstd/zip/v1.4.8
unzip v1.4.8
fi
if [ ! -d "${RootPath}/vendor/dep/lz4-1.9.3" ]; then
wget https://codeload.github.com/lz4/lz4/tar.gz/v1.9.3
tar zxf v1.9.3
fi
#rm -rf zlib-1.2.11.tar.gz bzip2-1.0.6.tar.gz v1.4.8 v1.9.3
cd ${RootPath}
}
CPUTYPE=${CPUTYPE} | tr 'A-Z' 'a-z'
echo ${CPUTYPE}
case ${CPUTYPE} in
"arm64_gcc9")
build_linux_arm64_gcc9
;;
"arm64_gcc4")
build_linux_arm64_gcc4
;;
"arm64")
build_linux_arm64_gcc4
;;
*)
build_linux_x86_64
;;
esac