5 Usage: $0 [OPTION]... [VAR=VALUE]... [TARGET]
7 To assign environment variables (e.g., CC, CFLAGS...), specify them as
8 VAR=VALUE. See below for descriptions of some of the useful variables.
10 Defaults for the options are specified in brackets.
12 Installation directories:
13 --prefix=PREFIX main installation prefix [/usr/local/musl]
14 --exec-prefix=EPREFIX installation prefix for executable files [PREFIX]
16 Fine tuning of the installation directories:
17 --bindir=DIR user executables [EPREFIX/bin]
18 --libdir=DIR library files for the linker [PREFIX/lib]
19 --includedir=DIR include files for the C compiler [PREFIX/include]
20 --syslibdir=DIR location for the dynamic linker [/lib]
23 --target=TARGET configure to run on target TARGET [detected]
24 --host=HOST same as --target
27 --enable-debug build with debugging information [disabled]
28 --enable-warnings build with recommended warnings flags [disabled]
29 --enable-gcc-wrapper build musl-gcc toolchain wrapper [auto]
30 --disable-shared inhibit building shared library [enabled]
31 --disable-static inhibit building static library [enabled]
33 Some influential environment variables:
34 CC C compiler command [detected]
35 CFLAGS C compiler flags [-Os -pipe ...]
36 CROSS_COMPILE prefix for cross compiler and tools [none]
37 LIBCC compiler runtime library [detected]
39 Use these variables to override the choices made by configure.
47 echo () { printf "%s\n" "$*" ; }
48 fail
() { echo "$*" ; exit 1 ; }
49 fnmatch
() { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; }
50 cmdexists
() { type "$1" >/dev
/null
2>&1 ; }
51 trycc
() { test -z "$CC" && cmdexists
"$1" && CC
=$1 ; }
54 while eval "fnmatch '*/' \"\${$1}\"" ; do eval "$1=\${$1%/}" ; done
58 printf "checking whether compiler accepts %s... " "$2"
59 echo "typedef int x;" > "$tmpc"
60 if $CC "$2" -c -o /dev
/null
"$tmpc" >/dev
/null
2>&1 ; then
62 eval "$1=\"\${$1} \$2\""
72 printf "checking whether linker accepts %s... " "$2"
73 echo "typedef int x;" > "$tmpc"
74 if $CC -nostdlib -shared "$2" -o /dev
/null
"$tmpc" >/dev
/null
2>&1 ; then
76 eval "$1=\"\${$1} \$2\""
87 # Beginning of actual script
92 prefix
=/usr
/local
/musl
93 exec_prefix
='$(prefix)'
94 bindir
='$(exec_prefix)/bin'
95 libdir
='$(prefix)/lib'
96 includedir
='$(prefix)/include'
107 --prefix=*) prefix
=${arg#*=} ;;
108 --exec-prefix=*) exec_prefix
=${arg#*=} ;;
109 --bindir=*) bindir
=${arg#*=} ;;
110 --libdir=*) libdir
=${arg#*=} ;;
111 --includedir=*) includedir
=${arg#*=} ;;
112 --syslibdir=*) syslibdir
=${arg#*=} ;;
113 --enable-shared|
--enable-shared=yes) shared
=yes ;;
114 --disable-shared|
--enable-shared=no
) shared
=no
;;
115 --enable-static|
--enable-static=yes) static
=yes ;;
116 --disable-static|
--enable-static=no
) static
=no
;;
117 --enable-debug|
--enable-debug=yes) debug
=yes ;;
118 --disable-debug|
--enable-debug=no
) debug
=no
;;
119 --enable-warnings|
--enable-warnings=yes) warnings
=yes ;;
120 --disable-warnings|
--enable-warnings=no
) warnings
=no
;;
121 --enable-gcc-wrapper|
--enable-gcc-wrapper=yes) wrapper
=yes ;;
122 --disable-gcc-wrapper|
--enable-gcc-wrapper=no
) wrapper
=no
;;
123 --enable-*|
--disable-*|
--with-*|
--without-*|
--*dir
=*|
--build=*) ;;
124 --host=*|
--target=*) target
=${arg#*=} ;;
125 -* ) echo "$0: unknown option $arg" ;;
126 CC
=*) CC
=${arg#*=} ;;
127 CFLAGS
=*) CFLAGS
=${arg#*=} ;;
128 CPPFLAGS
=*) CPPFLAGS
=${arg#*=} ;;
129 LDFLAGS
=*) LDFLAGS
=${arg#*=} ;;
130 CROSS_COMPILE
=*) CROSS_COMPILE
=${arg#*=} ;;
131 LIBCC
=*) LIBCC
=${arg#*=} ;;
137 for i
in prefix exec_prefix bindir libdir includedir syslibdir
; do
142 # Get a temp filename we can use
146 while : ; do i
=$
(($i+1))
147 tmpc
="./conf$$-$PPID-$i.c"
148 2>|
/dev
/null
> "$tmpc" && break
149 test "$i" -gt 50 && fail
"$0: cannot create temporary file $tmpc"
152 trap 'rm "$tmpc"' EXIT INT QUIT TERM HUP
155 # Find a C compiler to use
157 printf "checking for C compiler... "
158 trycc
${CROSS_COMPILE}gcc
159 trycc
${CROSS_COMPILE}c99
160 trycc
${CROSS_COMPILE}cc
162 test -n "$CC" ||
{ echo "$0: cannot find a C compiler" ; exit 1 ; }
165 # Only build musl-gcc wrapper if toolchain does not already target musl
167 if test -z "$wrapper" ; then
168 printf "checking whether compiler is gcc... "
169 if fnmatch
'*gcc\ version*' "$($CC -v 2>&1)" ; then
171 printf "checking whether to build musl-gcc wrapper... "
174 case "$line" in */ld-musl-
*) wrapper
=no
;; esac
187 # Find the target architecture
189 printf "checking target system type... "
190 test -n "$target" || target
=$
($CC -dumpmachine 2>/dev
/null
) || target
=unknown
191 printf "%s\n" "$target"
194 # Convert to just ARCH
199 x86_64
*) ARCH
=x86_64
;;
200 mips-
*|mipsel-
*) ARCH
=mips
;;
201 microblaze-
*) ARCH
=microblaze
;;
202 powerpc-
*) ARCH
=powerpc
;;
203 unknown
) fail
"$0: unable to detect target arch; try $0 --target=..." ;;
204 *) fail
"$0: unknown or unsupported target \"$target\"" ;;
208 # Try to get a conforming C99 freestanding environment
210 tryflag CFLAGS_C99FSE
-std=c99
211 tryflag CFLAGS_C99FSE
-nostdinc
212 tryflag CFLAGS_C99FSE
-ffreestanding \
213 || tryflag CFLAGS_C99FSE
-fno-builtin
214 tryflag CFLAGS_C99FSE
-fexcess-precision=standard \
215 ||
{ test "$ARCH" = i386
&& tryflag CFLAGS_C99FSE
-ffloat-store ; }
216 tryflag CFLAGS_C99FSE
-frounding-math
219 # Setup basic default CFLAGS: debug, optimization, and -pipe
221 if fnmatch
'-O*|*\ -O*' "$CFLAGS_AUTO $CFLAGS" ; then :
223 tryflag CFLAGS_AUTO
-Os || tryflag CFLAGS_AUTO
-O2
225 test "x$debug" = xyes
&& CFLAGS_AUTO
="-g"
226 tryflag CFLAGS_AUTO
-pipe
229 # If debugging is disabled, omit frame pointer. Modern GCC does this
230 # anyway on most archs even when debugging is enabled since the frame
231 # pointer is no longer needed for debugging.
233 if fnmatch
'-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" ; then :
235 tryflag CFLAGS_AUTO
-fomit-frame-pointer
239 # Modern GCC wants to put DWARF tables (used for debugging and
240 # unwinding) in the loaded part of the program where they are
241 # unstrippable. These options force them back to debug sections (and
242 # cause them not to get generated at all if debugging is off).
244 tryflag CFLAGS_AUTO
-fno-unwind-tables
245 tryflag CFLAGS_AUTO
-fno-asynchronous-unwind-tables
248 # The GNU toolchain defaults to assuming unmarked files need an
249 # executable stack, potentially exposing vulnerabilities in programs
250 # linked with such object files. Fix this.
252 tryflag CFLAGS_AUTO
-Wa,--noexecstack
255 # Some optimization levels add bloated alignment that hurt performance
257 tryflag CFLAGS_AUTO
-falign-functions=1
258 tryflag CFLAGS_AUTO
-falign-labels=1
259 tryflag CFLAGS_AUTO
-falign-loops=1
260 tryflag CFLAGS_AUTO
-falign-jumps=1
263 # On x86, make sure we don't have incompatible instruction set
264 # extensions enabled by default. This is bad for making static binaries.
265 # We cheat and use i486 rather than i386 because i386 really does not
266 # work anyway (issues with atomic ops).
268 if test "$ARCH" = "i386" ; then
269 fnmatch
'-march=*|*\ -march=*' "$CFLAGS" || tryldflag CFLAGS_AUTO
-march=i486
270 fnmatch
'-mtune=*|*\ -mtune=*' "$CFLAGS" || tryldflag CFLAGS_AUTO
-mtune=generic
274 # Even with -std=c99, gcc accepts some constructs which are constraint
275 # violations. We want to treat these as errors regardless of whether
276 # other purely stylistic warnings are enabled -- especially implicit
277 # function declarations, which are a dangerous programming error.
279 tryflag CFLAGS_AUTO
-Werror=implicit-function-declaration
280 tryflag CFLAGS_AUTO
-Werror=implicit-int
281 tryflag CFLAGS_AUTO
-Werror=pointer-sign
282 tryflag CFLAGS_AUTO
-Werror=pointer-arith
284 if test "x$warnings" = xyes
; then
285 tryflag CFLAGS_AUTO
-Wall
286 tryflag CFLAGS_AUTO
-Wcast-align
287 tryflag CFLAGS_AUTO
-Wno-parentheses
288 tryflag CFLAGS_AUTO
-Wno-uninitialized
289 tryflag CFLAGS_AUTO
-Wno-missing-braces
290 tryflag CFLAGS_AUTO
-Wno-unused-value
291 tryflag CFLAGS_AUTO
-Wno-unused-but-set-variable
292 tryflag CFLAGS_AUTO
-Wno-unknown-pragmas
295 # Some patched GCC builds have these defaults messed up...
296 tryflag CFLAGS_AUTO
-fno-stack-protector
297 tryldflag LDFLAGS_AUTO
-Wl,--hash-style=both
299 # Disable dynamic linking if ld is broken and can't do -Bsymbolic-functions
301 tryldflag LDFLAGS_DUMMY
-Wl,-Bsymbolic-functions ||
{
302 printf "warning: disabling dynamic linking support\n"
306 # Find compiler runtime library
307 test -z "$LIBCC" && tryldflag LIBCC
-lgcc && tryldflag LIBCC
-lgcc_eh
308 test -z "$LIBCC" && tryldflag LIBCC
-lcompiler_rt
309 test -z "$LIBCC" && try_libcc
=`$CC -print-file-name=libpcc.a 2>/dev/null` \
310 && tryldflag LIBCC
"$try_libcc"
311 printf "using compiler runtime libraries: %s\n" "$LIBCC"
314 printf "creating config.mak... "
316 exec 3>&1 1>config.mak
320 # This version of config.mak was generated by configure
321 # Any changes made here will be lost if configure is re-run
324 exec_prefix = $exec_prefix
327 includedir = $includedir
328 syslibdir = $syslibdir
330 CFLAGS= $CFLAGS_AUTO $CFLAGS
331 CFLAGS_C99FSE = $CFLAGS_C99FSE
333 LDFLAGS = $LDFLAGS_AUTO $LDFLAGS
334 CROSS_COMPILE = $CROSS_COMPILE
337 test "x$static" = xno
&& echo "STATIC_LIBS ="
338 test "x$shared" = xno
&& echo "SHARED_LIBS ="
339 test "x$wrapper" = xno
&& echo "ALL_TOOLS ="
340 test "x$wrapper" = xno
&& echo "TOOL_LIBS ="