-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetenv.sh
175 lines (162 loc) · 4.78 KB
/
setenv.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
if ${OPENDDS_ANDROID_SETENV:-false}; then return; fi
export OPENDDS_ANDROID_SETENV='true'
export workspace="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd )"
download_file() {
echo "Downloading $1 ..."
curl --fail --remote-name --remote-header-name --location \
--retry 3 --silent --show-error "$1"
}
# Getting Configuration
if [ -z "${ndk+x}" -o -z "${arch+x}" -o -z "${api+x}" ]
then
if ! [ -f ${workspace}/settings.sh ]
then
echo 'Warning: $ndk, $arch, or $api not set and there is no settings.sh, copying default.settings.sh' 1>&2
cp ${workspace}/default.settings.sh ${workspace}/settings.sh
fi
source ${workspace}/settings.sh
fi
# Alternate settings.sh that can be committed temporarily for branches.
if [ -f override_settings.sh ]
then
source override_settings.sh
fi
# Convert arch to target and abi
if [ "$arch" = "arm" ]
then
export target_compiler=armv7a-linux-androideabi
export target=arm-linux-androideabi
export abi="armeabi-v7a"
elif [ "$arch" = "arm64" ]
then
export target=aarch64-linux-android
export abi="arm64-v8a"
elif [ "$arch" = "x86_64" ]
then
export target=x86_64-linux-android
export abi="x86_64"
elif [ "$arch" = "x86" ]
then
export target=i686-linux-android
export abi="x86"
elif [ "$arch" = "NONE" ] # Bypass
then
true
else
echo "Error: \"$arch\" is invalid, must be arm, arm64, x86, or x86_64" 1>&2
exit 1
fi
export target_cpp_stdlib=${target_cpp_stdlib:-$target}
export target_ld=${target_ld:-$target}
export target_compiler=${target_compiler:-$target}
# Android NDK
export ndk_major_rev=$(./matrix.py --get-ndk-major $ndk)
export ndk_minor_rev=$(./matrix.py --get-ndk-minor $ndk)
source "host.sh"
case $host_os in
'linux')
ndk_platform_name="linux-x86_64"
if [ $ndk_major_rev -lt 23 ]
then
ndk_platform_dl_name="linux-x86_64"
else
ndk_platform_dl_name="linux"
fi
;;
'macos')
ndk_platform_name="darwin-x86_64"
if [ $ndk_major_rev -lt 23 ]
then
ndk_platform_dl_name="darwin-x86_64"
else
ndk_platform_dl_name="darwin"
fi
;;
*)
echo "Error: Unknown host_os: \"$host_os\"" 1>&2
exit 1
;;
esac
export OPENDDS_ANDROID_NDK="${OPENDDS_ANDROID_NDK-"$workspace/android-ndk-$ndk"}"
export android_toolchain_root="${OPENDDS_ANDROID_NDK}/toolchains/llvm/prebuilt/$ndk_platform_name"
export android_cpp_stdlib="${android_toolchain_root}/sysroot/usr/lib/${target_cpp_stdlib}/libc++_shared.so"
export android_toolchain_bin="${android_toolchain_root}/bin"
export android_ld="${android_toolchain_bin}/${target_ld}-ld"
if [ $ndk_major_rev -ge 22 ]
then
# ${target_ld}-ld doesn't exist in r22. GNU linker is still there under
# different names, but we should use LLVM linker.
export android_ld="${android_toolchain_bin}/ld.lld"
fi
export android_cc="${android_toolchain_bin}/${target_compiler}${api}-clang"
export android_cxx="${android_cc}++"
export use_toolchain=${use_toolchain-"false"}
export need_toolchain=$use_toolchain
export use_security=${use_security:-false}
if $need_toolchain
then
export toolchain_name="$ndk-$arch-android-$api-toolchain"
export android_toolchain="${workspace}/${toolchain_name}"
export PATH=${PATH}:"$android_toolchain/bin"
fi
# OpenDDS
export DDS_ROOT="${DDS_ROOT-"$workspace/OpenDDS"}"
# ACE/TAO
export ace_tao=${ace_tao-'doc_group_master'}
case $ace_tao in
'doc_group_master')
export ace_tao_default_branch='master'
if [ $ndk_major_rev -lt 27 ]
then
export force_cpp_std="c++17"
fi
;;
'doc_group_ace6_tao2')
export ace_tao_default_branch='ace6tao2'
;;
*)
echo "Error: Invalid ace_tao: $ace_tao" 1>&2
exit 1
;;
esac
mpc_dir="MPC"
ace_dir="ACE_TAO/ACE"
tao_dir="ACE_TAO/TAO"
export MPC_ROOT="${MPC_ROOT-"${workspace}/${mpc_dir}"}"
export ACE_ROOT="${ACE_ROOT-"${workspace}/${ace_dir}"}"
export TAO_ROOT="${TAO_ROOT-"${workspace}/${tao_dir}"}"
export host_tools=${host_tools:-}
if [ -z "$host_tools" ]
then
ace_target="$ACE_ROOT/build/target"
ace_host="$ACE_ROOT/build/host"
else
export HOST_DDS="$host_tools"
export HOST_ACE="$host_tools/ACE_TAO/ACE"
ace_target="$ACE_ROOT"
fi
export ace_target
export PATH=${PATH}:"$ACE_ROOT/bin"
# Optional Features
export use_java=${use_java:-false}
if $use_java
then
export android_sdk="${ANDROID_SDK-"${workspace}/android-sdk"}"
if [ ! -z ${android_target_api+x} ]
then
export target_api="$android_target_api"
elif [ ! -z ${target_api+x} ]
then
export android_target_api="$target_api"
else
echo "Error: use_java is true, but android_target_api isn't set" 1>&2
exit 1
fi
fi
if $use_security
then
export GNU_ICONV_ROOT="${GNU_ICONV_ROOT-"${workspace}/secdeps_prefix"}"
export XERCESCROOT="${XERCESCROOT-"${workspace}/secdeps_prefix"}"
export SSL_ROOT="${SSL_ROOT-"${workspace}/secdeps_prefix"}"
fi
export build_ace_tests=${build_ace_tests:-true}