This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Android hints: Set d_csh to undef in cross builds
[perl5.git] / hints / linux.sh
1 # hints/linux.sh
2 # Original version by rsanders
3 # Additional support by Kenneth Albanowski <kjahds@kjahds.com>
4 #
5 # ELF support by H.J. Lu <hjl@nynexst.com>
6 # Additional info from Nigel Head <nhead@ESOC.bitnet>
7 # and Kenneth Albanowski <kjahds@kjahds.com>
8 #
9 # Consolidated by Andy Dougherty <doughera@lafayette.edu>
10 #
11 # Updated Thu Feb  8 11:56:10 EST 1996
12
13 # Updated Thu May 30 10:50:22 EDT 1996 by <doughera@lafayette.edu>
14
15 # Updated Fri Jun 21 11:07:54 EDT 1996
16 # NDBM support for ELF re-enabled by <kjahds@kjahds.com>
17
18 # No version of Linux supports setuid scripts.
19 d_suidsafe='undef'
20
21 # No version of Linux needs libutil for perl.
22 i_libutil='undef'
23
24 # Debian and Red Hat, and perhaps other vendors, provide both runtime and
25 # development packages for some libraries.  The runtime packages contain shared
26 # libraries with version information in their names (e.g., libgdbm.so.1.7.3);
27 # the development packages supplement this with versionless shared libraries
28 # (e.g., libgdbm.so).
29 #
30 # If you want to link against such a library, you must install the development
31 # version of the package.
32 #
33 # These packages use a -dev naming convention in both Debian and Red Hat:
34 #   libgdbmg1  (non-development version of GNU libc 2-linked GDBM library)
35 #   libgdbmg1-dev (development version of GNU libc 2-linked GDBM library)
36 # So make sure that for any libraries you wish to link Perl with under
37 # Debian or Red Hat you have the -dev packages installed.
38
39 # SuSE Linux can be used as cross-compilation host for Cray XT4 Catamount/Qk.
40 if test -d /opt/xt-pe
41 then
42   case "`${cc:-cc} -V 2>&1`" in
43   *catamount*) . hints/catamount.sh; return ;;
44   esac
45 fi
46
47 # Some operating systems (e.g., Solaris 2.6) will link to a versioned shared
48 # library implicitly.  For example, on Solaris, `ld foo.o -lgdbm' will find an
49 # appropriate version of libgdbm, if one is available; Linux, however, doesn't
50 # do the implicit mapping.
51 ignore_versioned_solibs='y'
52
53 # BSD compatibility library no longer needed
54 # 'kaffe' has a /usr/lib/libnet.so which is not at all relevant for perl.
55 # bind causes issues with several reentrant functions
56 set `echo X "$libswanted "| sed -e 's/ bsd / /' -e 's/ net / /' -e 's/ bind / /'`
57 shift
58 libswanted="$*"
59
60 # Debian 4.0 puts ndbm in the -lgdbm_compat library.
61 libswanted="$libswanted gdbm_compat"
62
63 # Configure may fail to find lstat() since it's a static/inline
64 # function in <sys/stat.h>.
65 d_lstat=define
66
67 # malloc wrap works
68 case "$usemallocwrap" in
69 '') usemallocwrap='define' ;;
70 esac
71
72 # The system malloc() is about as fast and as frugal as perl's.
73 # Since the system malloc() has been the default since at least
74 # 5.001, we might as well leave it that way.  --AD  10 Jan 2002
75 case "$usemymalloc" in
76 '') usemymalloc='n' ;;
77 esac
78
79 uname_minus_m="`$run uname -m 2>/dev/null`"
80 uname_minus_m="${uname_minus_m:-"$targetarch"}"
81
82 # Check if we're about to use Intel's ICC compiler
83 case "`${cc:-cc} -V 2>&1`" in
84 *"Intel(R) C++ Compiler"*|*"Intel(R) C Compiler"*)
85     # record the version, formats:
86     # icc (ICC) 10.1 20080801
87     # icpc (ICC) 10.1 20080801
88     # followed by a copyright on the second line
89     ccversion=`${cc:-cc} --version | sed -n -e 's/^icp\?c \((ICC) \)\?//p'`
90     # This is needed for Configure's prototype checks to work correctly
91     # The -mp flag is needed to pass various floating point related tests
92     # The -no-gcc flag is needed otherwise, icc pretends (poorly) to be gcc
93     ccflags="-we147 -mp -no-gcc $ccflags"
94     # Prevent relocation errors on 64bits arch
95     case "$uname_minus_m" in
96         *ia64*|*x86_64*)
97             cccdlflags='-fPIC'
98         ;;
99     esac
100     # If we're using ICC, we usually want the best performance
101     case "$optimize" in
102     '') optimize='-O3' ;;
103     esac
104     ;;
105 *" Sun "*"C"*)
106     # Sun's C compiler, which might have a 'tag' name between
107     # 'Sun' and the 'C':  Examples:
108     # cc: Sun C 5.9 Linux_i386 Patch 124871-01 2007/07/31
109     # cc: Sun Ceres C 5.10 Linux_i386 2008/07/10
110     test "$optimize" || optimize='-xO2'
111     cccdlflags='-KPIC'
112     lddlflags='-G -Bdynamic'
113     # Sun C doesn't support gcc attributes, but, in many cases, doesn't
114     # complain either.  Not all cases, though.
115     d_attribute_format='undef'
116     d_attribute_malloc='undef'
117     d_attribute_nonnull='undef'
118     d_attribute_noreturn='undef'
119     d_attribute_pure='undef'
120     d_attribute_unused='undef'
121     d_attribute_warn_unused_result='undef'
122     ;;
123 esac
124
125 case "$optimize" in
126 # use -O2 by default ; -O3 doesn't seem to bring significant benefits with gcc
127 '')
128     optimize='-O2'
129     case "$uname_minus_m" in
130         ppc*)
131             # on ppc, it seems that gcc (at least gcc 3.3.2) isn't happy
132             # with -O2 ; so downgrade to -O1.
133             optimize='-O1'
134         ;;
135         ia64*)
136             # This architecture has had various problems with gcc's
137             # in the 3.2, 3.3, and 3.4 releases when optimized to -O2.  See
138             # RT #37156 for a discussion of the problem.
139             case "`${cc:-gcc} -v 2>&1`" in
140             *"version 3.2"*|*"version 3.3"*|*"version 3.4"*)
141                 ccflags="-fno-delete-null-pointer-checks $ccflags"
142             ;;
143             esac
144         ;;
145     esac
146     ;;
147 esac
148
149 # Ubuntu 11.04 (and later, presumably) doesn't keep most libraries
150 # (such as -lm) in /lib or /usr/lib.  So we have to ask gcc to tell us
151 # where to look.  We don't want gcc's own libraries, however, so we
152 # filter those out.
153 # This could be conditional on Unbuntu, but other distributions may
154 # follow suit, and this scheme seems to work even on rather old gcc's.
155 # This unconditionally uses gcc because even if the user is using another
156 # compiler, we still need to find the math library and friends, and I don't
157 # know how other compilers will cope with that situation.
158 # Morever, if the user has their own gcc earlier in $PATH than the system gcc,
159 # we don't want its libraries. So we try to prefer the system gcc
160 # Still, as an escape hatch, allow Configure command line overrides to
161 # plibpth to bypass this check.
162 if [ -x /usr/bin/gcc ] ; then
163     gcc=/usr/bin/gcc
164 else
165     gcc=gcc
166 fi
167
168 case "$plibpth" in
169 '') plibpth=`LANG=C LC_ALL=C $gcc $ccflags $ldflags -print-search-dirs | grep libraries |
170         cut -f2- -d= | tr ':' $trnl | grep -v 'gcc' | sed -e 's:/$::'`
171     set X $plibpth # Collapse all entries on one line
172     shift
173     plibpth="$*"
174     ;;
175 esac
176
177 case "$libc" in
178 '')
179 # If you have glibc, then report the version for ./myconfig bug reporting.
180 # (Configure doesn't need to know the specific version since it just uses
181 # gcc to load the library for all tests.)
182 # We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
183 # are insufficiently precise to distinguish things like
184 # libc-2.0.6 and libc-2.0.7.
185     for p in $plibpth
186     do
187         for trylib in libc.so.6 libc.so
188         do
189             if $test -e $p/$trylib; then
190                 libc=`ls -l $p/$trylib | awk '{print $NF}'`
191                 if $test "X$libc" != X; then
192                     break
193                 fi
194             fi
195         done
196         if $test "X$libc" != X; then
197             break
198         fi
199     done
200     ;;
201 esac
202
203 # Are we using ELF?  Thanks to Kenneth Albanowski <kjahds@kjahds.com>
204 # for this test.
205 cat >try.c <<'EOM'
206 /* Test for whether ELF binaries are produced */
207 #include <fcntl.h>
208 #include <stdlib.h>
209 #include <unistd.h>
210 main() {
211         char buffer[4];
212         int i=open("a.out",O_RDONLY);
213         if(i==-1)
214                 exit(1); /* fail */
215         if(read(i,&buffer[0],4)<4)
216                 exit(1); /* fail */
217         if(buffer[0] != 127 || buffer[1] != 'E' ||
218            buffer[2] != 'L' || buffer[3] != 'F')
219                 exit(1); /* fail */
220         exit(0); /* succeed (yes, it's ELF) */
221 }
222 EOM
223 if ${cc:-gcc} $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
224     cat <<'EOM' >&4
225
226 You appear to have ELF support.  I'll try to use it for dynamic loading.
227 If dynamic loading doesn't work, read hints/linux.sh for further information.
228 EOM
229
230 else
231     cat <<'EOM' >&4
232
233 You don't have an ELF gcc.  I will use dld if possible.  If you are
234 using a version of DLD earlier than 3.2.6, or don't have it at all, you
235 should probably upgrade. If you are forced to use 3.2.4, you should
236 uncomment a couple of lines in hints/linux.sh and restart Configure so
237 that shared libraries will be disallowed.
238
239 EOM
240     lddlflags="-r $lddlflags"
241     # These empty values are so that Configure doesn't put in the
242     # Linux ELF values.
243     ccdlflags=' '
244     cccdlflags=' '
245     ccflags="-DOVR_DBL_DIG=14 $ccflags"
246     so='sa'
247     dlext='o'
248     nm_so_opt=' '
249     ## If you are using DLD 3.2.4 which does not support shared libs,
250     ## uncomment the next two lines:
251     #ldflags="-static"
252     #so='none'
253
254         # In addition, on some systems there is a problem with perl and NDBM
255         # which causes AnyDBM and NDBM_File to lock up. This is evidenced
256         # in the tests as AnyDBM just freezing.  Apparently, this only
257         # happens on a.out systems, so we disable NDBM for all a.out linux
258         # systems.  If someone can suggest a more robust test
259         #  that would be appreciated.
260         #
261         # More info:
262         # Date: Wed, 7 Feb 1996 03:21:04 +0900
263         # From: Jeffrey Friedl <jfriedl@nff.ncl.omron.co.jp>
264         #
265         # I tried compiling with DBM support and sure enough things locked up
266         # just as advertised. Checking into it, I found that the lockup was
267         # during the call to dbm_open. Not *in* dbm_open -- but between the call
268         # to and the jump into.
269         #
270         # To make a long story short, making sure that the *.a and *.sa pairs of
271         #   /usr/lib/lib{m,db,gdbm}.{a,sa}
272         # were perfectly in sync took care of it.
273         #
274         # This will generate a harmless Whoa There! message
275         case "$d_dbm_open" in
276         '')     cat <<'EOM' >&4
277
278 Disabling ndbm.  This will generate a Whoa There message in Configure.
279 Read hints/linux.sh for further information.
280 EOM
281                 # You can override this with Configure -Dd_dbm_open
282                 d_dbm_open=undef
283                 ;;
284         esac
285 fi
286
287 rm -f try.c a.out
288
289 if ${sh:-/bin/sh} -c exit; then
290   echo ''
291   echo 'You appear to have a working bash.  Good.'
292 else
293   cat << 'EOM' >&4
294
295 *********************** Warning! *********************
296 It would appear you have a defective bash shell installed. This is likely to
297 give you a failure of op/exec test #5 during the test phase of the build,
298 Upgrading to a recent version (1.14.4 or later) should fix the problem.
299 ******************************************************
300 EOM
301
302 fi
303
304 # On SPARClinux,
305 # The following csh consistently coredumped in the test directory
306 # "/home/mikedlr/perl5.003_94/t", though not most other directories.
307
308 #Name        : csh                    Distribution: Red Hat Linux (Rembrandt)
309 #Version     : 5.2.6                        Vendor: Red Hat Software
310 #Release     : 3                        Build Date: Fri May 24 19:42:14 1996
311 #Install date: Thu Jul 11 16:20:14 1996 Build Host: itchy.redhat.com
312 #Group       : Shells                   Source RPM: csh-5.2.6-3.src.rpm
313 #Size        : 184417
314 #Description : BSD c-shell
315
316 # For this reason I suggest using the much bug-fixed tcsh for globbing
317 # where available.
318
319 # November 2001:  That warning's pretty old now and probably not so
320 # relevant, especially since perl now uses File::Glob for globbing.
321 # We'll still look for tcsh, but tone down the warnings.
322 # Andy Dougherty, Nov. 6, 2001
323 if $csh -c 'echo $version' >/dev/null 2>&1; then
324     echo 'Your csh is really tcsh.  Good.'
325 else
326     if xxx=`./UU/loc tcsh blurfl $pth`; $test -f "$xxx"; then
327         echo "Found tcsh.  I'll use it for globbing."
328         # We can't change Configure's setting of $csh, due to the way
329         # Configure handles $d_portable and commands found in $loclist.
330         # We can set the value for CSH in config.h by setting full_csh.
331         full_csh=$xxx
332     elif [ -f "$csh" ]; then
333         echo "Couldn't find tcsh.  Csh-based globbing might be broken."
334     fi
335 fi
336
337 # Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu>
338 # Message-Id: <33EF1634.B36B6500@pobox.com>
339 #
340 # The DR2 of MkLinux (osname=linux,archname=ppc-linux) may need
341 # special flags passed in order for dynamic loading to work.
342 # instead of the recommended:
343 #
344 # ccdlflags='-rdynamic'
345 #
346 # it should be:
347 # ccdlflags='-Wl,-E'
348 #
349 # So if your DR2 (DR3 came out summer 1998, consider upgrading)
350 # has problems with dynamic loading, uncomment the
351 # following three lines, make distclean, and re-Configure:
352 #case "`uname -r | sed 's/^[0-9.-]*//'``arch`" in
353 #'osfmach3ppc') ccdlflags='-Wl,-E' ;;
354 #esac
355
356 case "$uname_minus_m" in
357 sparc*)
358         case "$cccdlflags" in
359         *-fpic*) cccdlflags="`echo $cccdlflags|sed 's/-fpic/-fPIC/'`" ;;
360         *-fPIC*) ;;
361         *)       cccdlflags="$cccdlflags -fPIC" ;;
362         esac
363         ;;
364 esac
365
366 # SuSE8.2 has /usr/lib/libndbm* which are ld scripts rather than
367 # true libraries. The scripts cause binding against static
368 # version of -lgdbm which is a bad idea. So if we have 'nm'
369 # make sure it can read the file
370 # NI-S 2003/08/07
371 case "$nm" in
372     '') ;;
373     *)
374     for p in $plibpth
375     do
376         if $test -r $p/libndbm.so; then
377             if $nm $p/libndbm.so >/dev/null 2>&1 ; then
378                 echo 'Your shared -lndbm seems to be a real library.'
379                 _libndbm_real=1
380                 break
381             fi
382         fi
383     done
384     if $test "X$_libndbm_real" = X; then
385         echo 'Your shared -lndbm is not a real library.'
386         set `echo X "$libswanted "| sed -e 's/ ndbm / /'`
387         shift
388         libswanted="$*"
389     fi
390     ;;
391 esac
392
393 # Linux on Synology.
394 if [ -f /etc/synoinfo.conf -a -d /usr/syno ]; then
395     # Tested on Synology DS213 and DS413
396     #  OS version info in /etc.defaults/VERSION
397     #  http://forum.synology.com/wiki/index.php/What_kind_of_CPU_does_my_NAS_have
398     # Synology DS213 running DSM 4.3-3810-0 (2013-11-06)
399     #  CPU model Marvell Kirkwood mv6282 ARMv5te
400     #  Linux 2.6.32.12 #3810 Wed Nov 6 05:13:41 CST 2013 armv5tel GNU/Linux
401     # Synology DS413 running DSM 4.3-3810-0 (2013-11-06)
402     #  CPU model Freescale QorIQ P1022 ppc (e500v2)
403     #  linux 2.6.32.12 #3810 ppc GNU/Linux
404     # All development stuff installed with ipkg is in /opt
405     if [ "$LANG" = "" -o "$LANG" = "C" ]; then
406         echo 'Your LANG is safe'
407     else
408         echo 'Please set $LANG to "C". All other $LANG settings will cause havoc' >&4
409         LANG=C
410     fi
411     echo 'Setting up to use /opt/*' >&4
412     locincpth="/opt/include $locincpth"
413     libpth="/opt/lib $libpth"
414     libspth="/opt/lib $libspth"
415     loclibpth="/opt/lib $loclibpth"
416     # POSIX will not link without the pthread lib
417     libswanted="$libswanted pthread"
418     echo "$libswanted" >&4
419 fi
420
421 # This script UU/usethreads.cbu will get 'called-back' by Configure
422 # after it has prompted the user for whether to use threads.
423 cat > UU/usethreads.cbu <<'EOCBU'
424 case "$usethreads" in
425 $define|true|[yY]*)
426         ccflags="-D_REENTRANT -D_GNU_SOURCE $ccflags"
427         if echo $libswanted | grep -v pthread >/dev/null
428         then
429             set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
430             shift
431             libswanted="$*"
432         fi
433
434         # Somehow at least in Debian 2.2 these manage to escape
435         # the #define forest of <features.h> and <time.h> so that
436         # the hasproto macro of Configure doesn't see these protos,
437         # even with the -D_GNU_SOURCE.
438
439         d_asctime_r_proto="$define"
440         d_crypt_r_proto="$define"
441         d_ctime_r_proto="$define"
442         d_gmtime_r_proto="$define"
443         d_localtime_r_proto="$define"
444         d_random_r_proto="$define"
445
446         ;;
447 esac
448 EOCBU
449
450 cat > UU/uselargefiles.cbu <<'EOCBU'
451 # This script UU/uselargefiles.cbu will get 'called-back' by Configure
452 # after it has prompted the user for whether to use large files.
453 case "$uselargefiles" in
454 ''|$define|true|[yY]*)
455 # Keep this in the left margin.
456 ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
457
458         ccflags="$ccflags $ccflags_uselargefiles"
459         ;;
460 esac
461 EOCBU
462
463 # Purify fails to link Perl if a "-lc" is passed into its linker
464 # due to duplicate symbols.
465 case "$PURIFY" in
466 $define|true|[yY]*)
467     set `echo X "$libswanted "| sed -e 's/ c / /'`
468     shift
469     libswanted="$*"
470     ;;
471 esac
472
473 # If using g++, the Configure scan for dlopen() and (especially)
474 # dlerror() might fail, easier just to forcibly hint them in.
475 case "$cc" in
476 *g++*)
477   d_dlopen='define'
478   d_dlerror='define'
479   ;;
480 esac
481
482 # Under some circumstances libdb can get built in such a way as to
483 # need pthread explicitly linked.
484
485 libdb_needs_pthread="N"
486
487 if echo " $libswanted " | grep -v " pthread " >/dev/null
488 then
489    if echo " $libswanted " | grep " db " >/dev/null
490    then
491      for DBDIR in $glibpth
492      do
493        DBLIB="$DBDIR/libdb.so"
494        if [ -f $DBLIB ]
495        then
496          if ${nm:-nm} -u $DBLIB | grep pthread >/dev/null
497          then
498            if ldd $DBLIB | grep pthread >/dev/null
499            then
500              libdb_needs_pthread="N"
501            else
502              libdb_needs_pthread="Y"
503            fi
504          fi
505        fi
506      done
507    fi
508 fi
509
510 case "$libdb_needs_pthread" in
511   "Y")
512     libswanted="$libswanted pthread"
513     ;;
514 esac