<div dir="ltr"><div class="gmail_default" style="font-size:small">If you check out source code from GIT right now, it will not build and I have not found a solution.</div><div class="gmail_default" style="font-size:small">But if you add the following contents to a file called Makefile in libbthread-master directory, you can build:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">PLATFORM = $(uname -o)<br>ifneq ($(PLATFORM),Android)<br>all:<br>#       mv pt-test.c pt-test<br>#       cat `ls *.c` > just-pt.c<br>        g++ -c -o jpt.o just-pt.cc -I.<br>        ar crs jpt.a jpt.o<br>clean:<br>        rm -f *.a *.o<br>install:<br><br>else<br>all:<br>install:<br>clean:<br><br>endif<br></div></div>