Skip to content

Latest commit

 

History

History

android

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

GOCL on Android

Install Ant.

  1. install http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.2-bin.tar.gz to /usr/local
  2. "export ANT_HOME=/usr/local/apache-ant"

Install Android SDK.

  1. install http://dl.google.com/android/android-sdk_r23.0.2-darwin.tgz to /usr/local
  2. "export ANDROID_HOME=/usr/local/android-sdk"
  3. "$ANDROID_HOME/tools/android update sdk --no-ui --all --filter build-tools-19.1.0"
  4. "$ANDROID_HOME/tools/android update sdk --no-ui --all --filter platform-tools"
  5. "$ANDROID_HOME/tools/android update sdk --no-ui --all --filter android-19"

Install Android NDK.

  1. install http://dl.google.com/android/ndk/android-ndk-r9d-darwin-x86_64.tar.bz2 to /usr/local
  2. "export NDK_ROOT=/usr/local/android-ndk"
  3. "copy gocl/android/include/CL/. into $NDK_ROOT/platform/android-19/arch-arm/usr/include"
  4. "copy gocl/android/lib/. into $NDK_ROOT/platform/android-19/arch-arm/usr/lib"
  5. "$NDK_ROOT/build/tools/make-standalone-toolchain.sh --platform=android-19 --install-dir=$NDK_ROOT --system=darwin-x86_64"

Update PATH for the above.

  1. "export PATH=$PATH:$ANDROID_HOME/tools"
  2. "export PATH=$PATH:$ANDROID_HOME/platform-tools"
  3. "export PATH=$PATH:$NDK_ROOT"
  4. "export PATH=$PATH:$ANT_HOME/bin"

Install Go from source code.

  1. "cd $GOROOT/src"
  2. "CC=clang ./make.bash"
  3. "CC_FOR_TARGET=$NDK_ROOT/bin/arm-linux-androideabi-gcc CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 ./make.bash"
  4. "go env | grep CC="

Install Go.Mobile

  1. go get -d -t golang.org/x/mobile/...
  2. "cd $GOPATH/src/golang.org/x/mobile/example/basic"
  3. build android: GO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 go build -tags="cl11" -ldflags="-shared" -o jni/armeabi/libbasic.so
  4. build darwin: CC=clang go build -tags 'cl11' gocl/cl

Install GOCL into Go.Mobile

  1. "copy gocl/cl into $GOPATH/src/golang.org/x/mobile/"
  2. "copy gocl/android/example/goclinfo or libhello into $GOPATH/src/golang.org/x/mobile/example/"
  3. "copy gocl/android/lib/* into your rooted Nexus 5 with Android 4.4.4 /system/lib/"
  4. "cd $GOPATH/src/golang.org/x/mobile/goclinfo/ or libhello"
  5. "./all.bash"
  6. For goclinfo, If you can see Green background and Blue triangle, then OpenCL program is successfully running in your android device. Otherwise you will see Red background or crash. At lease my rooted Nexus 5 with Android 4.4.4 works. Or, if you use
    "$ adb shell

logcat",

you may see the following log inforamtion:

I/GoStdio ( 6212): Number of platforms: 1
I/GoStdio ( 6212): CL_PLATFORM_PROFILE : EMBEDDED_PROFILE
I/GoStdio ( 6212): CL_PLATFORM_VERSION : OpenCL 1.1 QUALCOMM build: ()
I/GoStdio ( 6212): Build Date: 11/06/13 Wed
I/GoStdio ( 6212): Local Branch: hammerhead_klp
I/GoStdio ( 6212): Remote Branch:
I/GoStdio ( 6212): CL_PLATFORM_VENDOR : QUALCOMM
I/GoStdio ( 6212): CL_PLATFORM_EXTENSIONS :
I/GoStdio ( 6212): Number of devices: 2
I/GoStdio ( 6212): CL_DEVICE_TYPE : CL_DEVICE_TYPE_GPU
I/GoStdio ( 6212): CL_DEVICE_NAME : QUALCOMM Adreno(TM)
I/GoStdio ( 6212): CL_DEVICE_VENDOR : QUALCOMM
I/GoStdio ( 6212): CL_DEVICE_PROFILE : EMBEDDED_PROFILE
I/GoStdio ( 6212): CL_DEVICE_TYPE : CL_DEVICE_TYPE_CPU
I/GoStdio ( 6212): CL_DEVICE_NAME : QUALCOMM Krait(TM)
I/GoStdio ( 6212): CL_DEVICE_VENDOR : QUALCOMM
I/GoStdio ( 6212): CL_DEVICE_PROFILE : EMBEDDED_PROFILE