This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building dependency packages/libandroid-support if necessary... | |
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild) | |
Building dependency packages/ndk-sysroot if necessary... | |
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild) | |
Building dependency packages/libbthread if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libbthread to force rebuild) | |
Building dependency packages/libicu if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libicu to force rebuild) | |
Building dependency packages/ca-certificates if necessary... | |
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building dependency packages/libandroid-support if necessary... | |
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild) | |
Building dependency packages/ndk-sysroot if necessary... | |
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild) | |
Building dependency packages/libbthread if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libbthread to force rebuild) | |
Building dependency packages/libicu if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libicu to force rebuild) | |
Building dependency packages/ca-certificates if necessary... | |
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ strings /data/data/com.termux/files/usr/lib/libbthread.so | |
Android | |
4442984 | |
__cxa_finalize | |
__cxa_atexit | |
__pthread_do_cancel | |
pthread_cancel | |
pthread_init | |
pthread_mutex_lock | |
pthread_mutex_unlock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ strings /data/data/com.termux/files/usr/include/bthread.h | |
#include <pthread.h> | |
# define PTHREAD_CANCEL_ENABLE 0x00000010 | |
# define PTHREAD_CANCEL_DISABLE 0x00000000 | |
# define PTHREAD_CANCEL_ASYNCHRONOUS 0x00000020 | |
# define PTHREAD_CANCEL_DEFERRED 0x00000000 | |
#define PTHREAD_CANCELED ((void *) -1) | |
int pthread_setcancelstate (int , int *); | |
int pthread_setcanceltype (int , int *); | |
void pthread_testcancel (void); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <pthread.h> | |
# define PTHREAD_CANCEL_ENABLE 0x00000010 | |
# define PTHREAD_CANCEL_DISABLE 0x00000000 | |
# define PTHREAD_CANCEL_ASYNCHRONOUS 0x00000020 | |
# define PTHREAD_CANCEL_DEFERRED 0x00000000 | |
#define PTHREAD_CANCELED ((void *) -1) | |
int pthread_setcancelstate (int , int *); | |
int pthread_setcanceltype (int , int *); | |
void pthread_testcancel (void); | |
int pthread_cancel (pthread_t t); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure.ac b/configure.ac | |
index 2d58b398..6dce3ea1 100644 | |
--- a/configure.ac | |
+++ b/configure.ac | |
@@ -307,8 +307,6 @@ AC_SEARCH_LIBS([dlopen], [dl], [], | |
AX_PTHREAD([ | |
AC_DEFINE([HAVE_PTHREAD], [1], [Define if you have POSIX threads libraries and header files.]) | |
- appendCXX "$PTHREAD_CFLAGS" | |
- appendLib "$PTHREAD_LIBS" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building dependency packages/libandroid-support if necessary... | |
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild) | |
Building dependency packages/ndk-sysroot if necessary... | |
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild) | |
Building dependency packages/libbthread if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libbthread to force rebuild) | |
Building dependency packages/libicu if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libicu to force rebuild) | |
Building dependency packages/ca-certificates if necessary... | |
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building dependency packages/libandroid-support if necessary... | |
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild) | |
Building dependency packages/ndk-sysroot if necessary... | |
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild) | |
Building dependency packages/libbthread if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libbthread to force rebuild) | |
Building dependency packages/libicu if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libicu to force rebuild) | |
Building dependency packages/ca-certificates if necessary... | |
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure.ac b/configure.ac | |
index 2d58b398..6dce3ea1 100644 | |
--- a/configure.ac | |
+++ b/configure.ac | |
@@ -307,8 +307,6 @@ AC_SEARCH_LIBS([dlopen], [dl], [], | |
AX_PTHREAD([ | |
AC_DEFINE([HAVE_PTHREAD], [1], [Define if you have POSIX threads libraries and header files.]) | |
- appendCXX "$PTHREAD_CFLAGS" | |
- appendLib "$PTHREAD_LIBS" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
josh@Debian | |
OS: Debian testing buster | |
Kernel: x86_64 Linux 4.15.0-3-amd64 | |
Uptime: 6d 26m | |
Packages: 2015 | |
Shell: bash 4.4.19 | |
CPU: Intel Xeon 3.00GHz @ 8x 3GHz | |
GPU: GeForce FX 5500 | |
RAM: 648MiB / 16043MiB |