Update.
[platform/upstream/glibc.git] / FAQ
1                 Frequently Asked Question on GNU C Library
2
3 As every FAQ this one also tries to answer questions the user might have
4 when using the package.  Please make sure you read this before sending
5 questions or bug reports to the maintainers.
6
7 The GNU C Library is very complex.  The building process exploits the
8 features available in tools generally available.  But many things can
9 only be done using GNU tools.  Also the code is sometimes hard to
10 understand because it has to be portable but on the other hand must be
11 fast.  But you need not understand the details to use GNU C Library.
12 This will only be necessary if you intend to contribute or change it.
13
14 If you have any questions you think should be answered in this document,
15 please let me know.
16
17                                                   --drepper@cygnus.com
18 \f
19 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
20 [Q1]    ``What systems does the GNU C Library run on?''
21
22 [Q2]    ``What compiler do I need to build GNU libc?''
23
24 [Q3]    ``When starting make I get only error messages.
25           What's wrong?''
26
27 [Q4]    ``After I changed configure.in I get `Autoconf version X.Y.
28           or higher is required for this script'.  What can I do?''
29
30 [Q5]    ``Do I need a special linker or archiver?''
31
32 [Q6]    ``Do I need some more things to compile GNU C Library?''
33
34 [Q7]    ``When I run `nm -u libc.so' on the produced library I still
35           find unresolved symbols?  Can this be ok?''
36
37 [Q8]    ``Can I replace the libc on my Linux system with GNU libc?''
38
39 [Q9]    ``I expect GNU libc to be 100% source code compatible with
40           the old Linux based GNU libc.  Why isn't it like this?''
41
42 [Q10]   ``Why does getlogin() always return NULL on my Linux box?''
43
44 [Q11]   ``Where are the DST_* constants found in <sys/time.h> on many
45           systems?''
46
47 [Q12]   ``The `gencat' utility cannot process the input which are
48           successfully used on my Linux libc based system.  Why?''
49
50 [Q13]   ``How do I configure GNU libc so that the essential libraries
51           like libc.so go into /lib and the other into /usr/lib?''
52
53 [Q14]   ``When linking with the new libc I get unresolved symbols
54           `crypt' and `setkey'.  Why aren't these functions in the
55           libc anymore?''
56
57 [Q15]   ``What are these `add-ons'?''
58
59 [Q16]   ``When I use GNU libc on my Linux system by linking against
60           to libc.so which comes with glibc all I get is a core dump.''
61
62 [Q17]   ``Looking through the shared libc file I haven't found the
63           functions `stat', `lstat', `fstat', and `mknod' and while
64           linking on my Linux system I get error messages.  How is
65           this supposed to work?''
66
67 [Q18]   ``The prototypes for `connect', `accept', `getsockopt',
68           `setsockopt', `getsockname', `getpeername', `send',
69           `sendto', and `recvfrom' are different in GNU libc than
70           on any other system I saw.  This is a bug, isn't it?''
71
72 [Q19]   ``My XXX kernel emulates a floating-point coprocessor for me.
73           Should I enable --with-fp?''
74
75 [Q20]   ``How can I compile gcc 2.7.2.1 from the gcc source code using
76           glibc 2.x?
77
78 [Q21]    ``On Linux I've got problems with the declarations in Linux
79            kernel headers.''
80
81 [Q22]   ``When I try to compile code which uses IPv6 header and
82           definitions on my Linux 2.x.y system I am in trouble.
83           Nothing seems to work.''
84
85 [Q23]   ``When compiling GNU libc I get lots of errors saying functions
86           in glibc are duplicated in libgcc.''
87
88 [Q24]   ``I have set up /etc/nis.conf, and the Linux libc 5 with NYS
89           works great.  But the glibc NIS+ doesn't seem to work.''
90
91 [Q25]   ``After installing glibc name resolving doesn't work properly.''
92
93
94 [Q26]   ``I have /usr/include/net and /usr/include/scsi as symlinks
95           into my Linux source tree.  Is that wrong?''
96
97 [Q27]   ``Programs like `logname', `top', `uptime' `users', `w' and
98           `who', show incorrect information about the (number of)
99           users on my system.  Why?''
100
101 [Q28]   ``After upgrading to a glibc 2.1 with symbol versioning I get
102           errors about undefined symbols.  What went wrong?''
103 \f
104 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
105 [Q1]    ``What systems does the GNU C Library run on?''
106
107 [A1] {UD} This is difficult to answer.  The file `README' lists the
108 architectures GNU libc is known to run *at some time*.  This does not
109 mean that it still can be compiled and run on them in the moment.
110
111 The systems glibc is known to work on in the moment and most probably
112 in the future are:
113
114         *-*-gnu                 GNU Hurd
115         i[3456]86-*-linux-gnu   Linux-2.0 on Intel
116         m68k-*-linux-gnu        Linux-2.0 on Motorola 680x0
117         alpha-*-linux-gnu       Linux-2.0 on DEC Alpha
118         powerpc-*-linux-gnu     Linux and MkLinux on PowerPC systems
119
120 Other Linux platforms are also on the way to be supported but I need
121 some success reports first.
122
123 If you have a system not listed above (or in the `README' file) and
124 you are really interested in porting it, contact
125
126         <bug-glibc@prep.ai.mit.edu>
127
128
129 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
130 [Q2]    ``What compiler do I need to build GNU libc?''
131
132 [A2] {UD} It is (almost) impossible to compile GNU C Library using a
133 different compiler than GNU CC.  A lot of extensions of GNU CC are
134 used to increase the portability and speed.
135
136 But this does not mean you have to use GNU CC for using the GNU C
137 Library.  In fact you should be able to use the native C compiler
138 because the success only depends on the binutils: the linker and
139 archiver.
140
141 The GNU CC is found like all other GNU packages on
142         ftp://prep.ai.mit.edu/pub/gnu
143 or better one of the many mirror sites.
144
145 You always should try to use the latest official release.  Older
146 versions might not have all the features GNU libc could use.  It is
147 known that on most platforms compilers earlier than 2.7.2.3 fail so
148 at least use this version.
149
150
151 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
152 [Q3]    ``When starting `make' I get only errors messages.
153           What's wrong?''
154
155 [A3] {UD} You definitely need GNU make to translate GNU libc.  No
156 other make program has the needed functionality.
157
158 Versions before 3.74 have bugs which prevent correct execution so you
159 should upgrade to the latest version before starting the compilation.
160
161
162 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
163 [Q4]    ``After I changed configure.in I get `Autoconf version X.Y.
164           or higher is required for this script'.  What can I do?''
165
166 [A4] {UD} You have to get the specified autoconf version (or a later)
167 from your favourite mirror of prep.ai.mit.edu.
168
169
170 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
171 [Q5]    ``Do I need a special linker or archiver?''
172
173 [A5] {UD} If your native versions are not too buggy you can probably
174 work with them.  But GNU libc works best with GNU binutils.
175
176 On systems where the native linker does not support weak symbols you
177 will not get a really ISO C compliant C library.  Generally speaking
178 you should use the GNU binutils if they provide at least the same
179 functionality as your system's tools.
180
181 Always get the newest release of GNU binutils available.
182 Older releases are known to have bugs that affect building the GNU C
183 Library.
184
185
186 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
187 [Q6]    ``Do I need some more things to compile GNU C Library?''
188
189 [A6] {UD} Yes, there are some more :-).
190
191 * GNU gettext; the GNU libc is internationalized and partly localized.
192   For bringing the messages for the different languages in the needed
193   form the tools from the GNU gettext package are necessary.  See
194   ftp://prep.ai.mit.edu/pub/gnu or better any mirror site.
195
196 * lots of diskspace (for i?86-linux this means, e.g., ~170MB; for ppc-linux
197   even ~200MB).
198
199   You should avoid compiling on a NFS mounted device.  This is very
200   slow.
201
202 * plenty of time (approx 1h for i?86-linux on i586@133 or 2.5h on
203   i486@66 or 4.5h on i486@33), both for shared and static only).
204   Multiply this by 1.5 or 2.0 if you build profiling and/or the highly
205   optimized version as well.  For Hurd systems times are much higher.
206
207   For Atari Falcon (Motorola 68030 @ 16 Mhz, 14 Mb memory) James Troup
208   <J.J.Troup@comp.brad.ac.uk> reports for a full build (shared, static,
209   and profiled) a compile time of 45h34m.
210
211   For Atari TT030 (Motorola 68030 @ 32 Mhz, 34 Mb memory) (full build)
212   a compile time of 22h48m.
213
214   If you have some more measurements let me know.
215
216 * When compiling for Linux:
217
218   + the header files of the Linux kernel must be available in the
219     search path of the CPP as <linux/*.h> and <asm/*.h>.
220
221 * Some files depend on special tools.  E.g., files ending in .gperf
222   need a `gperf' program.  The GNU version (part of libg++) is known
223   to work while some vendor versions do not.
224
225   You should not need these tools unless you change the source files.
226
227 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
228 [Q7]    ``When I run `nm -u libc.so' on the produced library I still
229           find unresolved symbols?  Can this be ok?''
230
231 [A7] {UD} Yes, this is ok.  There can be several kinds of unresolved
232 symbols:
233
234 * magic symbols automatically generated by the linker.  Names are
235   often like __start_* and __stop_*
236
237 * symbols starting with _dl_* come from the dynamic linker
238
239 * symbols resolved by using libgcc.a
240   (__udivdi3, __umoddi3, or similar)
241
242 * weak symbols, which need not be resolved at all
243   (currently fabs among others; this gets resolved if the program
244    is linked against libm, too.)
245
246 Generally, you should make sure you find a real program which produces
247 errors while linking before deciding there is a problem.
248
249
250 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
251 [Q8]    ``Can I replace the libc on my Linux system with GNU libc?''
252
253 [A8] {UD} You cannot replace any existing libc for Linux with GNU
254 libc.  There are different versions of C libraries and you can run
255 libcs with different major version independently.
256
257 For Linux there are today two libc versions:
258         libc-4          old a.out libc
259         libc-5          current ELF libc
260
261 GNU libc will have the major number 6 and therefore you can have this
262 additionally installed.  For more information consult documentation for
263 shared library handling.  The Makefiles of GNU libc will automatically
264 generate the needed symbolic links which the linker will use.
265
266
267 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
268 [Q9]    ``I expect GNU libc to be 100% source code compatible with
269           the old Linux based GNU libc.  Why isn't it like this?''
270
271 [A9] {DMT,UD} Not every extension in Linux libc's history was well
272 thought-out.  In fact it had a lot of problems with standards compliance
273 and with cleanliness.  With the introduction of a new version number these
274 errors now can be corrected.  Here is a list of the known source code
275 incompatibilities:
276
277 * _GNU_SOURCE: glibc does not automatically define _GNU_SOURCE.  Thus,
278   if a program depends on GNU extensions or some other non-standard
279   functionality, it is necessary to compile it with C compiler option
280   -D_GNU_SOURCE, or better, to put `#define _GNU_SOURCE' at the beginning
281   of your source files, before any C library header files are included.
282   This difference normally manifests itself in the form of missing
283   prototypes and/or data type definitions.  Thus, if you get such errors,
284   the first thing you should do is try defining _GNU_SOURCE and see if
285   that makes the problem go away.
286
287   For more information consult the file `NOTES' part of the GNU C
288   library sources.
289
290 * reboot(): GNU libc sanitizes the interface of reboot() to be more
291   compatible with the interface used on other OSes.  In particular,
292   reboot() as implemented in glibc takes just one argument.  This argument
293   corresponds to the third argument of the Linux reboot system call.
294   That is, a call of the form reboot(a, b, c) needs to be changed into
295   reboot(c).
296      Beside this the header <sys/reboot.h> defines the needed constants
297   for the argument.  These RB_* constants should be used instead of the
298   cryptic magic numbers.
299
300 * swapon(): the interface of this function didn't changed, but the
301   prototype is in a separate header file <sys/swap.h>.  For the additional
302   argument of swapon() you should use the SWAP_* constants from
303   <linux/swap.h>, which get defined when <sys/swap.h> is included.
304
305 * errno: If a program uses variable "errno", then it _must_ include header
306   file <errno.h>.  The old libc often (erroneously) declared this variable
307   implicitly as a side-effect of including other libc header files.  glibc
308   is careful to avoid such namespace pollution, which, in turn, means that
309   you really need to include the header files that you depend on.  This
310   difference normally manifests itself in the form of the compiler
311   complaining about the references of the undeclared symbol "errno".
312
313 * Linux-specific syscalls: All Linux system calls now have appropriate
314   library wrappers and corresponding declarations in various header files.
315   This is because the syscall() macro that was traditionally used to
316   work around missing syscall wrappers are inherently non-portable and
317   error-prone.  The following tables lists all the new syscall stubs,
318   the header-file declaring their interface and the system call name.
319
320        syscall name:    wrapper name:   declaring header file:
321        -------------    -------------   ----------------------
322        bdflush          bdflush         <sys/kdaemon.h>
323        create_module    create_module   <sys/module.h>
324        delete_module    delete_module   <sys/module.h>
325        get_kernel_syms  get_kernel_syms <sys/module.h>
326        init_module      init_module     <sys/module.h>
327        syslog           ksyslog_ctl     <sys/klog.h>
328
329 * lpd: Older versions of lpd depend on a routine called _validuser().
330   The library does not provide this function, but instead provides
331   __ivaliduser() which has a slightly different interfaces.  Simply
332   upgrading to a newer lpd should fix this problem (e.g., the 4.4BSD
333   lpd is known to be working).
334
335 * resolver functions/BIND: like on many other systems the functions of
336   the resolver library are not included in the libc itself.  There is
337   a separate library libresolv.  If you find some symbols starting with
338   `res_*' undefined simply add -lresolv to your call of the linker.
339
340 * the `signal' function's behaviour corresponds to the BSD semantic and
341   not the SysV semantic as it was in libc-5.  The interface on all GNU
342   systems shall be the same and BSD is the semantic of choice.  To use
343   the SysV behaviour simply use `sysv_signal'.  The major difference is
344   that the SysV implementation sets the SA_ONESHOT flag and so the handler
345   gets removed after the first call.
346
347
348 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
349 [Q10]   ``Why does getlogin() always return NULL on my Linux box?''
350
351 [A10] {UD} The GNU C library has a format for the UTMP and WTMP file
352 which differs from what your system currently has.  It was extended to
353 fulfill the needs of the next years when IPv6 is introduced.  So the
354 record size is different, fields might have a different position and
355 so reading the files written by functions from the one library cannot
356 be read by functions from the other library.  Sorry, but this is what
357 a major release is for.  It's better to have a cut now than having no
358 means to support the new techniques later.
359
360 {MK} There is however a (partial) solution for this problem.  Please
361 take a look at the file `README.utmpd'.
362
363
364 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
365 [Q11]   ``Where are the DST_* constants found in <sys/time.h> on many
366           systems?''
367
368 [A11] {UD} These constants come from the old BSD days and are not used
369 today anymore (even the Linux based glibc does not implement the handling
370 although the constants are defined).
371
372 Instead GNU libc contains the zone database handling and compatibility
373 code for POSIX TZ environment variable handling.
374
375
376 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
377 [Q12]   ``The `gencat' utility cannot process the input which are
378           successfully used on my Linux libc based system.  Why?''
379
380 [A12] {UD} Unlike the author of the `gencat' program which is distributed
381 with Linux libc I have read the underlying standards before writing the
382 code.  It is completely compatible with the specification given in
383 X/Open Portability Guide.
384
385 To ease the transition from the Linux version some of the non-standard
386 features are also present in the `gencat' program of GNU libc.  This
387 mainly includes the use of symbols for the message number and the automatic
388 generation of header files which contain the needed #defines to map the
389 symbols to integers.
390
391 Here is a simple SED script to convert at least some Linux specific
392 catalog files to the XPG4 form:
393
394 -----------------------------------------------------------------------
395 # Change catalog source in Linux specific format to standard XPG format.
396 # Ulrich Drepper <drepper@cygnus.com>, 1996.
397 #
398 /^\$ #/ {
399   h
400   s/\$ #\([^ ]*\).*/\1/
401   x
402   s/\$ #[^ ]* *\(.*\)/\$ \1/
403 }
404
405 /^# / {
406   s/^# \(.*\)/\1/
407   G
408   s/\(.*\)\n\(.*\)/\2 \1/
409 }
410 -----------------------------------------------------------------------
411
412
413 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
414 [Q13]   ``How do I configure GNU libc so that the essential libraries
415           like libc.so go into /lib and the other into /usr/lib?''
416
417 [A13] {UD,AJ} Like all other GNU packages GNU libc is configured to
418 use a base directory and install all files relative to this.  If you
419 intend to really use GNU libc on your system this base directory is
420 /usr.  I.e., you run
421         configure --prefix=/usr <other_options>
422
423 Some systems like Linux have a filesystem standard which makes a
424 difference between essential libraries and others.  Essential
425 libraries are placed in /lib because this directory is required to be
426 located on the same disk partition as /.  The /usr subtree might be
427 found on another partition/disk.
428
429 To install the essential libraries which come with GNU libc in /lib
430 one must explicitly tell this (except on Linux, see below).  Autoconf
431 has no option for this so you have to use the file where all user
432 supplied additional information should go in: `configparms' (see the
433 `INSTALL' file).  Therefore the `configparms' file should contain:
434
435 slibdir=/lib
436 sysconfdir=/etc
437
438 The first line specifies the directory for the essential libraries,
439 the second line the directory for file which are by tradition placed
440 in a directory named /etc.
441
442 No rule without an exception: If you configure for Linux with
443 --prefix=/usr, then slibdir and sysconfdir will automatically be
444 defined as stated above.
445
446
447 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
448 [Q14]   ``When linking with the new libc I get unresolved symbols
449           `crypt' and `setkey'.  Why aren't these functions in the
450           libc anymore?''
451
452 [A14] {UD} Remember the US restrictions of exporting cryptographic
453 programs and source code.  Until this law gets abolished we cannot
454 ship the cryptographic function together with the libc.
455
456 But of course we provide the code and there is an very easy way to use
457 this code.  First get the extra package.  People in the US may get it
458 from the same place they got the GNU libc from.  People outside the US
459 should get the code from ftp://ftp.ifi.uio.no/pub/gnu, or another
460 archive site outside the USA.  The README explains how to install the
461 sources.
462
463 If you already have the crypt code on your system the reason for the
464 failure is probably that you failed to link with -lcrypt.  The crypto
465 functions are in a separate library to make it possible to export GNU
466 libc binaries from the US.
467
468
469 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
470 [Q15]   ``What are these `add-ons'?''
471
472 [A15] {UD} To avoid complications with export rules or external source
473 code some optional parts of the libc are distributed as separate
474 packages (e.g., the crypt package, see Q14).
475
476 To ease the use as part of GNU libc the installer just has to unpack
477 the package and tell the configuration script about these additional
478 subdirectories using the --enable-add-ons option.  When you add the
479 crypt add-on you just have to use
480
481         configure --enable-add-ons=crypt,XXX ...
482
483 where XXX are possible other add-ons and ... means the rest of the
484 normal option list.
485
486 You can use add-ons also to overwrite some files in glibc.  The add-on
487 system dependent subdirs are search first.  It is also possible to add
488 banner files (use a file named `Banner') or create shared libraries.
489
490 Using add-ons has the big advantage that the makefiles of the GNU libc
491 can be used.  Only some few stub rules must be written to get
492 everything running.  Even handling of architecture dependent
493 compilation is provided.  The GNU libc's sysdeps/ directory shows how
494 to use this feature.
495
496
497 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
498 [Q16]   ``When I use GNU libc on my Linux system by linking against
499           to libc.so which comes with glibc all I get is a core dump.''
500
501 [A16] {UD} It is not enough to simply link against the GNU libc
502 library itself.  The GNU C library comes with its own dynamic linker
503 which really conforms to the ELF API standard.  This dynamic linker
504 must be used.
505
506 Normally this is done by the compiler.  The gcc will use
507
508         -dynamic-linker /lib/ld-linux.so.1
509
510 unless the user specifies her/himself a -dynamic-linker argument.  But
511 this is not the correct name for the GNU dynamic linker.  The correct
512 name is /lib/ld.so.1 which is the name specified in the SVr4 ABi.
513
514 To change your environment to use GNU libc for compiling you need to
515 change the `specs' file of your gcc.  This file is normally found at
516
517         /usr/lib/gcc-lib/<arch>/<version>/specs
518
519 In this file you have to change a few things:
520
521 - change `ld-linux.so.1' to `ld.so.1' (or to ld-linux.so.2, see below)
522
523 - remove all expression `%{...:-lgmon}';  there is no libgmon in glibc
524
525
526 Things are getting a bit more complicated if you have GNU libc
527 installed in some other place than /usr, i.e., if you do not want to
528 use it instead of the old libc.  In this case the needed startup files
529 and libraries are not found in the regular places.  So the specs file
530 must tell the compiler and linker exactly what to use.  Here is for
531 example the gcc-2.7.2 specs file when GNU libc is installed at
532 /usr:
533
534 -----------------------------------------------------------------------
535 *asm:
536 %{V} %{v:%{!V:-V}} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*}
537
538 *asm_final:
539 %{pipe:-}
540
541 *cpp:
542 %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{!m386:-D__i486__} %{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}
543
544 *cc1:
545 %{profile:-p}
546
547 *cc1plus:
548
549
550 *endfile:
551 %{!shared:crtend.o%s} %{shared:crtendS.o%s} crtn.o%s
552
553 *link:
554 -m elf_i386 %{shared:-shared}   %{!shared:     %{!ibcs:       %{!static:        %{rdynamic:-export-dynamic}     %{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.2}}  %{static:-static}}}
555
556 *lib:
557 %{!shared: %{pthread:-lpthread}         %{profile:-lc_p} %{!profile: -lc}}
558
559 *libgcc:
560 -lgcc
561
562 *startfile:
563 %{!shared:      %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s}                   %{!p:%{profile:gcrt1.o%s}                         %{!profile:crt1.o%s}}}}    crti.o%s %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}
564
565 *switches_need_spaces:
566
567
568 *signed_char:
569 %{funsigned-char:-D__CHAR_UNSIGNED__}
570
571 *predefines:
572 -D__ELF__ -Dunix -Di386 -Dlinux -Asystem(unix) -Asystem(posix) -Acpu(i386) -Amachine(i386)
573
574 *cross_compile:
575 0
576
577 *multilib:
578 . ;
579
580 -----------------------------------------------------------------------
581
582 The above is currently correct for ix86/Linux.  Because of
583 compatibility issues on this platform the dynamic linker must have
584 a different name: ld-linux.so.2.  So you have to replace
585
586         %{!dynamic-linker:-dynamic-linker=/home/gnu/lib/ld-linux.so.2}
587 by
588         %{!dynamic-linker:-dynamic-linker=/home/gnu/lib/ld.so.1}
589
590 in the above example specs file to make it work for other systems.
591
592 Version 2.7.2.3 does and future versions of GCC will automatically
593 provide the correct specs.
594
595
596 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
597 [Q17]   ``Looking through the shared libc file I haven't found the
598           functions `stat', `lstat', `fstat', and `mknod' and while
599           linking on my Linux system I get error messages.  How is
600           this supposed to work?''
601
602 [A17] {RM} Believe it or not, stat and lstat (and fstat, and mknod)
603 are supposed to be undefined references in libc.so.6!  Your problem is
604 probably a missing or incorrect /usr/lib/libc.so file; note that this
605 is a small text file now, not a symlink to libc.so.6.  It should look
606 something like this:
607
608 GROUP ( libc.so.6 ld.so.1 libc.a )
609
610 or in ix86/Linux and alpha/Linux:
611
612 GROUP ( libc.so.6 ld-linux.so.2 libc.a )
613
614
615 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
616 [Q18]   ``The prototypes for `connect', `accept', `getsockopt',
617           `setsockopt', `getsockname', `getpeername', `send',
618           `sendto', and `recvfrom' are different in GNU libc from
619           any other system I saw.  This is a bug, isn't it?''
620
621 [A18] {UD} No, this is no bug.  This version of the GNU libc already
622 follows the Single Unix specifications (and I think the POSIX.1g
623 draft which adopted the solution).  The type for parameter describing
624 a size is now `socklen_t', a new type.
625
626
627 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
628 [Q19]   ``My XXX kernel emulates a floating-point coprocessor for me.
629           Should I enable --with-fp?''
630
631 [A19] {UD} As `configure --help' shows the default value is `yes' and
632 this should not be changed unless the FPU instructions would be
633 invalid.  I.e., an emulated FPU is for the libc as good as a real one.
634
635
636 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
637 [Q20]   ``How can I compile gcc 2.7.2.1 from the gcc source code using
638           glibc 2.x?
639
640 [A20] {AJ} There's only correct support for glibc 2.0.x in gcc 2.7.2.3
641 or later.  You should get at least gcc 2.7.2.3.  All previous versions
642 had problems with glibc support.
643
644
645 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
646 [Q21]    ``On Linux I've got problems with the declarations in Linux
647            kernel headers.''
648
649 [A21] {UD,AJ} On Linux, the use of kernel headers is reduced to a very
650 minimum.  Besides giving Linus the possibility to change the headers
651 more freely it has another reason: user level programs now do not
652 always use the same types like the kernel does.
653
654 I.e., the libc abstracts the use of types.  E.g., the sigset_t type is
655 in the kernel 32 or 64 bits wide.  In glibc it is 1024 bits wide, in
656 preparation for future development.  The reasons are obvious: we don't
657 want to have a new major release when the Linux kernel gets these
658 functionality. Consult the headers for more information about the changes.
659
660 Therefore you shouldn't include Linux kernel header files directly if
661 glibc has defined a replacement. Otherwise you might get undefined
662 results because of type conflicts.
663
664
665 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
666 [Q22]   ``When I try to compile code which uses IPv6 header and
667           definitions on my Linux 2.x.y system I am in trouble.
668           Nothing seems to work.''
669
670 [A22] {UD} The problem is that the IPv6 development still has not reached
671 a point where it is stable.  There are still lots of incompatible changes
672 made and the libc headers have to follow.
673
674 Currently (as of 970401) according to Philip Blundell <philb@gnu.ai.mit.edu>
675 the required kernel version is 2.1.30.
676
677
678 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
679 [Q23]   ``When compiling GNU libc I get lots of errors saying functions
680           in glibc are duplicated in libgcc.''
681
682 [A23] {EY} This is *exactly* the same problem that I was having.  The
683 problem was due to the fact that the autoconfigure didn't correctly
684 detect that linker flag --no-whole-archive was supported in my linker.
685 In my case it was because I had run ./configure with bogus CFLAGS, and
686 the test failed.
687
688 One thing that is particularly annoying about this problem is that
689 once this is misdetected, running configure again won't fix it unless
690 you first delete config.cache.
691
692 {UD} Starting with glibc-2.0.3 there should be a better test to avoid
693 some problems of this kind.  The setting of CFLAGS is checked at the
694 very beginning and if it is not usable `configure' will bark.
695
696
697
698 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
699 [Q24]   ``I have set up /etc/nis.conf, and the Linux libc 5 with NYS
700           works great.  But the glibc NIS+ doesn't seem to work.''
701
702 [A24] The glibc NIS+ implementation uses a /var/nis/NIS_COLD_START
703 file for storing information about the NIS+ server and their public
704 keys, because the nis.conf file do not contain all necessary
705 information.  You have to copy a NIS_COLD_START file from a Solaris
706 client (the NIS_COLD_START file is byte order independend) or generate
707 it new with nisinit from the nis-tools (look at
708 http://www-vt.uni-paderborn.de/~kukuk/linux/nisplus.html).
709
710
711 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
712 [Q25]   ``After installing glibc name resolving doesn't work properly.''
713
714 [A25] {AJ} You  probable should read the manual section describing
715 ``nsswitch.conf'' (just type `info libc "NSS Configuration File"').
716 The NSS configuration file is usually the culprit.
717
718
719 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
720 [Q26]   ``I have /usr/include/net and /usr/include/scsi as symlinks
721           into my Linux source tree.  Is that wrong?''
722
723 [A26] {PB} This was necessary for libc5, but is not correct when using
724 glibc.  Including the kernel header files directly in user programs
725 usually does not work (see Q21).  glibc provides its own <net/*> and
726 <scsi/*> header files to replace them, and you may have to remove any
727 symlink that you have in place before you install glibc.  However,
728 /usr/include/asm and /usr/include/linux should remain as they were.
729
730
731 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
732 [Q27]   ``Programs like `logname', `top', `uptime' `users', `w' and
733           `who', show incorrect information about the (number of)
734           users on my system.  Why?''
735
736 [A27] {MK} See Q10.
737
738
739 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
740 [Q28]   ``After upgrading to a glibc 2.1 with symbol versioning I get
741           errors about undefined symbols.  What went wrong?''
742
743 [A28] {AJ} In a versioned libc a lot of symbols are now local that
744 have been global symbols in previous versions. When defining a extern
745 variable both in a user program and extern in the libc the links
746 resolves this to only one reference - the one in the library. The
747 problem is caused by either wrong program code or tools. In no case
748 the global variables from libc should be used by any program. Since
749 these reference are now local, you might see a message like:
750
751 "msgfmt: error in loading shared libraries: : undefined symbol: _nl_domain_bindings"
752
753 The only way to fix this is to recompile your program. Sorry, that's
754 the price you might have to pay once for quite a number of advantages
755 with symbol versioning.
756
757
758 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
759 \f
760 Answers were given by:
761 {UD} Ulrich Drepper, <drepper@cygnus.com>
762 {DMT} David Mosberger-Tang, <davidm@AZStarNet.com>
763 {RM} Roland McGrath, <roland@gnu.org>
764 {HJL} H.J. Lu, <hjl@gnu.org>
765 {AJ} Andreas Jaeger, <aj@arthur.rhein-neckar.de>
766 {EY} Eric Youngdale, <eric@andante.jic.com>
767 {PB} Phil Blundell, <Philip.Blundell@pobox.com>
768 {MK} Mark Kettenis, <kettenis@phys.uva.nl>
769 \f
770 Local Variables:
771  mode:text
772 End: