Is there any link between gcc versions and the version of a kernel ? Specifically, would I be able to install a very old version of gcc onto the latest kernel. Alternatively would I be able to build the latest version of gcc on a very old kernel? Are there any compatibility problems between the two for any version ??
|
You might have trouble compiling new kernels with very old versions of GCC. Besides that, no, GCC versions are not tied to the Linux kernel's version:
With that said, you should be careful about installing an older GCC over a newer GCC, since the newer GCC may be needed. If you're building GCC yourself from source, you can configure the build to install in its own prefix (rather than |
|||
|
|
|
I would be wary of using older GCC versions on newer systems, especially if the older version's executables arent named gcc-1.3 (for example, if in this instance the version is 1.3), because otherwise it may conflict with the current version used for everything on your Ubuntu system, and break things. To answer your question though, the kernel and GCC aren't directly related, but its likely the kernel was built with the GCC version you're using (or slightly older). |
|||
|
|
|
Yes. Some new kernel features need the last version of gcc and glibc to work fine. But it's not a restricted constraint like kernel 3.0.2 work only with gcc 4.2.1. It's more like kernel 3.x work only with gcc 4.2.x |
|||
|
