3/30/2025 at 8:35:36 PM
One of the most commonly cited drawbacks about C (limited standard library and package management) is something I’ve grown to enjoy when working in a well-loved C codebase.Instead of learning and working with bloated tool chains, every tool in the repo has been built or added carefully for the task at hand. Simplicity provides a lot benefits over time.
by kianN
3/30/2025 at 9:26:47 PM
Even though I love 3rd party tools (SDL my beloved) I still find novel uses in the C library. Especially for string-related problems people say "just do it from first principles". Sometimes snprintf is enough for my debugging!by FiniteIntegral
3/30/2025 at 8:47:54 PM
I don't usually have tools in my repo, I only have my own codeby 01HNNWZ0MV43FF
3/30/2025 at 9:46:47 PM
autotools would like a word with youby dezgeg
3/30/2025 at 10:57:49 PM
Haha I definitely greatly benefit from autotools infrastructure to such a degree that I took it for granted in my above comment.by kianN
3/30/2025 at 8:39:22 PM
C toolchains are the most painful to set up in my experience and have incredible bloat. Familiarity is not simplicityby klysm
3/30/2025 at 9:40:31 PM
Maybe I'm missing something, but what is painful to set up with C toolchains? On almost every *nix, (g)cc, vi(m) and make are enough to be dangerously productive. Sure, you can overcomplicate stuff with modern IDEs and IDE-like tools, but that is out of the realm of the usual C toolchain.by dig1
3/30/2025 at 9:50:48 PM
I’ve never seen a real project that doesn’t use make, cmake, or some other glue on top of gcc/clang. Dependency management is absolute hell as wellby klysm
3/30/2025 at 10:58:28 PM
Are you really putting make and CMake in the same bag? POSIX make and Plan 9 mk are incredibly simple, compared to autotools/CMake; even BSD/GNU make, with all their extensions, are quite simple.Personally, after having gone through a lot (GNU make, sh script + POSIX make, CMake + conan at work), I think a simple POSIX 2024 make + pkgconf(ig) really is enough for simple programs; and Windows devs can use WSL or whatever.
by BoingBoomTschak
3/31/2025 at 2:09:46 AM
They themselves might be “simple” but every real usage I’ve seen has been an impenetrable shitshow.by klysm
3/30/2025 at 10:17:50 PM
Dependency management in C is the hell that you and your dependency make it, alone. You can try to copy a .a file and a directory of headers into your project, or you can try to make a massive graph of 1000 dependencies that needs a SAT solver to untangle.Dependencies are hell in JavaScript, Haskell, and Python too, but you don't notice because the computer works through the most common hells automatically... so developers don't hesitate to create hells. In C, they hesitate.
by immibis
3/31/2025 at 2:24:12 PM
> In C, they hesitate.Looks at most Linux distros.
Are you sure about that?!
by Ygg2
4/1/2025 at 2:40:07 AM
i've started building my C projects with zig, it works quite nicely and has decent support for pulling in C dependencies as well (e.g., https://github.com/allyourcodebase/libxml2)by myko
3/31/2025 at 2:50:25 AM
> dangerously productiveAs in SIGSEGV dangerous? C is a language so simple that together with the lack of libraries it'll drag you down to problems you were not going to stumble into in most alternatives.
Sure, eventually you'll get your own scars and learn the hard way lessons that will stick and give you better intuition on how things work, but I don't feel there's need to keep using C these days beyond learning and doing specific low level stuff.
by dietr1ch
3/31/2025 at 6:46:18 AM
I’ll take a SIGSEGV bug any day over working on memory corruption issues. I have some nasty battle scars in that area.by cocoa19
3/31/2025 at 1:55:29 AM
> what is painful to set up with C toolchains?This reads remarkably tongue-in-cheek, especially when combined with the "dangerously productive" remark a bit later, but: navigating the maze that is picking a C runtime, a libc implementation, a compiler or potentially compiler frontend and backend, a linker, a build tool, a dependency manager, and then figuring out the linking, figuring out the dependency management, figuring out the building process, tackling version control crap (setting up submodules) if needed, then rinse repeat for every single project ever. And if you're targeting not just *nix, but also platforms people actually use (Windows), then this gets especially nasty.
Not your project? Well then you get the chance of taking a deep dive into a random assortment of these, taking up however much of your time. Or you'll just try building it and squash errors as they come. Such a great and sane toolchain and workflow.
All of this is of course completely excluding the very real factor of even knowing about these things, since being even slightly confused about this stuff is an immediate ticket to hours of research on various internet forums to even get to know what it is that you don't know - provided you don't just get sick of all this crap and move on to some other toolchain instead, or start the rote reproduction of some random dood's shitty guide, with the usual outcomes.
by perching_aix
3/31/2025 at 5:57:31 AM
> navigating the maze that is picking a C runtime, a libc implementation, a compiler or potentially compiler frontend and backend, a linker, a build tool, a dependency manager, and then figuring out the linking, figuring out the dependency management, figuring out the building process,You're misrepresenting this somewhat: all but two of those items listed need you to only "pick" a compiler and (as parent said) use Make.
The dependency manager is a problem yes, but lets not misrepresent everything.
by lelanthran
3/31/2025 at 10:18:55 AM
It comes up more when you try stuff multiplatform.Another thing I didn't touch on is the massive compatibility tables for language features one needs to look out for, in case they plan to make their code work on multiple mainstream compilers, which is arguably the prudent thing to do.
I really don't think that considering the C/C++ build story as complex and frustrating would be misrepresentative.
by perching_aix
3/31/2025 at 12:00:53 PM
> I really don't think that considering the C/C++ build story as complex and frustrating would be misrepresentative.Who was talking about C++? This thread was about C, right?
(It's possible that I didn't read very closely upthread, but I'm almost certain that we were all talking about C).
I actually agree that C++ can be a pain in the rear, especially for multiplatform, and you have to pick all your options, etc.
But C? Not so much. Even on multi-platform.
As GP (or GGP, or GGGP, I forget how far upthread it is) said, with C all you need is a compiler, an editor and Make. That's pretty much still true, even if you're using third party libraries.
by lelanthran
3/30/2025 at 10:07:46 PM
The compilers require a bunch of arcane flags to actually do something useful, so you pretty much need some kind of build system or at least a shell script.by xigoi
3/30/2025 at 10:48:21 PM
I have been a Gentoo Linux aficionado for decades. When you set it up you define a set of CFLAGs and CXXFLAGS etc. Those are your globals, your defaults.I am also a human. When I deal with another person I have never met before, I have a set of defaults. I override them as required.
gcc (at least) only requires an input and will behave reasonably and generate: a.out.
You might like to pass -O2 for something a bit more complicated. Beyond that then yes you will need to get into details because any engineering discipline is tricksy!
by gerdesj
3/31/2025 at 5:54:05 AM
> Beyond that then yes you will need to get into details because any engineering discipline is tricksy!When you have multiple files in your project or are using external libraries, pretty much any other programming language will know what tt do. Only C requires you to manually name them in the compilation command even though they’re already named in the file you’re compiling.
by xigoi
3/30/2025 at 10:24:53 PM
> compilers require a bunch of arcane flags to actually do something useful $ gcc lolno.c && ./a.out
lol, no
$
by dmitrygr
3/31/2025 at 5:50:53 AM
Why is the executable named ./a.out and not ./lolno? Why are warnings disabled by default? What if you need to use <math.h>? And that’s just for a single file.by xigoi
3/31/2025 at 9:26:02 AM
> Why is the executable named ./a.out and not ./lolno? $ ls
lolno.c
$ make lolno
cc lolno.c -o lolno
$ ls
lolno lolno.c
by sudahtigabulan
3/30/2025 at 10:47:57 PM
Now do a project with multiple files.by pitaj
3/31/2025 at 5:34:03 AM
Sure. Here's viola, a web browser from the early 90s, with a replacement makefile (GNU make) that's a bit more sane: CC = gcc -std=c99 -Wall -Wextra -pedantic
CFLAGS = -g
LDFLAGS = -g
LDLIBS = -L/usr/X11R6/lib -lICE -lSM -lXpm -lX11 -lXext -lXmu -lXt -lm
VIOLA_PATH := $(shell pwd)/resources
override CFLAGS += -DPOSIX_C_SOURCE=199309L \
-D_POSIX_SOURCE -D_XOPEN_SOURCE \
-D_BSD_SOURCE -D_SVID_SOURCE \
-DDEFAULT_VIOLA_PATH='"$(VIOLA_PATH)"'\
-DVIOLA
%.a:
$(AR) $(ARFLAGS) $@ $?
viola/viola: $(patsubst %.c,%.o,$(wildcard viola/*.c)) \
libIMG/libIMG.a \
libXPA/src/libxpa.a \
libStyle/libStyle.a \
libWWW/libWWW.a \
parmcheck.o
libIMG/libIMG.a : $(patsubst %.c,%.o,$(wildcard libIMG/*.c))
libXPA/src/libxpa.a : $(patsubst %.c,%.o,$(wildcard libXPA/src/*.c))
libStyle/libStyle.a : $(patsubst %.c,%.o,$(wildcard libStyle/*.c))
libWWW/libWWW.a : $(patsubst %.c,%.o,$(wildcard libWWW/*.c))
It's 155,000 lines of C code across 361 files. Not shown are the nearly 900 lines that make up the dependencies, but using `makedepend` (which came with my system) makes short work of that. I have a more complicated project that compiles an application written in Lua into a Linux executable. It wasn't hard to write, given that you can always add new rules to `make`, such as converting a `.lua` file to a `.o` file: %.o : %.lua
$(BIN2C) $(B2CFLAGS) -o $*.l.c $<
$(CC) $(CFLAGS) -c -o $@ $*.l.c
$(RM) $*.l.c
Okay, that requires a custom tool (`bin2c`) but can other build systems do this? I honestly don't know.
by spc476
3/30/2025 at 11:24:49 PM
That still doesn't require any flags. Where it starts to get complicated is when you link in system libraries, because they vary between OSes and different versions/distros of the same OS. If you need to support multiple platforms this quickly becomes combinatorially complex, which is where Makefile hell comes from.by Calavar
3/30/2025 at 10:49:08 PM
Great, now do TLS, a GUI, graphics rendering or database access.by Macha
3/30/2025 at 10:57:26 PM
Use stunnel for TLS. A benefit is that if you properly sandbox the daemon behind it, a compromise in the daemon behind TLS does not result in the server key being compromised.A GUI could be done in SDL+Nuklear, GTK+ or others.
Database access from C is easy, since the databases are written in C and provide C APIs for access.
by ryao
3/31/2025 at 4:40:06 AM
Can you use those libraries without a bunch of arcane compiler flags? Because that's what the argument was about.by Dylan16807
3/31/2025 at 11:57:06 AM
stunnel is not a library and linking to C libraries is easy.by ryao
3/31/2025 at 12:47:04 AM
You're not wrong, but you're closer to wrong than right. C toolchains are the best of a collection of rather sucky things.I can compile all sorts of things on my Mac LC III+ with 36 megabytes of memory. Sure, Perl takes nine days, but it works. What other language can actually be used on a machine with such little memory?
by johnklos
3/31/2025 at 2:22:31 AM
That’s a weird performance measuring stick to use, and I don’t see how it’s relatedby klysm
3/31/2025 at 6:45:36 AM
From what I’ve heard, Nim is being successfully used on microcontrollers.by xigoi
3/30/2025 at 8:42:51 PM
I’ve never been on a system that doesn’t have either gcc or clang built in.But disclaimer that my experience in C is limited to a specific subset of scientific computing, so my experience is definitely limited
by kianN
3/30/2025 at 9:57:27 PM
Windows, for one.by maccard
3/30/2025 at 11:31:40 PM
That’s on you for using Windows.by sgarland
3/31/2025 at 7:21:43 AM
My experience with "portable" software is that it's portable as long as you're using the same OS and toolchain as the author.Other systems exist, and plenty of us are less belligerent about our choice of OS.
by maccard
3/31/2025 at 12:04:38 AM
As for windows, I always assume you need to install an IDE like visual studio, clion, codeblocks.by skydhash
3/31/2025 at 8:19:01 AM
Cmd and powershell exist and have done for a long time. There was a period of time where the visual C++ compiler was bundled with the IDE but it’s been available separately for the best part of a decade. Various incarnations of gnu-on-windows have existed for longer than that - Msys/cygwin/wsl are all feasible options and have been for ages.But, none of them come preinstalled.
by maccard
3/30/2025 at 9:51:19 PM
gcc/clang isn’t really sufficient though right? Usually there is another build system on topby klysm
3/30/2025 at 10:23:41 PM
I haven’t seen a system that has GCC but lacks makeby dmitrygr
3/30/2025 at 11:03:39 PM
Yeah, but is it a version of make that's compatible with your makefiles?by inferiorhuman
3/31/2025 at 12:01:33 AM
likely yes?I've never had problems with make versions specifically. Usually the project requires distro at most X years old because of gcc/clang version or shared library version. By the time you solve those, your make is new enough as well.
by theamk
3/31/2025 at 1:01:10 AM
I mean yeah if all you're using is Linux then the issues with buggy versions of GNU make is something you've probably not seen in a while. Apple is still on 3.81 due to GPLv3 which means bugs. None of the BSDs ship with GNU make in the base system, and I believe they all install it at gmake (which means you've gotta be careful about hardcoding calls to make.by inferiorhuman
3/31/2025 at 1:48:12 AM
It is possible to write portable make files that work with both.by ryao
3/31/2025 at 2:22:48 AM
The pain in doing so and the very real chance you're trying to do something that can't be done in a portable manner is why things like cmake (and every other build system under the sun) exist.by inferiorhuman
3/31/2025 at 7:22:23 AM
In my experience as a regular MacOS user, the "portable" solution is to install the version of make that everyone else uses (i.e. it's not portable)by maccard
3/30/2025 at 10:54:23 PM
I only use clang with a Makefile and I’ve done some relatively complex projects albeit with only a few collaborators.by kianN
3/31/2025 at 5:54:18 AM
> C toolchains are the most painful to set up in my experience and have incredible bloat. Familiarity is not simplicityWhat are you comparing it to? C++? Java?
by lelanthran
3/30/2025 at 9:04:14 PM
Couldn’t agree more. Vcpkg + CMake doesn’t come close to the convenience of NuGet + MSBuild. The latter Just Works every time. You can’t say the same about C.by jimbob45
3/31/2025 at 12:02:51 AM
I think Windows is really best served by Microsoft technologies and Microsoft languages. If you want C, there is WSL.by theamk
4/2/2025 at 12:17:23 AM
Microsoft has been doing C and C++ for a lot longer than it has been doing .NET.by int_19h
3/30/2025 at 9:53:16 PM
Once you set things up, chances are it'll still build just fine in 5 years tho.by checker659
3/30/2025 at 10:41:16 PM
What are the "least painful" toolchains to set up.How do they compare to GCC in (a) size and (b) portability.
by 1vuio0pswjnm7
4/1/2025 at 6:07:04 PM
Example sizes of statically-compiled (portable) toolchains328.7M llvmbox-15.0.7+3-x86_64-linux
242.3M x86_64-linux-musl-native
169.4M x86_64-linux-musl-cross
A statically-compiled Rust toolchain would exceed these sizes by a relatively large margin
References
https://github.com/savi-lang/llvm-static/releases/expanded_a...
https://users-rust-lang.org/t/how-to-build-a-statically-link...
by 1vuio0pswjnm7
4/2/2025 at 3:12:25 AM
Correction: https://github.com/rsms/llvmbox/releases/expanded_assets/v15...by 1vuio0pswjnm7
4/1/2025 at 5:41:08 PM
Is cmake actually a requirement for compiling LLVM such that one must compile cmake before one can compile LLVM.Compiling a statically-linked cmake is time-consuming and difficult if not infeasible.
by 1vuio0pswjnm7
3/31/2025 at 2:10:23 AM
Is python actually a requirement for compiling the rust toolchain so compiling rust toolchain requires compiling python firsthttps://rustc-dev-guide.rust-lang.org/building/how-to-build-...
by 1vuio0pswjnm7
3/31/2025 at 2:23:07 AM
Then the c toolchain needs to also be considered from a bootstrapping standpointby klysm
3/30/2025 at 11:24:14 PM
LLVM is a bit easier to set up in my experience. One of the most irritating things about setting up a GNU toolchain is the hard dependency on texinfo (which has been dropped in later versions I think).In general I've found rust pretty easy to build.
by inferiorhuman
4/1/2025 at 5:58:29 PM
Agree regarding easiness of building rust (`cargo build`), extremely satisfying (git clone and cargo build...)Does anyone have any comments on Bazel[1] because I'm kind of settling on using it whenever it's appropriate (c/c++)?..
by wfn