Tagged Questions
The GNU C library is used as the C library in the GNU system and most systems with the Linux kernel. It defines the "system calls" and other basic facilities such as open, malloc, printf, exit, etc.
18
votes
4answers
5k views
Using C++ library in C code
I have a C++ library that provides various classes for managing data. I have the source code for the library.
I want to extend the C++ API to support C function calls so that the library can be used ...
16
votes
3answers
501 views
building a .so that is also an executable
So everyone probably knows that glibc's /lib/libc.so.6 can be executed in the shell like a normal executable in which cases it prints its version information and exits. This is done via defining an ...
13
votes
2answers
12k views
/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found
How can I get GLIBCXX_3.4.15 in Ubuntu? I can't run some programs that I'm compiling.
When I do:
strings /usr/lib/libstdc++.so.6 | grep GLIBC
I get:
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
...
10
votes
1answer
228 views
Linux-x64 glibc: Why does Feb 1 come before Jan 31?
When you call mktime(), Feb 1 seems to come before Jan 31. Why is this? Am I doing something wrong or is this a bug in glibc?
Here's the code:
struct tm tm;
time_t tt;
memset(&tm, 0, ...
10
votes
5answers
2k views
Will malloc implementations return free-ed memory back to the system?
I have a long-living application with frequent memory allocation-deallocation. Will any malloc implementation return freed memory back to the system?
What is, in this respect, the behavior of:
...
9
votes
1answer
4k views
How can I link to a specific glibc version?
When I compile something on my Ubuntu Lucid 10.04 PC it gets linked against glibc. Lucid uses 2.11 of glibc. When I run this binary on another PC with an older glibc, the command fails saying there's ...
8
votes
2answers
4k views
GLIBCXX versions
If I compile a C++ program on my machine, and run it on another one (with older software) I get: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found.
In fact on my system glibc is newer (I got ...
8
votes
2answers
281 views
What's the best way to build software that doesn't require the newest glibc?
I'm attempting to build a binary package that can be run on multiple Linux distributions. It's currently built on Ubuntu 10.04, but it fails on Ubuntu 8.04 with the following error:
./test: ...
8
votes
4answers
2k views
Compiling without libc
I want to compile my C-code without the (g)libc. How can I deactivate it and which functions depend on it?
I tried -nostdlib but it doesn't help: The code is compilable and runs, but I can still find ...
8
votes
3answers
3k views
using glibc malloc hooks in a thread safe manner
I would like to monitor the use of mallocs and frees in an application by using the malloc and free hooks.
Here's the documentation http://www.gnu.org/s/libc/manual/html_node/Hooks-for-Malloc.html
...
8
votes
4answers
12k views
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 causing it?
Is there a way to force an abort? I recall there being an ENV ...
7
votes
2answers
436 views
perl process gets stuck with «*** glibc detected *** perl: corrupted double-linked list: 0x0000000001474b40 ***» - how can I make it terminate?
I've been trying to debug a memory corruption with perl 5 and XML::LibXML (which I now maintain). Now here's what I'm getting:
...
7
votes
1answer
304 views
How are POSIX cancellation points supposed to behave?
I've been looking at glibc/nptl's implementation of cancellation points, and comparing it to POSIX, and unless I'm mistaken it's completely wrong. The basic model used is:
int oldtype = ...
7
votes
9answers
1k views
printf slows down my program
I have a small C program to calculate hashes (for hash tables). The code looks quite clean I hope, but there's something unrelated to it that's bugging me.
I can easily generate about one million ...
7
votes
3answers
4k views
Pthread mutex assertion error
I'm encountering the following error at unpredictable times in a linux-based (arm) communications application:
pthread_mutex_lock.c:82: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' ...
6
votes
2answers
331 views
glibc backtrace - can't redirect output to file
I'm in the process of debugging a C program (that I didn't write). I have all of the internal debugging tools (a whole bunch of printf's) enabled, and I wrote a small PHP script that uses proc_open() ...
6
votes
3answers
263 views
How to tell if glibc is used
I am trying to implement backtrace functionality for a large framework, which is used for different platforms and OS'es. In some of them, it is linked against glibc, while in the other, something ...
6
votes
3answers
2k views
Linux static linking is dead?
In fact, -static gcc flag on Linux doesn't work now. Let me cite from the GNU libc FAQ:
2.22. Even statically linked programs need some shared libraries
which is not acceptable for me. What
...
6
votes
3answers
202 views
File descriptor leak in nftw(FTW_CHDIR)?
I am using the POSIX call nftw() for traversing a directory structure. The directory structure is flat - only 4 files and no subdirectories.
However when I call nftw() a lot of times on this flat ...
6
votes
1answer
488 views
Does anybody know if someone had integrated libsegfault.so and gdbserver in order to get gdb attached on the fly to a crashed program?
It's mentioned in http://sourceware.org/ml/gdb/2007-06/msg00360.html before.
But no one seemed to have actually implemented this kind of idea.
Is there any obstacles for realizing this?
My ...
6
votes
4answers
1k views
Is there an auto-resizing array/dynamic array implementation for C that comes with glibc?
Is there a dynamic array implementation in glibc or any of the standard Linux libraries for C? I want to be able to add to a list without worrying about its size. I know std::vector exists for C++, ...
5
votes
2answers
95 views
how to port c/c++ applications to legacy linux kernel versions
Ok, this is just a bit of a fun exercise, but it can't be too hard compiling programmes for some older linux systems, or can it?
I have access to a couple of ancient systems all running linux and ...
5
votes
4answers
126 views
What corner cases must we consider when parsing $PATH on Linux?
I'm working on a C application that has to walk $PATH to find full pathnames for binaries, and the only allowed dependency is glibc (i.e. no calling external programs like which). In the normal case, ...
5
votes
5answers
521 views
mmap fails when length is larger the 4G
(The correct code in in 'Update 5')
I tried to map a range of memory from 0x100000000 to 0x200000000 in this example C code:
#include <stdio.h>
#include <stdlib.h>
#include ...
5
votes
3answers
876 views
Why does glibc “timezone” global not agree with system time on DST?
I'm experiencing a bizarre issue where my system clock knows that it's daylight savings time, but glibc seems not to. This is an up-to-date Ubuntu installation, and I have checked /etc/localtime and ...
4
votes
1answer
312 views
_GNU_SOURCE and __USE_GNU
I want to use CPU_SET, which is a glibc linux-specific macro that should be defined in sched.h The manpage clearly states that _GNU_SOURCE must be defined so that the macro is defined. However, ...
4
votes
6answers
434 views
Can't link a C program
I'm trying to compile a C program under Linux. However, out of curiosity, I'm trying to execute some steps by hand: I use the gcc frontend to produce assembler code, then run the GNU assembler to get ...
4
votes
2answers
1k views
Executing binary: `GLIBCXX_3.4.11' not found
I'm trying to run some pre-compiled code but I'm getting the following error:
./bin/stipdet: /cm/shared/apps/gcc/4.3.4/lib64/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by ...
4
votes
1answer
181 views
Does linking an `-lpthread` changes application behaviour? (Linux, Glibc)
I have a question: if we have an application, which uses no threads, we can link it in two ways:
1) Link as usual, without -lpthread and -ldl
2) Add to the link two libraries: libpthread and libdl.
...
4
votes
3answers
270 views
Why does gcc place a “halt” instruction in programs after the call to “main”?
When looking at an elf executable produced by gcc on a Linux/i386 system, it seems that it alwas places a halt instruction (0xf4) after the call to “main” and before the “nop” padding, such as this:
...
4
votes
1answer
241 views
Is there an equivalent of set_new_handler() for malloc() failures?
In C++, you can arrange for a function to be called whenever new fails. Is there a way to have a function called whenever malloc fails? Assume that malloc is being called from third-party libraries ...
4
votes
1answer
639 views
open O_CREAT | O_EXCL on NFS in Linux?
When in the Linux 2.6 kernel and in NFSv3 did open("fname", O_CREAT|O_EXCL) became valid? The current canonical open(2) system call documentation ...
4
votes
1answer
188 views
How long does Glibc take to compile?
I've been compiling it in a virtual machine for over 8 hours now and it still hasn't finished.
The terminal is still printing things so I know it's still compiling.
The host system is a 2.10Ghz ...
4
votes
3answers
844 views
Can I make valgrind ignore glibc libraries?
Is it possible to tell valgrind to ignore some set of libraries?
Specifically glibc libraries..
Actual Problem:
I have some code that runs fine in normal execution. No leaks etc.
When I try to run ...
4
votes
1answer
662 views
glibc Heap Consistency Checking
According to posts from 2008 (I can't find it right now), glibc heap check doesn't work in multithreaded environment. Is it still situation now in 2010?
Does heap check enabled by default? (gcc ...
4
votes
1answer
8k views
GLIBCXX_3.4.9 not found
I have a problem concerning libstdc++.so.
I installed a new version of gcc and tried to compile c++ code. The compiling worked, but when I try to execute the binary (m5.opt is its name) I've got the ...
4
votes
3answers
8k views
Multiple glibc libraries on a single host
Multiple glibc libraries on a single host
My linux (SLES-8) server currently has glibc-2.2.5-235, but I have a program which won't work on this version and requires glibc-2.3.3.
Is it possible to ...
4
votes
4answers
254 views
Where does glibc get its database of unicode attributes?
Where does glibc get its database of unicode attributes, for such functions as eg, wcwidth()? I'm interested in correcting a few errant entries, but I can't seem to find where this information is in ...
4
votes
3answers
2k views
Statically linking to a dynamic library. glibc
So. I have a problem where I have two versions of GCC on a machine.
3.4.6 and 4.1
This is due to some dependency issues with a new piece of software. (requires glibc 4.1)
When I go to link this ...
4
votes
2answers
2k views
What size should I allow for strerror_r?
The OpenGroup POSIX.1-2001 defines strerror_r, as does The Linux Standard Base Core Specification 3.1. But I can find no reference to the maximum size that could be reasonably expected for an error ...
4
votes
1answer
1k views
How to use getaddrinfo_a to do async resolve with glibc
An often overlooked function that requires no external library, but basically has no documentation whatsoever.
3
votes
1answer
109 views
squelching glibc memory corruption stack trace output
Is there any way to squelch the output that glibc generates when there is memory corruption? Here's what I'm seeing
make
*** glibc detected *** /home/myname/php/sapi/cli/php: free(): invalid pointer: ...
3
votes
4answers
164 views
Need help with glibc source
So I was looking through the linux glibc source and I don't see where it actually does anything. The following is from io/chdir.c but it is indicative of many of the source files. What's going on ...
3
votes
1answer
544 views
error while using make to compile Glibc-2.11.1 for Linux From Scratch
I am building LFS and I am in the part where we need to install Glibc-2.11.1
http://www.linuxfromscratch.org/lfs/view/6.6/chapter05/glibc.html
I have successfully configured it but I cant run the ...
3
votes
1answer
107 views
How to build a reliable toolchain
Please guide me through the steps required to build a basic toolchain sufficient to build a bootable linux image and discuss why things should be done the way you suggest.
Pointers to existing ...
3
votes
2answers
139 views
Program not exiting after using POSIX timers
Consider the following program:
#define _POSIX_C_SOURCE 200809L
#include <time.h>
#include <pthread.h>
#include <signal.h>
void timerfunc(union sigval val) { }
int main()
{
...
3
votes
1answer
315 views
MAP_ANONYMOUS with C99 standard
I have an application that uses the mmap system call, I was having an issue getting it to compile for hours looking as to why I was getting MAP_ANON and MAP_ANONYMOUS were undeclared, I had a smaller ...
3
votes
5answers
245 views
printf'ing a matrix
I'm trying to implement an all-purpose function for printing 2D data. What I've come up with is:
int mprintf(FILE* f, char* fmt, void** data, size_t cols, size_t rows)
The challenge is determining ...
3
votes
4answers
1k views
How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?
The code I'm working on runs perfectly on Windows XP and on Mac OS X. When testing it on CentOS (and on Fedora and Ubuntu), it's not working properly. Searching the nets led me to the conclusion that ...
3
votes
1answer
366 views
Proprietary applications using software library with LGPL license
I am interested to learn about how proprietary applications, that are statically or dynamically linked to GNU C Library (glibc) or any other software library with LGPL license, are describing their ...