Fix Android port: (#1933)

- Switch to clang from gcc
- std::timed_mutex is not available on the latest NDK, revert to the POSIX implementation for now
- eabi is deprecated, switch to eabi-v7a by default
This commit is contained in:
Rangel Reale
2017-10-11 13:34:38 -03:00
committed by Aleksandar Fabijanic
parent 6e6e3952e2
commit 6bfbd5db96
3 changed files with 13 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
#include "Poco/Exception.h"
#include "Poco/ScopedLock.h"
#if (POCO_OS == POCO_OS_CYGWIN)
#if (POCO_OS == POCO_OS_CYGWIN || defined(POCO_ANDROID))
#include "Poco/Mutex_POSIX.h"
#else
#include "Poco/Mutex_STD.h"

View File

@@ -13,7 +13,7 @@
#include "Poco/Mutex.h"
#if (POCO_OS == POCO_OS_CYGWIN)
#if (POCO_OS == POCO_OS_CYGWIN || defined(POCO_ANDROID))
#include "Mutex_POSIX.cpp"
#else
#include "Mutex_STD.cpp"