From 7cf1d86914c133f3ad67e2287d31d32a229c44ae Mon Sep 17 00:00:00 2001 From: Carl Date: Mon, 9 Jan 2012 23:50:57 -0800 Subject: [PATCH 01/18] Update README.rst --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index ff99d60d14..03df52ae86 100644 --- a/README.rst +++ b/README.rst @@ -41,11 +41,15 @@ might need other tools:: sudo apt-get install build-essential patch git-core ccache + + You must have android SDK and NDK. You can download them at:: http://developer.android.com/sdk/index.html http://developer.android.com/sdk/ndk/index.html +For best results you need oracle java SE: java-jdk-7 for running the android tooling on oneiric. + If it's your very first time into android SDK, don't forget to follow documentation for recommended components at:: From 76d62b674882882eba815a487bfb19b8de410c49 Mon Sep 17 00:00:00 2001 From: Carl Date: Mon, 9 Jan 2012 23:57:21 -0800 Subject: [PATCH 02/18] Update README.rst --- README.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 03df52ae86..133fec0a9e 100644 --- a/README.rst +++ b/README.rst @@ -48,7 +48,12 @@ You must have android SDK and NDK. You can download them at:: http://developer.android.com/sdk/index.html http://developer.android.com/sdk/ndk/index.html -For best results you need oracle java SE: java-jdk-7 for running the android tooling on oneiric. +For best results you need oracle java SE: java-jdk-7 for running the android tooling on oneiric. When done, +java -version should report something like the following (versions may differ). + +java version "1.7.0" +Java(TM) SW Runtime Environment (build 1.7.0-b147) +... If it's your very first time into android SDK, don't forget to follow documentation for recommended components at:: From 9be7df08be2a9d5440a3ea9d6452aa6c837492fc Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 01:45:26 -0800 Subject: [PATCH 03/18] Update README.rst --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 133fec0a9e..9740671a73 100644 --- a/README.rst +++ b/README.rst @@ -41,6 +41,8 @@ might need other tools:: sudo apt-get install build-essential patch git-core ccache +Needed ubunu packages: + libzip-dev: sudo apt-get install libzip-dev You must have android SDK and NDK. You can download them at:: From b419082b3580436eb25dbabd00c018acf30696f7 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 02:10:30 -0800 Subject: [PATCH 04/18] Update README.rst --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 9740671a73..50deb26585 100644 --- a/README.rst +++ b/README.rst @@ -41,7 +41,7 @@ might need other tools:: sudo apt-get install build-essential patch git-core ccache -Needed ubunu packages: +Needed ubuntu packages: libzip-dev: sudo apt-get install libzip-dev @@ -83,6 +83,7 @@ After installing them, export both installation path, NDK version and API to use export ANDROIDNDKVER=r7 export ANDROIDAPI=14 +Note that ANDROIDAPI=12 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? Usage ----- From fde331a3ba6ae1cd359edc6bdfc91db9e57a76ad Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 02:19:57 -0800 Subject: [PATCH 05/18] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 50deb26585..8a4cf69393 100644 --- a/README.rst +++ b/README.rst @@ -83,7 +83,7 @@ After installing them, export both installation path, NDK version and API to use export ANDROIDNDKVER=r7 export ANDROIDAPI=14 -Note that ANDROIDAPI=12 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? +Note that for android-ndk-r7 ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? Usage ----- From e5e77d13bf59c1d201e7a5d01422047d1f176d38 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 02:23:15 -0800 Subject: [PATCH 06/18] Update README.rst --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index 8a4cf69393..280e12f2a2 100644 --- a/README.rst +++ b/README.rst @@ -43,6 +43,7 @@ might need other tools:: Needed ubuntu packages: libzip-dev: sudo apt-get install libzip-dev + gawk sudo apt-get install gawk You must have android SDK and NDK. You can download them at:: @@ -85,6 +86,8 @@ After installing them, export both installation path, NDK version and API to use Note that for android-ndk-r7 ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? + export HOST_AWK=/usr/bin/gawk + Usage ----- From ef66a8ca9aba1695c97577019080390f8f30e0ca Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 02:24:22 -0800 Subject: [PATCH 07/18] Update README.rst --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 280e12f2a2..1a99c6b0f2 100644 --- a/README.rst +++ b/README.rst @@ -86,6 +86,8 @@ After installing them, export both installation path, NDK version and API to use Note that for android-ndk-r7 ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? +extra environment vars needed:: + export HOST_AWK=/usr/bin/gawk Usage From 6f22d0653cc214b496ae1b12bad5788a29460641 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 02:48:29 -0800 Subject: [PATCH 08/18] Update README.rst --- README.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1a99c6b0f2..28f429a9d2 100644 --- a/README.rst +++ b/README.rst @@ -84,7 +84,13 @@ After installing them, export both installation path, NDK version and API to use export ANDROIDNDKVER=r7 export ANDROIDAPI=14 -Note that for android-ndk-r7 ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? +Notes for android-ndk-r7 + + #. ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? + #. The awk supplied with the ndk is outdated. Do the following:: + + cd $ANDROIDNDK/prebuilt/linux-x86/bin + mv awk awk_ extra environment vars needed:: From 9493b3bc501f3f48bda957f043fa98054948daae Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 02:49:26 -0800 Subject: [PATCH 09/18] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 28f429a9d2..a1b03e8d00 100644 --- a/README.rst +++ b/README.rst @@ -86,8 +86,8 @@ After installing them, export both installation path, NDK version and API to use Notes for android-ndk-r7 - #. ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? - #. The awk supplied with the ndk is outdated. Do the following:: +#. ANDROIDAPI versions 6,7,10,11,12,13 seems not to work, because the android NDK has no android-12 dir in the platforms dir?? +#. The awk supplied with the ndk is outdated. Do the following:: cd $ANDROIDNDK/prebuilt/linux-x86/bin mv awk awk_ From 1c7cc8c503692519e71330ea38a855af47dd2016 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 03:24:55 -0800 Subject: [PATCH 10/18] Update README.rst --- README.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.rst b/README.rst index a1b03e8d00..69544db9e9 100644 --- a/README.rst +++ b/README.rst @@ -92,10 +92,6 @@ Notes for android-ndk-r7 cd $ANDROIDNDK/prebuilt/linux-x86/bin mv awk awk_ -extra environment vars needed:: - - export HOST_AWK=/usr/bin/gawk - Usage ----- From fb7307952552b456c53b192055d1c82bd135d47e Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 03:26:08 -0800 Subject: [PATCH 11/18] Update README.rst --- README.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 69544db9e9..e12f4edb83 100644 --- a/README.rst +++ b/README.rst @@ -41,10 +41,9 @@ might need other tools:: sudo apt-get install build-essential patch git-core ccache -Needed ubuntu packages: +Other ubuntu packages needed: libzip-dev: sudo apt-get install libzip-dev - gawk sudo apt-get install gawk - + cython: sudo apt-get install cython You must have android SDK and NDK. You can download them at:: From aabe1744aa73ae482c08c18269d20476d960b3f1 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 03:26:40 -0800 Subject: [PATCH 12/18] Update README.rst --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index e12f4edb83..19f6a0e666 100644 --- a/README.rst +++ b/README.rst @@ -41,7 +41,8 @@ might need other tools:: sudo apt-get install build-essential patch git-core ccache -Other ubuntu packages needed: +Other ubuntu packages needed:: + libzip-dev: sudo apt-get install libzip-dev cython: sudo apt-get install cython From 523a9a519b545a151ba099c2773841452eaad271 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 04:00:35 -0800 Subject: [PATCH 13/18] Update README.rst --- README.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 19f6a0e666..5997b53330 100644 --- a/README.rst +++ b/README.rst @@ -43,8 +43,10 @@ might need other tools:: Other ubuntu packages needed:: - libzip-dev: sudo apt-get install libzip-dev - cython: sudo apt-get install cython + libzip-dev: sudo apt-get install libzip-dev + cython: sudo apt-get install cython + desktop opengl headers: sudo apt-get freeglut3-dev + ?libgl1-mesa-dev, libglu1-mesa-dev and libxxf86vm-dev You must have android SDK and NDK. You can download them at:: From 1c325d68cebedecc2e2345ea95d43c2973ef7d66 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 04:01:56 -0800 Subject: [PATCH 14/18] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 5997b53330..1a2ba54945 100644 --- a/README.rst +++ b/README.rst @@ -45,7 +45,7 @@ Other ubuntu packages needed:: libzip-dev: sudo apt-get install libzip-dev cython: sudo apt-get install cython - desktop opengl headers: sudo apt-get freeglut3-dev + desktop opengl headers: sudo apt-get install freeglut3-dev ?libgl1-mesa-dev, libglu1-mesa-dev and libxxf86vm-dev You must have android SDK and NDK. You can download them at:: From 5a7d7322a158214c82c6004c3bf9507cfd889dfa Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 05:47:13 -0800 Subject: [PATCH 15/18] Update README.rst --- README.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.rst b/README.rst index 1a2ba54945..f1f9969d90 100644 --- a/README.rst +++ b/README.rst @@ -45,8 +45,6 @@ Other ubuntu packages needed:: libzip-dev: sudo apt-get install libzip-dev cython: sudo apt-get install cython - desktop opengl headers: sudo apt-get install freeglut3-dev - ?libgl1-mesa-dev, libglu1-mesa-dev and libxxf86vm-dev You must have android SDK and NDK. You can download them at:: From 66b1ff8804f4d73c624608daf56f7df3278a5769 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 06:19:18 -0800 Subject: [PATCH 16/18] Update README.rst --- README.rst | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.rst b/README.rst index f1f9969d90..da99a77095 100644 --- a/README.rst +++ b/README.rst @@ -39,12 +39,7 @@ WARNING: the current version is tested only on Ubuntu oneiric (11.10). If it doe You need the minimal environment for building python. Note that other libraries might need other tools:: - sudo apt-get install build-essential patch git-core ccache - -Other ubuntu packages needed:: - - libzip-dev: sudo apt-get install libzip-dev - cython: sudo apt-get install cython + sudo apt-get install build-essential patch git-core ccache libzip-dev cython You must have android SDK and NDK. You can download them at:: From 417d64bb2ece5bb7f65e2d58868e3cea4a5b3169 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 11:32:23 -0800 Subject: [PATCH 17/18] Update README.rst --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index da99a77095..ca9d41abb2 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ WARNING: the current version is tested only on Ubuntu oneiric (11.10). If it doe You need the minimal environment for building python. Note that other libraries might need other tools:: - sudo apt-get install build-essential patch git-core ccache libzip-dev cython + sudo apt-get install build-essential patch git-core ccache libzip-dev cython ant python-jinja2 You must have android SDK and NDK. You can download them at:: @@ -78,6 +78,7 @@ After installing them, export both installation path, NDK version and API to use export ANDROIDNDK="/home/tito/code/android/android-ndk-r7" export ANDROIDNDKVER=r7 export ANDROIDAPI=14 + export PATH=$PATH:$ANDROIDSDK/tools Notes for android-ndk-r7 From c9146c97d76d9b8315b484b73665286c9fbdfc77 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 10 Jan 2012 12:14:27 -0800 Subject: [PATCH 18/18] Update README.rst --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index ca9d41abb2..a233ee8a3d 100644 --- a/README.rst +++ b/README.rst @@ -79,6 +79,7 @@ After installing them, export both installation path, NDK version and API to use export ANDROIDNDKVER=r7 export ANDROIDAPI=14 export PATH=$PATH:$ANDROIDSDK/tools + export PATH=$PATH:$ANDROIDSDK/platform-tools Notes for android-ndk-r7