Lines Matching +full:non +full:- +full:armv7

5 …uilds Unbound. The testing is tailored for Android NDK-r19 and above, and includes NDK-r20 and NDK
9 The Unbound Travis configuration file `.travis.yml` does not use top-level keys like `os:` and `com…
13 …des AMD64, Aarch64, PowerPC and s390x. PowerPC is a little-endian platform, and s390x is a big-end…
16 - os: linux
21 - os: linux
37 - os: linux
43 - os: linux
55 export CFLAGS="-DNDEBUG -g2 -O3 -fsanitize=undefined -fno-sanitize-recover"
57 make -j 2
60 export CFLAGS="-DNDEBUG -g2 -O3 -fsanitize=address"
62 make -j 2
69 …ndroid NDK and SDK, it requires a cross-compile, and requires OpenSSL and Expat prerequisites. The…
73 The first step sets environmental variables for the cross-compile using the Travis job. A typical j…
76 - os: linux
82 - TEST_ANDROID=yes
83 - AUTOTOOLS_HOST=armv7a-linux-androideabi
84 - OPENSSL_HOST=android-arm
85 - ANDROID_CPU=armv7a
86 - ANDROID_API=23
87 - ANDROID_PREFIX="$HOME/android$ANDROID_API-$ANDROID_CPU"
88 - ANDROID_SDK_ROOT="$HOME/android-sdk"
89 - ANDROID_NDK_ROOT="$HOME/android-ndk"
94 … Directory?](https://groups.google.com/forum/#!topic/android-ndk/qZjhOaynHXc) on the android-ndk m…
104 - |
120 The fourth step sets the Android cross-compile environment using the script `contrib/android/setenv…
127 armv8a|aarch64|arm64|arm64-v8a)
128 CC="aarch64-linux-android$ANDROID_API-clang"
129 CXX="aarch64-linux-android$ANDROID_API-clang++"
130 LD="aarch64-linux-android-ld"
131 AS="aarch64-linux-android-as"
132 AR="aarch64-linux-android-ar"
133 RANLIB="aarch64-linux-android-ranlib"
134 STRIP="aarch64-linux-android-strip"
136 CFLAGS="-funwind-tables -fexceptions"
137 CXXFLAGS="-funwind-tables -fexceptions -frtti"
142 …atest release version of the libraries. The libraries are configured with `--prefix="$ANDROID_PREF…
144-$ANDROID_CPU`. The libraries will be installed in `$HOME/android23-armv7a`, `$HOME/android23-aarc…
146-android.conf`. It is a copy of the OpenSSL's project file and located at `contrib/android/15-andr…
148 OpenSSL is configured with `no-engine`. If you want to include OpenSSL engines then edit `contrib/a…
163 --build="$AUTOTOOLS_BUILD" \
164 --host="$AUTOTOOLS_HOST" \
165 --prefix="$ANDROID_PREFIX" \
166 --with-ssl="$ANDROID_PREFIX" \
167 --with-libexpat="$ANDROID_PREFIX" \
168 --disable-gost;
169 make -j 2
177 …h` uses specific flags for `CFLAGS` and `CXXFLAGS`. They are taken from `ndk-build`, so we conside…
179-fexceptions` and `-frtti` because exceptions and runtime type info are disabled by default. `CFLA…
181-build` for a platform clone ASOP's [ndk-samples](https://github.com/android/ndk-samples/tree/mast…
185-bit builds (iPhones) and 64-bit builds (iPads). Travis also tests compiles against the simulators…
189 The first step sets environmental variables for the cross-compile using the Travis job. A typical j…
192 - os: osx
194 name: Apple iPhone on iOS, armv7
197 - TEST_IOS=yes
198 - AUTOTOOLS_HOST=armv7-apple-ios
199 - OPENSSL_HOST=ios-cross
200 - IOS_SDK=iPhoneOS
201 - IOS_CPU=armv7s
202 - IOS_PREFIX="$HOME/$IOS_SDK-$IOS_CPU"
211 - |
221 The third step sets the iOS cross-compile environment using the script `contrib/ios/setenv_ios.sh`.…
225 The `contrib/ios/setenv_ios.sh` script specifies the tools to use during the cross-compile. For App…
242 …atest release version of the libraries. The libraries are configured with `--prefix="$IOS_PREFIX"`…
244-$IOS_CPU`. The scheme handles both iOS SDKs and cpu architectures so the pair receives a unique i…
246 …find non-system headers and libraries for an architecture. Typical `PKG_CONFIG_PATH` are `$HOME/iP…
248-ios.conf`. It is a copy of the OpenSSL's project file and located at `contrib/ios/15-ios.conf`. T…
250 OpenSSL is configured with `no-engine`. Engines require dynamic loading so engines are disabled per…
264 --build="$AUTOTOOLS_BUILD" \
265 --host="$AUTOTOOLS_HOST" \
266 --prefix="$IOS_PREFIX" \
267 --with-ssl="$IOS_PREFIX" \
268 --with-libexpat="$IOS_PREFIX" \
269 --disable-gost;
270 make -j 2