blob: 8680128113aa868c56e23d7c8dab7c61f7891098 [file] [log] [blame]
Rich Felker64d2f8e2012-05-04 23:24:51 -04001#!/bin/sh
2
3usage () {
4cat <<EOF
Rich Felker278883d2012-06-03 16:22:13 -04005Usage: $0 [OPTION]... [VAR=VALUE]... [TARGET]
Rich Felker64d2f8e2012-05-04 23:24:51 -04006
7To assign environment variables (e.g., CC, CFLAGS...), specify them as
8VAR=VALUE. See below for descriptions of some of the useful variables.
9
10Defaults for the options are specified in brackets.
11
Petr Hosek2f853dd2015-11-18 12:07:32 -080012Configuration:
13 --srcdir=DIR source directory [detected]
14
Rich Felker64d2f8e2012-05-04 23:24:51 -040015Installation directories:
16 --prefix=PREFIX main installation prefix [/usr/local/musl]
17 --exec-prefix=EPREFIX installation prefix for executable files [PREFIX]
18
19Fine tuning of the installation directories:
20 --bindir=DIR user executables [EPREFIX/bin]
21 --libdir=DIR library files for the linker [PREFIX/lib]
22 --includedir=DIR include files for the C compiler [PREFIX/include]
23 --syslibdir=DIR location for the dynamic linker [/lib]
24
25System types:
26 --target=TARGET configure to run on target TARGET [detected]
Rich Felker278883d2012-06-03 16:22:13 -040027 --host=HOST same as --target
Rich Felker2d49c222016-04-29 19:50:33 -040028 --build=BUILD build system type; used only to infer cross-compiling
Rich Felker64d2f8e2012-05-04 23:24:51 -040029
30Optional features:
Rich Felkera80847d2013-07-22 21:22:04 -040031 --enable-optimize=... optimize listed components for speed over size [auto]
Rich Felker64d2f8e2012-05-04 23:24:51 -040032 --enable-debug build with debugging information [disabled]
33 --enable-warnings build with recommended warnings flags [disabled]
Shizb3cd7d12015-06-28 23:08:19 +020034 --enable-wrapper=... build given musl toolchain wrapper [auto]
Rich Felker64d2f8e2012-05-04 23:24:51 -040035 --disable-shared inhibit building shared library [enabled]
36 --disable-static inhibit building static library [enabled]
37
38Some influential environment variables:
39 CC C compiler command [detected]
40 CFLAGS C compiler flags [-Os -pipe ...]
Rich Felker94e920d2012-08-14 22:50:16 -040041 CROSS_COMPILE prefix for cross compiler and tools [none]
Rich Felker2c1cd232012-09-10 15:30:52 -040042 LIBCC compiler runtime library [detected]
Rich Felker64d2f8e2012-05-04 23:24:51 -040043
44Use these variables to override the choices made by configure.
45
46EOF
47exit 0
48}
49
50# Helper functions
51
Rich Felker453f4622013-08-16 18:19:47 -040052quote () {
53tr '\n' ' ' <<EOF | grep '^[-[:alnum:]_=,./:]* $' >/dev/null 2>&1 && { echo "$1" ; return 0 ; }
54$1
55EOF
Rich Felkere4499742013-08-20 13:51:46 -040056printf %s\\n "$1" | sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/" -e "s#^'\([-[:alnum:]_,./:]*\)=\(.*\)\$#\1='\2#"
Rich Felker453f4622013-08-16 18:19:47 -040057}
Rich Felker64d2f8e2012-05-04 23:24:51 -040058echo () { printf "%s\n" "$*" ; }
59fail () { echo "$*" ; exit 1 ; }
60fnmatch () { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; }
61cmdexists () { type "$1" >/dev/null 2>&1 ; }
62trycc () { test -z "$CC" && cmdexists "$1" && CC=$1 ; }
63
Rich Felker3d9e3a32012-11-08 17:20:50 -050064stripdir () {
65while eval "fnmatch '*/' \"\${$1}\"" ; do eval "$1=\${$1%/}" ; done
Rich Felker64d2f8e2012-05-04 23:24:51 -040066}
67
Rich Felker3e7f1862013-07-18 20:30:58 -040068trycppif () {
69printf "checking preprocessor condition %s... " "$1"
Rich Felkerdf065782013-07-18 20:37:19 -040070echo "typedef int x;" > "$tmpc"
71echo "#if $1" >> "$tmpc"
Rich Felker3e7f1862013-07-18 20:30:58 -040072echo "#error yes" >> "$tmpc"
73echo "#endif" >> "$tmpc"
74if $CC $2 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
75printf "false\n"
76return 1
77else
78printf "true\n"
79return 0
80fi
81}
82
Rich Felker64d2f8e2012-05-04 23:24:51 -040083tryflag () {
84printf "checking whether compiler accepts %s... " "$2"
85echo "typedef int x;" > "$tmpc"
Shizfc431d32015-05-28 05:52:22 +020086if $CC $CFLAGS_TRY $2 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
Rich Felker64d2f8e2012-05-04 23:24:51 -040087printf "yes\n"
88eval "$1=\"\${$1} \$2\""
89eval "$1=\${$1# }"
90return 0
91else
92printf "no\n"
93return 1
94fi
95}
96
Rich Felker08f70a32012-06-06 20:45:52 -040097tryldflag () {
98printf "checking whether linker accepts %s... " "$2"
Rich Felker67a03832012-06-07 00:23:58 -040099echo "typedef int x;" > "$tmpc"
Shizfc431d32015-05-28 05:52:22 +0200100if $CC $LDFLAGS_TRY -nostdlib -shared "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
Rich Felker08f70a32012-06-06 20:45:52 -0400101printf "yes\n"
102eval "$1=\"\${$1} \$2\""
103eval "$1=\${$1# }"
104return 0
105else
106printf "no\n"
107return 1
108fi
109}
110
Rich Felker64d2f8e2012-05-04 23:24:51 -0400111
112
113# Beginning of actual script
114
Rich Felker08f70a32012-06-06 20:45:52 -0400115CFLAGS_C99FSE=
116CFLAGS_AUTO=
Rich Felker4a1f55e2013-08-01 17:12:23 -0400117CFLAGS_MEMOPS=
Rich Felker1ef849c2015-04-13 20:13:10 -0400118CFLAGS_NOSSP=
Shizfc431d32015-05-28 05:52:22 +0200119CFLAGS_TRY=
Rich Felker08f70a32012-06-06 20:45:52 -0400120LDFLAGS_AUTO=
Shizfc431d32015-05-28 05:52:22 +0200121LDFLAGS_TRY=
Rich Felkera80847d2013-07-22 21:22:04 -0400122OPTIMIZE_GLOBS=
Petr Hosek2f853dd2015-11-18 12:07:32 -0800123srcdir=
Rich Felker3d9e3a32012-11-08 17:20:50 -0500124prefix=/usr/local/musl
125exec_prefix='$(prefix)'
126bindir='$(exec_prefix)/bin'
127libdir='$(prefix)/lib'
128includedir='$(prefix)/include'
129syslibdir='/lib'
Shizb3cd7d12015-06-28 23:08:19 +0200130tools=
131tool_libs=
Rich Felker2d49c222016-04-29 19:50:33 -0400132build=
Rich Felker278883d2012-06-03 16:22:13 -0400133target=
Rich Felkera80847d2013-07-22 21:22:04 -0400134optimize=auto
Rich Felker64d2f8e2012-05-04 23:24:51 -0400135debug=no
Rich Felker3d9e3a32012-11-08 17:20:50 -0500136warnings=no
Rich Felkerd79b2772014-06-10 12:11:12 -0400137shared=auto
Rich Felker64d2f8e2012-05-04 23:24:51 -0400138static=yes
Rich Felker9ca4dae2014-05-19 10:33:28 -0400139wrapper=auto
Shizb3cd7d12015-06-28 23:08:19 +0200140gcc_wrapper=no
Shizfb585452015-06-28 23:08:21 +0200141clang_wrapper=no
Rich Felker64d2f8e2012-05-04 23:24:51 -0400142
143for arg ; do
144case "$arg" in
Rich Felker47314f12016-02-02 21:14:09 -0500145--help|-h) usage ;;
Petr Hosek2f853dd2015-11-18 12:07:32 -0800146--srcdir=*) srcdir=${arg#*=} ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400147--prefix=*) prefix=${arg#*=} ;;
148--exec-prefix=*) exec_prefix=${arg#*=} ;;
149--bindir=*) bindir=${arg#*=} ;;
150--libdir=*) libdir=${arg#*=} ;;
151--includedir=*) includedir=${arg#*=} ;;
152--syslibdir=*) syslibdir=${arg#*=} ;;
153--enable-shared|--enable-shared=yes) shared=yes ;;
154--disable-shared|--enable-shared=no) shared=no ;;
155--enable-static|--enable-static=yes) static=yes ;;
156--disable-static|--enable-static=no) static=no ;;
Rich Felkera80847d2013-07-22 21:22:04 -0400157--enable-optimize) optimize=yes ;;
158--enable-optimize=*) optimize=${arg#*=} ;;
159--disable-optimize) optimize=no ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400160--enable-debug|--enable-debug=yes) debug=yes ;;
161--disable-debug|--enable-debug=no) debug=no ;;
162--enable-warnings|--enable-warnings=yes) warnings=yes ;;
163--disable-warnings|--enable-warnings=no) warnings=no ;;
Shizb3cd7d12015-06-28 23:08:19 +0200164--enable-wrapper|--enable-wrapper=yes) wrapper=detect ;;
Shizfb585452015-06-28 23:08:21 +0200165--enable-wrapper=all) wrapper=yes ; gcc_wrapper=yes ; clang_wrapper=yes ;;
Shizb3cd7d12015-06-28 23:08:19 +0200166--enable-wrapper=gcc) wrapper=yes ; gcc_wrapper=yes ;;
Shizfb585452015-06-28 23:08:21 +0200167--enable-wrapper=clang) wrapper=yes ; clang_wrapper=yes ;;
Shizb3cd7d12015-06-28 23:08:19 +0200168--disable-wrapper|--enable-wrapper=no) wrapper=no ;;
169--enable-gcc-wrapper|--enable-gcc-wrapper=yes) wrapper=yes ; gcc_wrapper=yes ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400170--disable-gcc-wrapper|--enable-gcc-wrapper=no) wrapper=no ;;
LeMay, Michael6bc7d9c2016-05-04 03:29:42 +0000171--enable-*|--disable-*|--with-*|--without-*|--*dir=*) ;;
Rich Felker278883d2012-06-03 16:22:13 -0400172--host=*|--target=*) target=${arg#*=} ;;
Rich Felker2d49c222016-04-29 19:50:33 -0400173--build=*) build=${arg#*=} ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400174-* ) echo "$0: unknown option $arg" ;;
Fangrui Song4b5ba072019-06-27 08:10:04 +0000175AR=*) AR=${arg#*=} ;;
176RANLIB=*) RANLIB=${arg#*=} ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400177CC=*) CC=${arg#*=} ;;
178CFLAGS=*) CFLAGS=${arg#*=} ;;
179CPPFLAGS=*) CPPFLAGS=${arg#*=} ;;
180LDFLAGS=*) LDFLAGS=${arg#*=} ;;
Rich Felker94e920d2012-08-14 22:50:16 -0400181CROSS_COMPILE=*) CROSS_COMPILE=${arg#*=} ;;
Rich Felker2c1cd232012-09-10 15:30:52 -0400182LIBCC=*) LIBCC=${arg#*=} ;;
Rich Felker278883d2012-06-03 16:22:13 -0400183*=*) ;;
Rich Felker2d49c222016-04-29 19:50:33 -0400184*) build=$arg ; target=$arg ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400185esac
186done
187
Petr Hosek2f853dd2015-11-18 12:07:32 -0800188for i in srcdir prefix exec_prefix bindir libdir includedir syslibdir ; do
Rich Felker3d9e3a32012-11-08 17:20:50 -0500189stripdir $i
190done
Rich Felker64d2f8e2012-05-04 23:24:51 -0400191
192#
Petr Hosek2f853dd2015-11-18 12:07:32 -0800193# Get the source dir for out-of-tree builds
194#
195if test -z "$srcdir" ; then
196srcdir="${0%/configure}"
197stripdir srcdir
198fi
199abs_builddir="$(pwd)" || fail "$0: cannot determine working directory"
200abs_srcdir="$(cd $srcdir && pwd)" || fail "$0: invalid source directory $srcdir"
201test "$abs_srcdir" = "$abs_builddir" && srcdir=.
202test "$srcdir" != "." -a -f Makefile -a ! -h Makefile && fail "$0: Makefile already exists in the working directory"
203
204#
Rich Felker64d2f8e2012-05-04 23:24:51 -0400205# Get a temp filename we can use
206#
207i=0
208set -C
209while : ; do i=$(($i+1))
210tmpc="./conf$$-$PPID-$i.c"
Rich Felker6c0cba82012-11-18 23:15:47 -05002112>|/dev/null > "$tmpc" && break
Rich Felker64d2f8e2012-05-04 23:24:51 -0400212test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc"
213done
214set +C
215trap 'rm "$tmpc"' EXIT INT QUIT TERM HUP
216
217#
Rich Felker2d49c222016-04-29 19:50:33 -0400218# Check whether we are cross-compiling, and set a default
219# CROSS_COMPILE prefix if none was provided.
220#
221test "$target" && \
222test "$target" != "$build" && \
223test -z "$CROSS_COMPILE" && \
224CROSS_COMPILE="$target-"
225
226#
Rich Felker64d2f8e2012-05-04 23:24:51 -0400227# Find a C compiler to use
228#
229printf "checking for C compiler... "
Rich Felker94e920d2012-08-14 22:50:16 -0400230trycc ${CROSS_COMPILE}gcc
231trycc ${CROSS_COMPILE}c99
232trycc ${CROSS_COMPILE}cc
Rich Felker64d2f8e2012-05-04 23:24:51 -0400233printf "%s\n" "$CC"
234test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
235
Rich Felker89456672014-05-12 14:22:57 -0400236printf "checking whether C compiler works... "
237echo "typedef int x;" > "$tmpc"
238if output=$($CC $CPPFLAGS $CFLAGS -c -o /dev/null "$tmpc" 2>&1) ; then
239printf "yes\n"
240else
241printf "no; compiler output follows:\n%s\n" "$output"
242exit 1
243fi
244
Rich Felker64d2f8e2012-05-04 23:24:51 -0400245#
Shizfc431d32015-05-28 05:52:22 +0200246# Figure out options to force errors on unknown flags.
247#
248tryflag CFLAGS_TRY -Werror=unknown-warning-option
249tryflag CFLAGS_TRY -Werror=unused-command-line-argument
Dmitry Golovin9d12a6a2017-06-09 17:10:47 +0300250tryflag CFLAGS_TRY -Werror=ignored-optimization-argument
Shizfc431d32015-05-28 05:52:22 +0200251tryldflag LDFLAGS_TRY -Werror=unknown-warning-option
252tryldflag LDFLAGS_TRY -Werror=unused-command-line-argument
253
254#
Shizb3cd7d12015-06-28 23:08:19 +0200255# Need to know if the compiler is gcc or clang to decide which toolchain
256# wrappers to build.
Rich Felker64d2f8e2012-05-04 23:24:51 -0400257#
Shizb3cd7d12015-06-28 23:08:19 +0200258printf "checking for C compiler family... "
259cc_ver="$(LC_ALL=C $CC -v 2>&1)"
260cc_family=unknown
261if fnmatch '*gcc\ version*' "$cc_ver" ; then
262cc_family=gcc
Shizfb585452015-06-28 23:08:21 +0200263elif fnmatch '*clang\ version*' "$cc_ver" ; then
264cc_family=clang
Rich Felker9ca4dae2014-05-19 10:33:28 -0400265fi
Shizb3cd7d12015-06-28 23:08:19 +0200266echo "$cc_family"
Rich Felker9ca4dae2014-05-19 10:33:28 -0400267
268#
Shizb3cd7d12015-06-28 23:08:19 +0200269# Figure out toolchain wrapper to build
Rich Felker9ca4dae2014-05-19 10:33:28 -0400270#
Shizb3cd7d12015-06-28 23:08:19 +0200271if test "$wrapper" = auto -o "$wrapper" = detect ; then
Shizf8db6f72015-06-28 23:08:20 +0200272echo "#include <stdlib.h>" > "$tmpc"
273echo "#if ! __GLIBC__" >> "$tmpc"
274echo "#error no" >> "$tmpc"
275echo "#endif" >> "$tmpc"
Shizb3cd7d12015-06-28 23:08:19 +0200276printf "checking for toolchain wrapper to build... "
Shizf8db6f72015-06-28 23:08:20 +0200277if test "$wrapper" = auto && ! $CC -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
278echo "none"
279elif test "$cc_family" = gcc ; then
Shizb3cd7d12015-06-28 23:08:19 +0200280gcc_wrapper=yes
Shizf8db6f72015-06-28 23:08:20 +0200281echo "gcc"
Shizfb585452015-06-28 23:08:21 +0200282elif test "$cc_family" = clang ; then
283clang_wrapper=yes
284echo "clang"
Rich Felker64d2f8e2012-05-04 23:24:51 -0400285else
Shizb3cd7d12015-06-28 23:08:19 +0200286echo "none"
287if test "$wrapper" = detect ; then
288fail "$0: could not find an appropriate toolchain wrapper"
Rich Felker64d2f8e2012-05-04 23:24:51 -0400289fi
Shizb3cd7d12015-06-28 23:08:19 +0200290fi
Rich Felker64d2f8e2012-05-04 23:24:51 -0400291fi
292
Shizb3cd7d12015-06-28 23:08:19 +0200293if test "$gcc_wrapper" = yes ; then
Petr Hosek2f853dd2015-11-18 12:07:32 -0800294tools="$tools obj/musl-gcc"
Shizb3cd7d12015-06-28 23:08:19 +0200295tool_libs="$tool_libs lib/musl-gcc.specs"
296fi
Shizfb585452015-06-28 23:08:21 +0200297if test "$clang_wrapper" = yes ; then
Petr Hosek2f853dd2015-11-18 12:07:32 -0800298tools="$tools obj/musl-clang obj/ld.musl-clang"
Shizfb585452015-06-28 23:08:21 +0200299fi
Rich Felker64d2f8e2012-05-04 23:24:51 -0400300
301#
Rich Felker278883d2012-06-03 16:22:13 -0400302# Find the target architecture
Rich Felker64d2f8e2012-05-04 23:24:51 -0400303#
Rich Felker278883d2012-06-03 16:22:13 -0400304printf "checking target system type... "
Rich Felker01e5a1b2012-10-18 23:02:53 -0400305test -n "$target" || target=$($CC -dumpmachine 2>/dev/null) || target=unknown
Rich Felker278883d2012-06-03 16:22:13 -0400306printf "%s\n" "$target"
Rich Felker64d2f8e2012-05-04 23:24:51 -0400307
308#
309# Convert to just ARCH
310#
Rich Felker278883d2012-06-03 16:22:13 -0400311case "$target" in
Rich Felker0b8f0c52014-02-28 13:12:40 -0500312# Catch these early to simplify matching for 32-bit archs
Rich Felker64d2f8e2012-05-04 23:24:51 -0400313arm*) ARCH=arm ;;
Szabolcs Nagy01ef3dd2015-03-10 21:18:41 +0000314aarch64*) ARCH=aarch64 ;;
Rich Felker4c101e12016-02-19 00:10:23 -0500315i?86-nt32*) ARCH=nt32 ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400316i?86*) ARCH=i386 ;;
Rich Felkerf162c062014-03-17 17:38:22 -0400317x86_64-x32*|x32*|x86_64*x32) ARCH=x32 ;;
Rich Felker4c101e12016-02-19 00:10:23 -0500318x86_64-nt64*) ARCH=nt64 ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400319x86_64*) ARCH=x86_64 ;;
Rich Felkerf81e44a2018-06-14 14:26:30 -0400320m68k*) ARCH=m68k ;;
Szabolcs Nagyfff88012016-08-24 12:40:10 +0200321mips64*|mipsisa64*) ARCH=mips64 ;;
Rich Felker0b8f0c52014-02-28 13:12:40 -0500322mips*) ARCH=mips ;;
323microblaze*) ARCH=microblaze ;;
Stefan Kristiansson200d1542014-07-17 22:09:10 +0300324or1k*) ARCH=or1k ;;
Rich Felkeraba17aa2019-01-19 18:39:54 -0500325powerpc64*|ppc64*) ARCH=powerpc64 ;;
326powerpc*|ppc*) ARCH=powerpc ;;
Rich Felker0a488602019-05-24 10:46:08 -0400327riscv64*) ARCH=riscv64 ;;
Rich Felker0b8f0c52014-02-28 13:12:40 -0500328sh[1-9bel-]*|sh|superh*) ARCH=sh ;;
Bobby Bingham15094942016-11-11 21:52:05 -0600329s390x*) ARCH=s390x ;;
Rich Felker278883d2012-06-03 16:22:13 -0400330unknown) fail "$0: unable to detect target arch; try $0 --target=..." ;;
331*) fail "$0: unknown or unsupported target \"$target\"" ;;
Rich Felker64d2f8e2012-05-04 23:24:51 -0400332esac
333
334#
335# Try to get a conforming C99 freestanding environment
336#
337tryflag CFLAGS_C99FSE -std=c99
338tryflag CFLAGS_C99FSE -nostdinc
339tryflag CFLAGS_C99FSE -ffreestanding \
340|| tryflag CFLAGS_C99FSE -fno-builtin
341tryflag CFLAGS_C99FSE -fexcess-precision=standard \
Rich Felker2121b8a2012-07-03 23:53:05 -0400342|| { test "$ARCH" = i386 && tryflag CFLAGS_C99FSE -ffloat-store ; }
Rich Felkerb4ccc3c2012-05-05 17:18:31 -0400343tryflag CFLAGS_C99FSE -frounding-math
Rich Felker64d2f8e2012-05-04 23:24:51 -0400344
Rich Felker4a1f55e2013-08-01 17:12:23 -0400345#
Rich Felker06ceee82013-08-27 17:33:47 -0400346# We may use the may_alias attribute if __GNUC__ is defined, so
347# if the compiler defines __GNUC__ but does not provide it,
348# it must be defined away as part of the CFLAGS.
349#
350printf "checking whether compiler needs attribute((may_alias)) suppression... "
351cat > "$tmpc" <<EOF
352typedef int
353#ifdef __GNUC__
354__attribute__((__may_alias__))
355#endif
356x;
357EOF
Rich Felkere1d99892016-01-27 19:01:21 -0500358if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS \
Rich Felker06ceee82013-08-27 17:33:47 -0400359 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
360printf "no\n"
361else
362printf "yes\n"
363CFLAGS_C99FSE="$CFLAGS_C99FSE -D__may_alias__="
364fi
365
366#
Rich Felkerbc0c4842015-10-23 00:01:01 -0400367# The GNU toolchain defaults to assuming unmarked files need an
368# executable stack, potentially exposing vulnerabilities in programs
369# linked with such object files. Fix this.
370#
371tryflag CFLAGS_C99FSE -Wa,--noexecstack
372
373#
Rich Felker1ef849c2015-04-13 20:13:10 -0400374# Check for options to disable stack protector, which needs to be
375# disabled for a few early-bootstrap translation units. If not found,
376# this is not an error; we assume the toolchain does not do ssp.
377#
378tryflag CFLAGS_NOSSP -fno-stack-protector
379
380#
Rich Felker4a1f55e2013-08-01 17:12:23 -0400381# Check for options that may be needed to prevent the compiler from
382# generating self-referential versions of memcpy,, memmove, memcmp,
383# and memset. Really, we should add a check to determine if this
384# option is sufficient, and if not, add a macro to cripple these
385# functions with volatile...
386#
387tryflag CFLAGS_MEMOPS -fno-tree-loop-distribute-patterns
Rich Felkera80847d2013-07-22 21:22:04 -0400388
Rich Felker64d2f8e2012-05-04 23:24:51 -0400389#
Rich Felker4ad35882014-06-20 16:10:48 -0400390# Enable debugging if requessted.
Rich Felker64d2f8e2012-05-04 23:24:51 -0400391#
Rich Felker4ad35882014-06-20 16:10:48 -0400392test "$debug" = yes && CFLAGS_AUTO=-g
Rich Felkera80847d2013-07-22 21:22:04 -0400393
394#
Alex Dowad35b33122015-07-10 15:03:24 +0200395# Preprocess asm files to add extra debugging information if debug is
396# enabled, our assembler supports the needed directives, and the
397# preprocessing script has been written for our architecture.
398#
399printf "checking whether we should preprocess assembly to add debugging information... "
400if fnmatch '-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" &&
401 test -f "tools/add-cfi.$ARCH.awk" &&
402 printf ".file 1 \"srcfile.s\"\n.line 1\n.cfi_startproc\n.cfi_endproc" | $CC -g -x assembler -c -o /dev/null 2>/dev/null -
403then
404 ADD_CFI=yes
405else
406 ADD_CFI=no
407fi
408printf "%s\n" "$ADD_CFI"
409
410#
Rich Felkera80847d2013-07-22 21:22:04 -0400411# Possibly add a -O option to CFLAGS and select modules to optimize with
412# -O3 based on the status of --enable-optimize and provided CFLAGS.
413#
414printf "checking for optimization settings... "
415case "x$optimize" in
416xauto)
417if fnmatch '-O*|*\ -O*' "$CFLAGS_AUTO $CFLAGS" ; then
418printf "using provided CFLAGS\n" ;optimize=no
419else
420printf "using defaults\n" ; optimize=yes
421fi
422;;
423xsize|xnone) printf "minimize size\n" ; optimize=size ;;
424xno|x) printf "disabled\n" ; optimize=no ;;
425*) printf "custom\n" ;;
426esac
427
428test "$optimize" = no || tryflag CFLAGS_AUTO -Os || tryflag CFLAGS_AUTO -O2
Rich Felker43d25312013-07-24 23:21:45 -0400429test "$optimize" = yes && optimize="internal,malloc,string"
Rich Felkera80847d2013-07-22 21:22:04 -0400430
431if fnmatch 'no|size' "$optimize" ; then :
432else
433printf "components to be optimized for speed:"
434while test "$optimize" ; do
435case "$optimize" in
436*,*) this=${optimize%%,*} optimize=${optimize#*,} ;;
437*) this=$optimize optimize=
438esac
439printf " $this"
440case "$this" in
441*/*.c) ;;
442*/*) this=$this*.c ;;
443*) this=$this/*.c ;;
444esac
445OPTIMIZE_GLOBS="$OPTIMIZE_GLOBS $this"
446done
447OPTIMIZE_GLOBS=${OPTIMIZE_GLOBS# }
448printf "\n"
449fi
450
451# Always try -pipe
Rich Felker64d2f8e2012-05-04 23:24:51 -0400452tryflag CFLAGS_AUTO -pipe
453
454#
Rich Felkerb439c052012-08-29 09:36:02 -0400455# If debugging is disabled, omit frame pointer. Modern GCC does this
456# anyway on most archs even when debugging is enabled since the frame
457# pointer is no longer needed for debugging.
Rich Felker64d2f8e2012-05-04 23:24:51 -0400458#
459if fnmatch '-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" ; then :
460else
Rich Felker64d2f8e2012-05-04 23:24:51 -0400461tryflag CFLAGS_AUTO -fomit-frame-pointer
462fi
463
464#
Rich Felkerb439c052012-08-29 09:36:02 -0400465# Modern GCC wants to put DWARF tables (used for debugging and
466# unwinding) in the loaded part of the program where they are
467# unstrippable. These options force them back to debug sections (and
468# cause them not to get generated at all if debugging is off).
469#
470tryflag CFLAGS_AUTO -fno-unwind-tables
471tryflag CFLAGS_AUTO -fno-asynchronous-unwind-tables
472
473#
Rich Felker27c1ecc2015-11-04 13:24:11 -0500474# Attempt to put each function and each data object in its own
475# section. This both allows additional size optimizations at link
476# time and works around a dangerous class of compiler/assembler bugs
477# whereby relative address expressions are constant-folded by the
478# assembler even when one or more of the symbols involved is
479# replaceable. See gas pr 18561 and gcc pr 66609, 68178, etc.
480#
481tryflag CFLAGS_AUTO -ffunction-sections
482tryflag CFLAGS_AUTO -fdata-sections
483
484#
Rich Felker64d2f8e2012-05-04 23:24:51 -0400485# On x86, make sure we don't have incompatible instruction set
486# extensions enabled by default. This is bad for making static binaries.
487# We cheat and use i486 rather than i386 because i386 really does not
488# work anyway (issues with atomic ops).
Andre McCurdya6274a12015-04-21 10:34:05 -0700489# Some build environments pass -march and -mtune options via CC, so
490# check both CC and CFLAGS.
Rich Felker64d2f8e2012-05-04 23:24:51 -0400491#
492if test "$ARCH" = "i386" ; then
Andre McCurdya6274a12015-04-21 10:34:05 -0700493fnmatch '-march=*|*\ -march=*' "$CC $CFLAGS" || tryldflag CFLAGS_AUTO -march=i486
494fnmatch '-mtune=*|*\ -mtune=*' "$CC $CFLAGS" || tryldflag CFLAGS_AUTO -mtune=generic
Rich Felker64d2f8e2012-05-04 23:24:51 -0400495fi
496
Rich Felker2384f272012-12-11 23:28:31 -0500497#
498# Even with -std=c99, gcc accepts some constructs which are constraint
499# violations. We want to treat these as errors regardless of whether
500# other purely stylistic warnings are enabled -- especially implicit
501# function declarations, which are a dangerous programming error.
502#
503tryflag CFLAGS_AUTO -Werror=implicit-function-declaration
504tryflag CFLAGS_AUTO -Werror=implicit-int
505tryflag CFLAGS_AUTO -Werror=pointer-sign
506tryflag CFLAGS_AUTO -Werror=pointer-arith
507
Dmitry Golovin9d12a6a2017-06-09 17:10:47 +0300508#
509# GCC ignores unused arguements by default, but Clang needs this extra
510# parameter to stop printing warnings about LDFLAGS passed during
511# compiling stage and CFLAGS passed during linking stage.
512#
Rich Felker76341012018-09-12 22:43:38 -0400513test "$cc_family" = clang && tryflag CFLAGS_AUTO -Qunused-arguments
Dmitry Golovin9d12a6a2017-06-09 17:10:47 +0300514
Rich Felker64d2f8e2012-05-04 23:24:51 -0400515if test "x$warnings" = xyes ; then
516tryflag CFLAGS_AUTO -Wall
Rich Felker64d2f8e2012-05-04 23:24:51 -0400517tryflag CFLAGS_AUTO -Wno-parentheses
518tryflag CFLAGS_AUTO -Wno-uninitialized
519tryflag CFLAGS_AUTO -Wno-missing-braces
520tryflag CFLAGS_AUTO -Wno-unused-value
521tryflag CFLAGS_AUTO -Wno-unused-but-set-variable
522tryflag CFLAGS_AUTO -Wno-unknown-pragmas
rofl0radbeefb2014-01-08 03:11:46 +0100523tryflag CFLAGS_AUTO -Wno-pointer-to-int-cast
Rich Felker64d2f8e2012-05-04 23:24:51 -0400524fi
525
Rich Felker16191272016-01-25 19:57:38 -0500526# Determine if the compiler produces position-independent code (PIC)
527# by default. If so, we don't need to compile separate object files
528# for libc.a and libc.so.
529if trycppif __PIC__ "$CFLAGS_C99FSE $CPPFLAGS $CFLAGS" ; then
530pic_default=yes
531else
532pic_default=no
533fi
534
Rich Felker2efd38e2015-11-04 21:39:13 -0500535# Reduce space lost to padding for alignment purposes by sorting data
536# objects according to their alignment reqirements. This approximates
537# optimal packing.
538tryldflag LDFLAGS_AUTO -Wl,--sort-section,alignment
539tryldflag LDFLAGS_AUTO -Wl,--sort-common
540
Rich Felker6a851e32015-11-04 21:40:36 -0500541# When linking shared library, drop dummy weak definitions that were
542# replaced by strong definitions from other translation units.
543tryldflag LDFLAGS_AUTO -Wl,--gc-sections
544
Rich Felker0c5efde2012-06-06 22:00:08 -0400545# Some patched GCC builds have these defaults messed up...
Rich Felker2bd05a42012-08-25 17:13:28 -0400546tryldflag LDFLAGS_AUTO -Wl,--hash-style=both
Rich Felker08f70a32012-06-06 20:45:52 -0400547
Rich Felker24623702015-09-22 15:45:40 +0000548# Prevent linking if there are undefined symbols; if any exist,
549# libc.so will crash at runtime during relocation processing.
550# The common way this can happen is failure to link the compiler
551# runtime library; implementation error is also a possibility.
552tryldflag LDFLAGS_AUTO -Wl,--no-undefined
553
Rich Felkerea1e2c52015-11-07 20:23:49 -0500554# Avoid exporting symbols from compiler runtime libraries. They
555# should be hidden anyway, but some toolchains including old gcc
556# versions built without shared library support and pcc are broken.
557tryldflag LDFLAGS_AUTO -Wl,--exclude-libs=ALL
558
Rich Felkerb9410062018-04-16 20:12:12 -0400559# Public data symbols must be interposable to allow for copy
560# relocations, but otherwise we want to bind symbols at libc link
561# time to eliminate startup relocations and PLT overhead. Use
562# --dynamic-list rather than -Bsymbolic-functions for greater
563# control over what symbols are left unbound.
564tryldflag LDFLAGS_AUTO -Wl,--dynamic-list="$srcdir/dynamic.list"
Rich Felker498a1002012-06-07 00:32:22 -0400565
Rich Felker2c1cd232012-09-10 15:30:52 -0400566# Find compiler runtime library
567test -z "$LIBCC" && tryldflag LIBCC -lgcc && tryldflag LIBCC -lgcc_eh
568test -z "$LIBCC" && tryldflag LIBCC -lcompiler_rt
Matúš Olekšákfcf24b92018-02-21 12:03:04 -0500569test -z "$LIBCC" && try_libcc=`$CC -print-libgcc-file-name 2>/dev/null` \
570 && tryldflag LIBCC "$try_libcc"
Rich Felkercd31a1f2012-10-26 18:15:51 -0400571test -z "$LIBCC" && try_libcc=`$CC -print-file-name=libpcc.a 2>/dev/null` \
572 && tryldflag LIBCC "$try_libcc"
Rich Felker2c1cd232012-09-10 15:30:52 -0400573printf "using compiler runtime libraries: %s\n" "$LIBCC"
Rich Felkera1546e82012-07-12 14:24:10 -0400574
Rich Felker3e7f1862013-07-18 20:30:58 -0400575# Figure out arch variants for archs with variants
576SUBARCH=
Rich Felker428462a2015-04-22 01:41:00 -0400577t="$CFLAGS_C99FSE $CPPFLAGS $CFLAGS"
Rich Felker3e7f1862013-07-18 20:30:58 -0400578
Rich Felkerbdb08172019-05-11 19:44:21 -0400579if test "$ARCH" = "i386" ; then
580printf "checking whether compiler can use ebx in PIC asm constraints... "
581cat > "$tmpc" <<EOF
582int foo(int x) { __asm__ ( "" : "+b"(x) ); return x; }
583EOF
584if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS -fPIC \
585 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
586printf "yes\n"
587else
588printf "no\n"
589CFLAGS_AUTO="$CFLAGS_AUTO -DBROKEN_EBX_ASM"
590fi
591fi
592
rofl0r8c820232014-03-19 22:31:00 +0100593if test "$ARCH" = "x86_64" ; then
594trycppif __ILP32__ "$t" && ARCH=x32
595fi
596
Rich Felker3e7f1862013-07-18 20:30:58 -0400597if test "$ARCH" = "arm" ; then
Rich Felker088c9672016-12-19 21:53:33 -0500598if trycppif __thumb2__ "$t" ; then
Rich Felkerdffc2052018-09-19 01:31:26 -0400599tryflag CFLAGS_AUTO -mimplicit-it=always
Rich Felker088c9672016-12-19 21:53:33 -0500600tryflag CFLAGS_AUTO -Wa,-mimplicit-it=always
601tryflag CFLAGS_AUTO -Wa,-mthumb
602fi
Rich Felker3e7f1862013-07-18 20:30:58 -0400603trycppif __ARMEB__ "$t" && SUBARCH=${SUBARCH}eb
Rich Felker4918c2b2013-08-16 17:09:07 -0400604trycppif __ARM_PCS_VFP "$t" && SUBARCH=${SUBARCH}hf
Rich Felker71c334f2016-02-19 01:20:07 +0000605# Versions of clang up until at least 3.8 have the wrong constraint codes
606# for floating point operands to inline asm. Detect this so the affected
607# source files can just disable the asm.
608if test "$cc_family" = clang ; then
609printf "checking whether clang's vfp asm constraints work... "
610echo 'float f(float x) { __asm__("":"+t"(x)); return x; }' > "$tmpc"
611if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
612printf "yes\n"
613else
614printf "no\n"
615CFLAGS_AUTO="$CFLAGS_AUTO -DBROKEN_VFP_ASM"
616CFLAGS_AUTO="${CFLAGS_AUTO# }"
617fi
618fi
Rich Felker3e7f1862013-07-18 20:30:58 -0400619fi
620
Szabolcs Nagy01ef3dd2015-03-10 21:18:41 +0000621if test "$ARCH" = "aarch64" ; then
622trycppif __AARCH64EB__ "$t" && SUBARCH=${SUBARCH}_be
623fi
624
Rich Felkerf81e44a2018-06-14 14:26:30 -0400625if test "$ARCH" = "m68k" ; then
626if trycppif "__HAVE_68881__" ; then : ;
627elif trycppif "__mcffpu__" ; then SUBARCH="-fp64"
628else SUBARCH="-sf"
629fi
630fi
631
Szabolcs Nagye5bb1652014-02-24 23:16:29 +0100632if test "$ARCH" = "mips" ; then
Rich Felker6d99ad92016-04-03 10:42:37 +0000633trycppif "__mips_isa_rev >= 6" "$t" && SUBARCH=${SUBARCH}r6
Szabolcs Nagye5bb1652014-02-24 23:16:29 +0100634trycppif "_MIPSEL || __MIPSEL || __MIPSEL__" "$t" && SUBARCH=${SUBARCH}el
635trycppif __mips_soft_float "$t" && SUBARCH=${SUBARCH}-sf
636fi
Rich Felker3e7f1862013-07-18 20:30:58 -0400637
Rich Felker83933572016-03-06 17:41:56 +0000638if test "$ARCH" = "mips64" ; then
Rich Felker5972c4a2016-04-18 05:19:13 +0000639trycppif "_MIPS_SIM != _ABI64" "$t" && ARCH=mipsn32
Rich Felker6d99ad92016-04-03 10:42:37 +0000640trycppif "__mips_isa_rev >= 6" "$t" && SUBARCH=${SUBARCH}r6
Rich Felker83933572016-03-06 17:41:56 +0000641trycppif "_MIPSEL || __MIPSEL || __MIPSEL__" "$t" && SUBARCH=${SUBARCH}el
642trycppif __mips_soft_float "$t" && SUBARCH=${SUBARCH}-sf
643fi
644
Felix Fietkau5a92dd92016-01-25 13:20:52 +0100645if test "$ARCH" = "powerpc" ; then
Rich Felker636a4792016-03-06 17:11:29 -0500646trycppif "__NO_FPRS__ && !_SOFT_FLOAT" "$t" && fail \
647 "$0: error: compiler's floating point configuration is unsupported"
Felix Fietkau5a92dd92016-01-25 13:20:52 +0100648trycppif _SOFT_FLOAT "$t" && SUBARCH=${SUBARCH}-sf
649fi
650
Rich Felker3e7f1862013-07-18 20:30:58 -0400651test "$ARCH" = "microblaze" && trycppif __MICROBLAZEEL__ "$t" \
652&& SUBARCH=${SUBARCH}el
653
Bobby Binghamc0ede9e2016-04-30 19:18:17 -0500654if test "$ARCH" = "powerpc64" ; then
655trycppif "_CALL_ELF == 2" "$t" || fail "$0: error: unsupported powerpc64 ABI"
656trycppif __LITTLE_ENDIAN__ "$t" && SUBARCH=${SUBARCH}le
657trycppif _SOFT_FLOAT "$t" && fail "$0: error: soft-float not supported on powerpc64"
658fi
659
Rich Felker0a488602019-05-24 10:46:08 -0400660if test "$ARCH" = "riscv64" ; then
661trycppif __riscv_float_abi_soft "$t" && SUBARCH=${SUBARCH}-sf
662trycppif __riscv_float_abi_single "$t" && SUBARCH=${SUBARCH}-sp
663fi
664
Rich Felkerb1683a12014-02-27 23:18:42 -0500665if test "$ARCH" = "sh" ; then
Rich Felker79789982015-10-15 17:21:07 -0400666tryflag CFLAGS_AUTO -Wa,--isa=any
Rich Felkerb1683a12014-02-27 23:18:42 -0500667trycppif __BIG_ENDIAN__ "$t" && SUBARCH=${SUBARCH}eb
Bobby Bingham23d64182014-04-27 21:13:59 -0500668if trycppif "__SH_FPU_ANY__ || __SH4__" "$t" ; then
Rich Felkerb1683a12014-02-27 23:18:42 -0500669# Some sh configurations are broken and replace double with float
670# rather than using softfloat when the fpu is present but only
671# supports single precision. Reject them.
672printf "checking whether compiler's double type is IEEE double... "
Rich Felker946b9fa2014-02-27 23:55:04 -0500673echo 'typedef char dblcheck[(int)sizeof(double)-5];' > "$tmpc"
Rich Felkerb1683a12014-02-27 23:18:42 -0500674if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
675printf "yes\n"
676else
677printf "no\n"
678fail "$0: error: compiler's floating point configuration is unsupported"
679fi
680else
681SUBARCH=${SUBARCH}-nofpu
682fi
Rich Felkerd4c82d02015-09-12 03:22:19 +0000683if trycppif __SH_FDPIC__ "$t" ; then
684SUBARCH=${SUBARCH}-fdpic
Rich Felkerd4c82d02015-09-12 03:22:19 +0000685fi
Rich Felkerb1683a12014-02-27 23:18:42 -0500686fi
Bobby Bingham3a3c8132013-10-05 05:13:18 -0500687
Rich Felker3e7f1862013-07-18 20:30:58 -0400688test "$SUBARCH" \
689&& printf "configured for %s variant: %s\n" "$ARCH" "$ARCH$SUBARCH"
Rich Felker64d2f8e2012-05-04 23:24:51 -0400690
Rich Felker90d77722013-08-11 03:27:35 -0400691case "$ARCH$SUBARCH" in
692arm) ASMSUBARCH=el ;;
693*) ASMSUBARCH=$SUBARCH ;;
694esac
695
Rich Felker86cc54b2013-08-02 19:34:22 -0400696#
697# Some archs (powerpc) have different possible long double formats
698# that the compiler can be configured for. The logic for whether this
699# is supported is in bits/float.h; in general, it is not. We need to
700# check for mismatches here or code in printf, strotd, and scanf will
701# be dangerously incorrect because it depends on (1) the macros being
702# correct, and (2) IEEE semantics.
703#
704printf "checking whether compiler's long double definition matches float.h... "
705echo '#include <float.h>' > "$tmpc"
Szabolcs Nagy249b6212017-09-17 15:35:55 +0000706echo '#define C(m,s) (m==LDBL_MANT_DIG && s==sizeof(long double))' >> "$tmpc"
707echo 'typedef char ldcheck[(C(53,8)||C(64,12)||C(64,16)||C(113,16))*2-1];' >> "$tmpc"
Rich Felkerefdf04c2016-01-27 19:31:15 -0500708if $CC $CFLAGS_C99FSE \
709 -I$srcdir/arch/$ARCH -I$srcdir/arch/generic -I$srcdir/include \
710 $CPPFLAGS $CFLAGS -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
Rich Felker86cc54b2013-08-02 19:34:22 -0400711printf "yes\n"
712else
713printf "no\n"
714fail "$0: error: unsupported long double type"
715fi
716
Rich Felker80fbaac2016-02-17 13:53:54 -0500717#
718# Some build systems globally pass in broken CFLAGS like -ffast-math
719# for all packages. On recent GCC we can detect this and error out
720# early rather than producing a seriously-broken math library.
721#
Rich Felker5030e4a2016-02-18 04:09:33 +0000722if trycppif "__FAST_MATH__" \
Rich Felker80fbaac2016-02-17 13:53:54 -0500723 "$CFLAGS_C99FSE $CPPFLAGS $CFLAGS" ; then
724fail "$0: error: compiler has broken floating point; check CFLAGS"
725fi
726
Rich Felker64d2f8e2012-05-04 23:24:51 -0400727printf "creating config.mak... "
728
Rich Felker453f4622013-08-16 18:19:47 -0400729cmdline=$(quote "$0")
730for i ; do cmdline="$cmdline $(quote "$i")" ; done
731
Rich Felker64d2f8e2012-05-04 23:24:51 -0400732exec 3>&1 1>config.mak
733
734
735cat << EOF
Rich Felker453f4622013-08-16 18:19:47 -0400736# This version of config.mak was generated by:
737# $cmdline
Rich Felker64d2f8e2012-05-04 23:24:51 -0400738# Any changes made here will be lost if configure is re-run
Fangrui Song4b5ba072019-06-27 08:10:04 +0000739AR = ${AR:-\$(CROSS_COMPILE)ar}
740RANLIB = ${RANLIB:-\$(CROSS_COMPILE)ranlib}
Rich Felker64d2f8e2012-05-04 23:24:51 -0400741ARCH = $ARCH
Rich Felker3e7f1862013-07-18 20:30:58 -0400742SUBARCH = $SUBARCH
Rich Felker90d77722013-08-11 03:27:35 -0400743ASMSUBARCH = $ASMSUBARCH
Petr Hosek2f853dd2015-11-18 12:07:32 -0800744srcdir = $srcdir
Rich Felker64d2f8e2012-05-04 23:24:51 -0400745prefix = $prefix
746exec_prefix = $exec_prefix
747bindir = $bindir
748libdir = $libdir
749includedir = $includedir
750syslibdir = $syslibdir
751CC = $CC
Rich Felker4cd8b472015-11-02 16:58:14 -0500752CFLAGS = $CFLAGS
753CFLAGS_AUTO = $CFLAGS_AUTO
Rich Felker64d2f8e2012-05-04 23:24:51 -0400754CFLAGS_C99FSE = $CFLAGS_C99FSE
Rich Felker4a1f55e2013-08-01 17:12:23 -0400755CFLAGS_MEMOPS = $CFLAGS_MEMOPS
Rich Felker1ef849c2015-04-13 20:13:10 -0400756CFLAGS_NOSSP = $CFLAGS_NOSSP
Rich Felker64d2f8e2012-05-04 23:24:51 -0400757CPPFLAGS = $CPPFLAGS
Rich Felker4cd8b472015-11-02 16:58:14 -0500758LDFLAGS = $LDFLAGS
759LDFLAGS_AUTO = $LDFLAGS_AUTO
Rich Felker94e920d2012-08-14 22:50:16 -0400760CROSS_COMPILE = $CROSS_COMPILE
Rich Felker2c1cd232012-09-10 15:30:52 -0400761LIBCC = $LIBCC
Rich Felkera80847d2013-07-22 21:22:04 -0400762OPTIMIZE_GLOBS = $OPTIMIZE_GLOBS
Shizb3cd7d12015-06-28 23:08:19 +0200763ALL_TOOLS = $tools
764TOOL_LIBS = $tool_libs
Alex Dowad35b33122015-07-10 15:03:24 +0200765ADD_CFI = $ADD_CFI
Rich Felker64d2f8e2012-05-04 23:24:51 -0400766EOF
767test "x$static" = xno && echo "STATIC_LIBS ="
768test "x$shared" = xno && echo "SHARED_LIBS ="
Shizb3cd7d12015-06-28 23:08:19 +0200769test "x$cc_family" = xgcc && echo 'WRAPCC_GCC = $(CC)'
Shizfb585452015-06-28 23:08:21 +0200770test "x$cc_family" = xclang && echo 'WRAPCC_CLANG = $(CC)'
Rich Felker16191272016-01-25 19:57:38 -0500771test "x$pic_default" = xyes && echo 'AOBJS = $(LOBJS)'
Rich Felker64d2f8e2012-05-04 23:24:51 -0400772exec 1>&3 3>&-
773
Petr Hosek2f853dd2015-11-18 12:07:32 -0800774test "$srcdir" = "." || ln -sf $srcdir/Makefile .
775
Rich Felker64d2f8e2012-05-04 23:24:51 -0400776printf "done\n"