Why is it not possible recompile GLibc turning off all the optimizations (i.e., -O0)?
Particularly in doing this:
make CFLAGS='-O0 -w' CXXFLAGS='-O0 -w'
I get:
#error "glibc cannot be compiled without optimization"
Why is it not possible recompile GLibc turning off all the optimizations (i.e., -O0)?
Particularly in doing this:
make CFLAGS='-O0 -w' CXXFLAGS='-O0 -w'
I get:
#error "glibc cannot be compiled without optimization"
Basically: "
glibc
is voodoo!" This one "library of all libraries" has a very special place in any system, because virtually(?) everything else in the entire system relies upon it.Therefore, if "someone out there" took the time to prevent you from compiling this library "without optimizations," I cordially invite you to take him/her at their word. "There must be a [very good] reason."
When I Google the error, the first result tells me exactly why.