How to compile glibc

Asked 2 years ago, Updated 2 years ago, 42 views

Glibc 2.26.9000 version

From the home directory

~$ git clone git://sourceware.org/git/glibc.git

~$ ~$ cd glibc

~/glibc$ mkdir build

~/glibc$ cd build

~/glibc/build$ ../configure

~/glibc/build$ make

~/glibc/build$ make install

I want to compile and install it through the process, but is this the process of installing glibc source after compiling it on my Ubuntu?

After../configure

I hit make, but it says there's no rule to make, so I can't make itTT

glibc source compiled the installation process is wonder that's right.

The version of gcc is 5.4.0 and

glibc ubuntu

2022-09-21 19:39

1 Answers

Ah, after ../configure, the --disable-sanity-checks option is not given, so the makefile is not created It didn't work I am attaching the address of stack overflow below for your reference

https://stackoverflow.com/questions/10412684/compiling-your-own-glibc


2022-09-21 19:39

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.