Top "Glibc" questions

The GNU C library is used as the C library in the GNU system and most systems with the Linux kernel.

How to compile glibc 32bit on an x86_64 machine

I'm trying to compile glibc (as a secondary, not a system replacement) 2.6 on an x86_64, and trying to get it …

linux glibc
Error: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.27'

I am building my node module (using N-API) both for Mac (10.9+) and Linux (Ubuntu 18). When I am deploying my module …

node.js linux compilation glibc node-gyp
Compiling with -static-libgcc -static-libstdc++ still results in dynamic dependency on libc.so

I'm trying to make an executable that's as portable as possible. After removing a few dependencies, I came across the …

c++ c gcc glibc static-linking
How to sleep for a few microseconds

Consider the following code: #include <stdio.h> #include <time.h> #include <math.h> // Compile …

c linux real-time glibc libc
GLIBC_2.7 not found

I am getting the following error when trying to run several executables: /lib/libc.so.6: version `GLIBC_2.7' not found (…

centos glibc libc
Error while running chromedriver: "/lib64/libc.so.6: version `GLIBC_2.14' not found" in CentOS6

I am trying to launch chromedriver on CentOS 6. More about the OS <code>[root@localhost bin]# uname --all …

glibc selenium-chromedriver
How to force abort on "glibc detected *** free(): invalid pointer"

In Linux environment, when getting "glibc detected *** free(): invalid pointer" errors, how do I identify which line of code is …

linux memory-management glibc
Linking a C program directly with ld fails with undefined reference to `__libc_csu_fini`

I'm trying to compile a C program under Linux. However, out of curiosity, I'm trying to execute some steps by …

c gcc linker glibc ld
error: 'std::this_thread' has not been declared

I try to use std::this_thread::sleep_for() function but got the error error: 'std::this_thread' has not …

c++ c++11 gcc mingw glibc
Writing to a closed, local TCP socket not failing

I seem to be having a problem with my sockets. Below, you will see some code which forks a server …

c linux sockets tcp glibc