I'm just starting out with Linux and I've realized that compiling binaries is a key part of the experience. I'm debating whether to go with the older toolchain, GCC, or try the newer LLVM. Any advice on which one would be better for someone new to this journey?
2 Answers
Honestly, I've been using Linux for about 20 years and have only compiled a handful of binaries. Both GCC and LLVM are solid choices, so just pick one and you'll be fine!
Both compilers are actively maintained and have their own pros and cons. They also support most architectures you’ll encounter. Unless you have specific needs for compiling, it really comes down to what you personally prefer. Oh, and you can totally have both installed without any conflicts on your system!
That's good to know! So I can experiment with both without worrying about issues?