I'm compiling a program that is configured using the Android Toolchain. I'm using ndk r10c. I made a standalone toolchain using
$./make-standalone-toolchain.sh --ndk-dir=/home/justin/bin/android-ndk-r10c/ --install-dir=/home/justin/android-toolchain/
and was able to configure my project, but when I make
I get
error: 'pthread_cancel' was not declared in this scope
The header has #include <pthread.h>
and this answer seems to indicate that I should be able to use pthreads as I normally would.
Am I missing something?