1

How I can to know what is a minimal version of glibc for gcc or binutils?

Regards.

Employed Russian
  • 199,314
  • 34
  • 295
  • 362
Valeriy Solovyov
  • 5,384
  • 3
  • 27
  • 45

1 Answers1

1

binutils doesn't generally have a minimal glibc requirement because it doesn't have too much glibc-specific details in it. it's merely a collection of low level tools like an assembler and linker and objdumper all of which are built on code included in binutils.

gcc is a different beast -- it needs to know intimate details about C library capabilities. in the specific version of gcc you have, consult the INSTALL/index.html file (and particularly, the Prerequisites page) for the requirements.

Mike Frysinger
  • 2,827
  • 1
  • 21
  • 26