Re: [PATCH] Drop OTHERLIBS and use LDLIBS exclusively

2015-12-31 Thread Samuel Thibault
Applied, thanks!

Re: [PATCH] Drop OTHERLIBS and use LDLIBS exclusively

2015-12-31 Thread Samuel Thibault
Flavio Cruz, on Thu 31 Dec 2015 17:49:25 +0100, wrote: > When cross-compiling, OTHERLIBS magically turns -lpthread into the path > to the host libpthread.so file, resulting in build issues. LDLIBS does > not suffer from this problem and it seems that is already being used in > other Makefiles. This

[PATCH] Drop OTHERLIBS and use LDLIBS exclusively

2015-12-31 Thread Flavio Cruz
When cross-compiling, OTHERLIBS magically turns -lpthread into the path to the host libpthread.so file, resulting in build issues. LDLIBS does not suffer from this problem and it seems that is already being used in other Makefiles. This patch removes OTHERLIBS entirely from the build system. ---