Android: fix/upgrade paths in README

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1241 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-04-15 18:47:07 +00:00
parent c49fb151da
commit 69d4dabb9b

View File

@ -10,7 +10,7 @@ Create a module compatible with the NDK build-system
- Use your own cross-compiler for Android, or export the one from the
NDK:
/usr/src/android-ndk-r7/build/tools/make-standalone-toolchain.sh \
/usr/src/android-ndk-r7c/build/tools/make-standalone-toolchain.sh \
--platform=android-9 \
--install-dir=/usr/src/ndk-standalone-9
@ -50,7 +50,7 @@ Compile FreeGLUT for a traditional cross-compiler environment
- Use your own cross-compiler for Android, or export the one from the
NDK:
/usr/src/android-ndk-r7/build/tools/make-standalone-toolchain.sh \
/usr/src/android-ndk-r7c/build/tools/make-standalone-toolchain.sh \
--platform=android-9 \
--install-dir=/usr/src/ndk-standalone-9
@ -63,7 +63,7 @@ Compile FreeGLUT for a traditional cross-compiler environment
cd cross-android-toolchain/
cmake \
-D CMAKE_TOOLCHAIN_FILE=../android_toolchain.cmake \
-D CMAKE_INSTALL_PREFIX=/usr/src/ndk-standalone-9 \
-D CMAKE_INSTALL_PREFIX=/usr/src/ndk-standalone-9/sysroot/usr \
-D FREEGLUT_GLES2=ON \
-D FREEGLUT_BUILD_DEMOS=NO \
..
@ -75,7 +75,7 @@ Compile FreeGLUT for a traditional cross-compiler environment
For instance if you use the autotools:
PATH=/usr/src/ndk-standalone-9/bin:$PATH
export PKG_CONFIG_PATH=/usr/src/ndk-standalone-9/share/pkgconfig
export PKG_CONFIG_PATH=/usr/src/ndk-standalone-9/sysroot/usr/share/pkgconfig
./configure --host=arm-linux-androideabi --prefix=/somewhere
make
make install
@ -84,7 +84,7 @@ If you use CMake, you may want to copy our Android toolchain
'android_toolchain.cmake':
PATH=/usr/src/ndk-standalone-9/bin:$PATH
export PKG_CONFIG_PATH=/usr/src/ndk-standalone-9/share/pkgconfig
export PKG_CONFIG_PATH=/usr/src/ndk-standalone-9/sysroot/usr/share/pkgconfig
cp .../android_toolchain.cmake .
mkdir cross-android/
cd cross-android/