Android itself has serious NIH syndrome...
Posted Nov 8, 2011 6:15 UTC (Tue) by
khim (subscriber, #9252)
In reply to:
Hmm... by cmccabe
Parent article:
libabc: a demonstration library for kernel developers
Android doesn't use autotools. They knew better than touch that mess.
I know. They create their own mess instead. As usual it makes life easier for them (albeit not by much: lots of Android developers just like lots of Chrome developers hate GYP - but since they must support Windows it stays). When you develop software for android you don't need to bother with all that and use can easily use NDK and autotools.
We already live in a world with a mix of autotools and other things.
No. We live in a world of autotools with some additional abominations here and there. Every time you hit yet another such project (be it pure Makefile-based project like libgd or CMake-based project like OpenSceneGraph) you have a problem. Often the problem is eventually solved by autoconfiscation (last version of libgd uses autotools like sane package), sometimes you must tolerate the abomintation (bzip2 is standard example), but if your project needs such a library it's always a problem.
KDE uses CMake.
Thankfully KDE is it's own "distribution in the distribution": it's hard to use KDE libraries outside of KDE for reasons other then build system thus it's not important what it uses.
MySQL is transitioning from autotools to CMake.
This one is problematic, yes, but one can always switch to MariaDB.
As I've said: non-autoconfiscated libraries are always a problem, but if you are well-established and important project you can get away with it. New library will be just rejected.
The kernel doesn't use autotools (which makes kernel hackers recommending autotools unintentionally ironic.)
This is not a recommendation of kernel hackers. This is recommendation for kernel hackers by people who develop userspace plumbing. Kernel uses it's own conventions because, in a sense, kernel is it's own universe: it can not use standard libraries at all, it must use some foul tricks to make the whole thing work on bare metal, etc.
(
Log in to post comments)