Mali OpenCL SDK v1.1.0
 All Classes Files Functions Variables Macros Pages
Common Issues

Solutions to common issues found when using the Mali OpenCL SDK v1.1.0.

On the Board

  1. error while loading shared libraries: libOpenCL.so: cannot open shared object file: No such file or directory

    While running a sample on the board the OpenCL library cannot be found.

    Add it to your LD_LIBRARY_PATH on the board. For example:

    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path to OpenCL library (libOpenCL.so)>

On the Host

  1. make: command not found

    The Linux tool make is not installed.

    Install the make package. For example:

    sudo apt-get install make
  2. make: arm-none-linux-gnueabi-g++: Command not found

    The Sourcery CodeBench cross compiler cannot be found.

    Make sure it is installed and in the path. For example:

    export PATH=$PATH:<path to Sourcery CodeBench executables>