xref: /openbsd-src/gnu/usr.bin/perl/hints/linux.sh (revision 3d61058aa5c692477b6d18acfbbdb653a9930ff9)
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.
19d_suidsafe='undef'
20
21# No version of Linux needs libutil for perl.
22i_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.
40if test -d /opt/xt-pe
41then
42  case "`${cc:-cc} -V 2>&1`" in
43  *catamount*) . hints/catamount.sh; return ;;
44  esac
45fi
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.
51ignore_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
56set `echo X "$libswanted "| sed -e 's/ bsd / /' -e 's/ net / /' -e 's/ bind / /'`
57shift
58libswanted="$*"
59
60# Debian 4.0 puts ndbm in the -lgdbm_compat library.
61echo $libs
62if echo " $libswanted " | grep -q ' gdbm '; then
63    # Only add if gdbm is in libswanted.
64    libswanted="$libswanted gdbm_compat"
65fi
66
67# Configure may fail to find lstat() since it's a static/inline
68# function in <sys/stat.h>.
69d_lstat=define
70
71# malloc wrap works
72case "$usemallocwrap" in
73'') usemallocwrap='define' ;;
74esac
75
76# The system malloc() is about as fast and as frugal as perl's.
77# Since the system malloc() has been the default since at least
78# 5.001, we might as well leave it that way.  --AD  10 Jan 2002
79case "$usemymalloc" in
80'') usemymalloc='n' ;;
81esac
82
83uname_minus_m="`$run uname -m 2>/dev/null`"
84uname_minus_m="${uname_minus_m:-"$targetarch"}"
85
86# Check if we're about to use Intel's ICC compiler
87case "`${cc:-cc} -V 2>&1`" in
88*"Intel(R) C"*" Compiler"*)
89    # record the version, formats:
90    # icc (ICC) 10.1 20080801
91    # icpc (ICC) 10.1 20080801
92    # followed by a copyright on the second line
93    ccversion=`${cc:-cc} --version | sed -n -e 's/^icp\?c \((ICC) \)\?//p'`
94    # This is needed for Configure's prototype checks to work correctly
95    # The -mp flag is needed to pass various floating point related tests
96    # The -no-gcc flag is needed otherwise, icc pretends (poorly) to be gcc
97    ccflags="-we147 -mp -no-gcc $ccflags"
98    # Prevent relocation errors on 64bits arch
99    case "$uname_minus_m" in
100	*ia64*|*x86_64*)
101	    cccdlflags='-fPIC'
102	;;
103    esac
104    # If we're using ICC, we usually want the best performance
105    case "$optimize" in
106    '') optimize='-O3' ;;
107    esac
108    ;;
109
110# the new Intel C/C++ compiler, LLVM based, replaces ICC which
111# is no longer maintained from around October 2023
112*"Intel(R) oneAPI DPC++/C++ Compiler"*)
113    # version from end of first line, like:
114    # Intel(R) oneAPI DPC++/C++ Compiler 2024.1.0 (2024.1.0.20240308)
115    ccversion=`${cc:-cc} --version | sed -n -e 's/^Intel.*(\(.*\))/\1/p'`
116    # If we're using ICX, we usually want the best performance
117    case "$optimize" in
118    '') optimize='-O3' ;;
119    esac
120    # fp-model defaults to "fast" which mis-handles NaNs
121    ccflags="-fp-model=precise $ccflags"
122    ;;
123
124*" Sun "*"C"*)
125    # Sun's C compiler, which might have a 'tag' name between
126    # 'Sun' and the 'C':  Examples:
127    # cc: Sun C 5.9 Linux_i386 Patch 124871-01 2007/07/31
128    # cc: Sun Ceres C 5.10 Linux_i386 2008/07/10
129    # cc: Studio 12.6 Sun C 5.15 Linux_i386 2017/05/30
130    # GH #21535 - apparent optimization bug in workshop cc
131    test "$optimize" || optimize='-O1'
132    cccdlflags='-KPIC'
133    lddlflags='-G -Bdynamic'
134    # Sun C doesn't support gcc attributes, but, in many cases, doesn't
135    # complain either.  Not all cases, though.
136    d_attribute_format='undef'
137    d_attribute_malloc='undef'
138    d_attribute_nonnull='undef'
139    d_attribute_noreturn='undef'
140    d_attribute_pure='undef'
141    d_attribute_unused='undef'
142    d_attribute_warn_unused_result='undef'
143    case "$cc" in
144    *c99)   # Without -Xa c99 errors on some Linux system headers
145            # in particular zero sized arrays at the end of structs
146	    case "$ccflags" in
147		*-Xa*)	;;
148		*) ccflags="$ccflags -Xa" ;;
149	    esac
150	    ;;
151    esac
152    ;;
153esac
154
155case "$optimize" in
156# use -O2 by default ; -O3 doesn't seem to bring significant benefits with gcc
157'')
158    optimize='-O2'
159    case "$uname_minus_m" in
160        ppc*)
161            # on ppc, it seems that gcc (at least gcc 3.3.2) isn't happy
162            # with -O2 ; so downgrade to -O1.
163            optimize='-O1'
164        ;;
165        ia64*)
166            # This architecture has had various problems with gcc's
167            # in the 3.2, 3.3, and 3.4 releases when optimized to -O2.  See
168            # RT #37156 for a discussion of the problem.
169            case "`${cc:-gcc} -v 2>&1`" in
170            *"version 3.2"*|*"version 3.3"*|*"version 3.4"*)
171                ccflags="-fno-delete-null-pointer-checks $ccflags"
172            ;;
173            esac
174        ;;
175    esac
176    ;;
177esac
178
179# Ubuntu 11.04 (and later, presumably) doesn't keep most libraries
180# (such as -lm) in /lib or /usr/lib.  So we have to ask gcc to tell us
181# where to look.  We don't want gcc's own libraries, however, so we
182# filter those out.
183# This could be conditional on Ubuntu, but other distributions may
184# follow suit, and this scheme seems to work even on rather old gcc's.
185# This unconditionally uses gcc because even if the user is using another
186# compiler, we still need to find the math library and friends, and I don't
187# know how other compilers will cope with that situation.
188# Morever, if the user has their own gcc earlier in $PATH than the system gcc,
189# we don't want its libraries. So we try to prefer the system gcc
190# Still, as an escape hatch, allow Configure command line overrides to
191# plibpth to bypass this check.
192if [ -x /usr/bin/gcc ] ; then
193    gcc=/usr/bin/gcc
194# clang also provides -print-search-dirs
195elif ${cc:-cc} --version 2>/dev/null | grep -q -e '^clang version' -e ' clang version'; then
196    gcc=${cc:-cc}
197else
198    gcc=gcc
199fi
200
201case "$plibpth" in
202'') plibpth=`LANG=C LC_ALL=C $gcc $ccflags $ldflags -print-search-dirs | grep libraries |
203	cut -f2- -d= | tr ':' $trnl | grep -v 'gcc' | sed -e 's:/$::'`
204    set X $plibpth # Collapse all entries on one line
205    shift
206    plibpth="$*"
207    ;;
208esac
209
210# For the musl libc, perl should #define _GNU_SOURCE.  Otherwise, some
211# available functions, like memem, won't be used.  See the discussion in
212# [perl #133760].  musl doesn't offer an easy way to identify it, but,
213# at least on alpine linux, the ldd --version output contains the
214# string 'musl.'
215case `ldd --version 2>&1` in
216    musl*)  ccflags="$ccflags -D_GNU_SOURCE" ;;
217        *) ;;
218esac
219
220# libquadmath is sometimes installed as gcc internal library,
221# so contrary to our usual policy of *not* looking at gcc internal
222# directories we now *do* look at them, in case they contain
223# the quadmath library.
224# XXX This may apply to other gcc internal libraries, if such exist.
225# XXX This could be at Configure level, but then the $gcc is messy.
226case "$usequadmath" in
227"$define")
228  for d in `LANG=C LC_ALL=C $gcc $ccflags $ldflags -print-search-dirs | grep libraries | cut -f2- -d= | tr ':' $trnl | grep 'gcc' | sed -e 's:/$::'`
229  do
230    case `ls $d/*libquadmath*$so* 2>/dev/null` in
231    $d/*libquadmath*$so*) xlibpth="$xlibpth $d" ;;
232    esac
233  done
234  ;;
235esac
236
237case "$libc" in
238'')
239# If you have glibc, then report the version for ./myconfig bug reporting.
240# (Configure doesn't need to know the specific version since it just uses
241# gcc to load the library for all tests.)
242# We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
243# are insufficiently precise to distinguish things like
244# libc-2.0.6 and libc-2.0.7.
245    for p in $plibpth
246    do
247        for trylib in libc.so.6 libc.so
248        do
249            if $test -e $p/$trylib; then
250                libc=`ls -l $p/$trylib | awk '{print $NF}'`
251                if $test "X$libc" != X; then
252                    break
253                fi
254            fi
255        done
256        if $test "X$libc" != X; then
257            break
258        fi
259    done
260    ;;
261esac
262
263if ${sh:-/bin/sh} -c exit; then
264  echo ''
265  echo 'You appear to have a working bash.  Good.'
266else
267  cat << 'EOM' >&4
268
269*********************** Warning! *********************
270It would appear you have a defective bash shell installed. This is likely to
271give you a failure of op/exec test #5 during the test phase of the build,
272Upgrading to a recent version (1.14.4 or later) should fix the problem.
273******************************************************
274EOM
275
276fi
277
278# On SPARClinux,
279# The following csh consistently coredumped in the test directory
280# "/home/mikedlr/perl5.003_94/t", though not most other directories.
281
282#Name        : csh                    Distribution: Red Hat Linux (Rembrandt)
283#Version     : 5.2.6                        Vendor: Red Hat Software
284#Release     : 3                        Build Date: Fri May 24 19:42:14 1996
285#Install date: Thu Jul 11 16:20:14 1996 Build Host: itchy.redhat.com
286#Group       : Shells                   Source RPM: csh-5.2.6-3.src.rpm
287#Size        : 184417
288#Description : BSD c-shell
289
290# For this reason I suggest using the much bug-fixed tcsh for globbing
291# where available.
292
293# November 2001:  That warning's pretty old now and probably not so
294# relevant, especially since perl now uses File::Glob for globbing.
295# We'll still look for tcsh, but tone down the warnings.
296# Andy Dougherty, Nov. 6, 2001
297if $csh -c 'echo $version' >/dev/null 2>&1; then
298    echo 'Your csh is really tcsh.  Good.'
299else
300    if xxx=`./UU/loc tcsh blurfl $pth`; $test -f "$xxx"; then
301	echo "Found tcsh.  I'll use it for globbing."
302	# We can't change Configure's setting of $csh, due to the way
303	# Configure handles $d_portable and commands found in $loclist.
304	# We can set the value for CSH in config.h by setting full_csh.
305	full_csh=$xxx
306    elif [ -f "$csh" ]; then
307	echo "Couldn't find tcsh.  Csh-based globbing might be broken."
308    fi
309fi
310
311# Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu>
312# Message-Id: <33EF1634.B36B6500@pobox.com>
313#
314# The DR2 of MkLinux (osname=linux,archname=ppc-linux) may need
315# special flags passed in order for dynamic loading to work.
316# instead of the recommended:
317#
318# ccdlflags='-rdynamic'
319#
320# it should be:
321# ccdlflags='-Wl,-E'
322#
323# So if your DR2 (DR3 came out summer 1998, consider upgrading)
324# has problems with dynamic loading, uncomment the
325# following three lines, make distclean, and re-Configure:
326#case "`uname -r | sed 's/^[0-9.-]*//'``arch`" in
327#'osfmach3ppc') ccdlflags='-Wl,-E' ;;
328#esac
329
330case "$uname_minus_m" in
331sparc*)
332	case "$cccdlflags" in
333	*-fpic*) cccdlflags="`echo $cccdlflags|sed 's/-fpic/-fPIC/'`" ;;
334	*-fPIC*) ;;
335	*)	 cccdlflags="$cccdlflags -fPIC" ;;
336	esac
337	;;
338esac
339
340# SuSE8.2 has /usr/lib/libndbm* which are ld scripts rather than
341# true libraries. The scripts cause binding against static
342# version of -lgdbm which is a bad idea. So if we have 'nm'
343# make sure it can read the file
344# NI-S 2003/08/07
345case "$nm" in
346    '') ;;
347    *)
348    for p in $plibpth
349    do
350        if $test -r $p/libndbm.so; then
351            if $nm $p/libndbm.so >/dev/null 2>&1 ; then
352                echo 'Your shared -lndbm seems to be a real library.'
353                _libndbm_real=1
354                break
355            fi
356        fi
357    done
358    if $test "X$_libndbm_real" = X; then
359        echo 'Your shared -lndbm is not a real library.'
360        set `echo X "$libswanted "| sed -e 's/ ndbm / /'`
361        shift
362        libswanted="$*"
363    fi
364    ;;
365esac
366
367# Linux on Synology.
368if [ -f /etc/synoinfo.conf -a -d /usr/syno ]; then
369    # Tested on Synology DS213 and DS413
370    #  OS version info in /etc.defaults/VERSION
371    #  http://forum.synology.com/wiki/index.php/What_kind_of_CPU_does_my_NAS_have
372    # Synology DS213 running DSM 4.3-3810-0 (2013-11-06)
373    #  CPU model Marvell Kirkwood mv6282 ARMv5te
374    #  Linux 2.6.32.12 #3810 Wed Nov 6 05:13:41 CST 2013 armv5tel GNU/Linux
375    # Synology DS413 running DSM 4.3-3810-0 (2013-11-06)
376    #  CPU model Freescale QorIQ P1022 ppc (e500v2)
377    #  linux 2.6.32.12 #3810 ppc GNU/Linux
378    # All development stuff installed with ipkg is in /opt
379    if [ "$LANG" = "" -o "$LANG" = "C" ]; then
380	echo 'Your LANG is safe'
381    else
382	echo 'Please set $LANG to "C". All other $LANG settings will cause havoc' >&4
383	LANG=C
384    fi
385    echo 'Setting up to use /opt/*' >&4
386    locincpth="/opt/include $locincpth"
387    libpth="/opt/lib $libpth"
388    libspth="/opt/lib $libspth"
389    loclibpth="/opt/lib $loclibpth"
390    # POSIX will not link without the pthread lib
391    libswanted="$libswanted pthread"
392    echo "$libswanted" >&4
393fi
394
395# This script UU/usethreads.cbu will get 'called-back' by Configure
396# after it has prompted the user for whether to use threads.
397cat > UU/usethreads.cbu <<'EOCBU'
398case "$usethreads" in
399$define|true|[yY]*)
400        ccflags="-D_REENTRANT -D_GNU_SOURCE $ccflags"
401        if echo $libswanted | grep -v pthread >/dev/null
402        then
403            set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
404            shift
405            libswanted="$*"
406        fi
407
408	# Somehow at least in Debian 2.2 these manage to escape
409	# the #define forest of <features.h> and <time.h> so that
410	# the hasproto macro of Configure doesn't see these protos,
411	# even with the -D_GNU_SOURCE.
412
413	d_asctime_r_proto="$define"
414	d_crypt_r_proto="$define"
415	d_ctime_r_proto="$define"
416	d_gmtime_r_proto="$define"
417	d_localtime_r_proto="$define"
418	d_random_r_proto="$define"
419
420	;;
421esac
422EOCBU
423
424cat > UU/uselargefiles.cbu <<'EOCBU'
425# This script UU/uselargefiles.cbu will get 'called-back' by Configure
426# after it has prompted the user for whether to use large files.
427case "$uselargefiles" in
428''|$define|true|[yY]*)
429# Keep this in the left margin.
430ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
431
432	ccflags="$ccflags $ccflags_uselargefiles"
433	;;
434esac
435EOCBU
436
437# Purify fails to link Perl if a "-lc" is passed into its linker
438# due to duplicate symbols.
439case "$PURIFY" in
440$define|true|[yY]*)
441    set `echo X "$libswanted "| sed -e 's/ c / /'`
442    shift
443    libswanted="$*"
444    ;;
445esac
446
447# If using g++, the Configure scan for dlopen() and (especially)
448# dlerror() might fail, easier just to forcibly hint them in.
449case "$cc" in
450*g++*)
451  d_dlopen='define'
452  d_dlerror='define'
453  ;;
454esac
455
456# Under some circumstances libdb can get built in such a way as to
457# need pthread explicitly linked.
458
459libdb_needs_pthread="N"
460
461if echo " $libswanted " | grep -v " pthread " >/dev/null
462then
463   if echo " $libswanted " | grep " db " >/dev/null
464   then
465     for DBDIR in $glibpth
466     do
467       DBLIB="$DBDIR/libdb.so"
468       if [ -f $DBLIB ]
469       then
470         if ${nm:-nm} -u $DBLIB 2>/dev/null | grep pthread >/dev/null
471         then
472           if ldd $DBLIB | grep pthread >/dev/null
473           then
474             libdb_needs_pthread="N"
475           else
476             libdb_needs_pthread="Y"
477           fi
478         fi
479       fi
480     done
481   fi
482fi
483
484case "$libdb_needs_pthread" in
485  "Y")
486    libswanted="$libswanted pthread"
487    ;;
488esac
489