Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
40e2befb
Commit
40e2befb
authored
Aug 01, 2015
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update NDK version to r10e, OSX support
parent
102d1b14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
5 deletions
+21
-5
ci_build.sh
builds/qt-android/ci_build.sh
+21
-5
No files found.
builds/qt-android/ci_build.sh
View file @
40e2befb
#!/usr/bin/env bash
NDK_VER
=
android-ndk-r10e
if
[
$TRAVIS_OS_NAME
==
"linux"
]
then
NDK_PLATFORM
=
linux-x86_64
elif
[
$TRAVIS_OS_NAME
==
"osx"
]
then
NDK_PLATFORM
=
darwin-x86_64
else
echo
"Unsupported platform
$TRAVIS_OS_NAME
"
exit
1
fi
export
FILENAME
=
$NDK_VER
-
$NDK_PLATFORM
.bin
(
cd
'/tmp'
\
&&
wget http://dl.google.com/android/ndk/android-ndk-r9-linux-x86_64.tar.bz2
\
&&
tar
-xf
android-ndk-r9-linux-x86_64.tar.bz2
\
&&
mv
android-ndk-r9 android-ndk
)
&&
wget http://dl.google.com/android/ndk/
$FILENAME
\
&&
chmod
a+x
$FILENAME
\
&&
./
$FILENAME
&> /dev/null
)
||
exit
1
unset
FILENAME
export
ANDROID_NDK_ROOT
=
"/tmp/
android-ndk
"
export
TOOLCHAIN_PATH
=
"
/tmp/android-ndk/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64
/bin"
export
ANDROID_NDK_ROOT
=
"/tmp/
$NDK_VER
"
export
TOOLCHAIN_PATH
=
"
$ANDROID_NDK_ROOT
/toolchains/arm-linux-androideabi-4.8/prebuilt/
$NDK_PLATFORM
/bin"
export
TOOLCHAIN_NAME
=
"arm-linux-androideabi-4.8"
export
TOOLCHAIN_HOST
=
"arm-linux-androideabi"
export
TOOLCHAIN_ARCH
=
"arm"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment