this post was submitted on 06 Apr 2024
70 points (96.1% liked)
Linux
48193 readers
1064 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I agree that autocrap is the worst build system in use now. However writing plain
Makefile
s is not an option for projects that are more complex than hello world. It is very difficult to write them portably (between various OSes, compilers andmake
implementations) and to support cross compiling. That's why developers used to writeconfigure
scripts that evolved to autocrap.Happily we have better alternatives like
cmake
andmeson
(I personally prefercmake
and don't likemeson
, but it is also a good build system solving the complexity problem).Agreed. One flaw of autotools imho is that writes the configure script in sh. The rational was that the target system might not have other stuff installed.
However, it resulted in a machine-generated (very complex) shell script often without any comment. People also modify the generated shell script itself, because it's committed in the project's git repository. This is one reason why the problem explained in this blog got unnoticed.