OSDN Git Service

fix endian subarchs for sh arch
[android-x86/external-musl-libc.git] / configure
1 #!/bin/sh
2
3 usage () {
4 cat <<EOF
5 Usage: $0 [OPTION]... [VAR=VALUE]... [TARGET]
6
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.
9
10 Defaults for the options are specified in brackets.
11
12 Installation directories:
13   --prefix=PREFIX         main installation prefix [/usr/local/musl]
14   --exec-prefix=EPREFIX   installation prefix for executable files [PREFIX]
15
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]
21
22 System types:
23   --target=TARGET         configure to run on target TARGET [detected]
24   --host=HOST             same as --target
25
26 Optional features:
27   --enable-optimize=...   optimize listed components for speed over size [auto]
28   --enable-debug          build with debugging information [disabled]
29   --enable-warnings       build with recommended warnings flags [disabled]
30   --enable-gcc-wrapper    build musl-gcc toolchain wrapper [auto]
31   --disable-shared        inhibit building shared library [enabled]
32   --disable-static        inhibit building static library [enabled]
33
34 Some influential environment variables:
35   CC                      C compiler command [detected]
36   CFLAGS                  C compiler flags [-Os -pipe ...]
37   CROSS_COMPILE           prefix for cross compiler and tools [none]
38   LIBCC                   compiler runtime library [detected]
39
40 Use these variables to override the choices made by configure.
41
42 EOF
43 exit 0
44 }
45
46 # Helper functions
47
48 quote () {
49 tr '\n' ' ' <<EOF | grep '^[-[:alnum:]_=,./:]* $' >/dev/null 2>&1 && { echo "$1" ; return 0 ; }
50 $1
51 EOF
52 printf %s\\n "$1" | sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/" -e "s#^'\([-[:alnum:]_,./:]*\)=\(.*\)\$#\1='\2#"
53 }
54 echo () { printf "%s\n" "$*" ; }
55 fail () { echo "$*" ; exit 1 ; }
56 fnmatch () { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; }
57 cmdexists () { type "$1" >/dev/null 2>&1 ; }
58 trycc () { test -z "$CC" && cmdexists "$1" && CC=$1 ; }
59
60 stripdir () {
61 while eval "fnmatch '*/' \"\${$1}\"" ; do eval "$1=\${$1%/}" ; done
62 }
63
64 trycppif () {
65 printf "checking preprocessor condition %s... " "$1"
66 echo "typedef int x;" > "$tmpc"
67 echo "#if $1" >> "$tmpc"
68 echo "#error yes" >> "$tmpc"
69 echo "#endif" >> "$tmpc"
70 if $CC $2 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
71 printf "false\n"
72 return 1
73 else
74 printf "true\n"
75 return 0
76 fi
77 }
78
79 tryflag () {
80 printf "checking whether compiler accepts %s... " "$2"
81 echo "typedef int x;" > "$tmpc"
82 if $CC "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
83 printf "yes\n"
84 eval "$1=\"\${$1} \$2\""
85 eval "$1=\${$1# }"
86 return 0
87 else
88 printf "no\n"
89 return 1
90 fi
91 }
92
93 tryldflag () {
94 printf "checking whether linker accepts %s... " "$2"
95 echo "typedef int x;" > "$tmpc"
96 if $CC -nostdlib -shared "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
97 printf "yes\n"
98 eval "$1=\"\${$1} \$2\""
99 eval "$1=\${$1# }"
100 return 0
101 else
102 printf "no\n"
103 return 1
104 fi
105 }
106
107
108
109 # Beginning of actual script
110
111 CFLAGS_C99FSE=
112 CFLAGS_AUTO=
113 CFLAGS_MEMOPS=
114 LDFLAGS_AUTO=
115 OPTIMIZE_GLOBS=
116 prefix=/usr/local/musl
117 exec_prefix='$(prefix)'
118 bindir='$(exec_prefix)/bin'
119 libdir='$(prefix)/lib'
120 includedir='$(prefix)/include'
121 syslibdir='/lib'
122 target=
123 optimize=auto
124 debug=no
125 warnings=no
126 shared=yes
127 static=yes
128
129 for arg ; do
130 case "$arg" in
131 --help) usage ;;
132 --prefix=*) prefix=${arg#*=} ;;
133 --exec-prefix=*) exec_prefix=${arg#*=} ;;
134 --bindir=*) bindir=${arg#*=} ;;
135 --libdir=*) libdir=${arg#*=} ;;
136 --includedir=*) includedir=${arg#*=} ;;
137 --syslibdir=*) syslibdir=${arg#*=} ;;
138 --enable-shared|--enable-shared=yes) shared=yes ;;
139 --disable-shared|--enable-shared=no) shared=no ;;
140 --enable-static|--enable-static=yes) static=yes ;;
141 --disable-static|--enable-static=no) static=no ;;
142 --enable-optimize) optimize=yes ;;
143 --enable-optimize=*) optimize=${arg#*=} ;;
144 --disable-optimize) optimize=no ;;
145 --enable-debug|--enable-debug=yes) debug=yes ;;
146 --disable-debug|--enable-debug=no) debug=no ;;
147 --enable-warnings|--enable-warnings=yes) warnings=yes ;;
148 --disable-warnings|--enable-warnings=no) warnings=no ;;
149 --enable-gcc-wrapper|--enable-gcc-wrapper=yes) wrapper=yes ;;
150 --disable-gcc-wrapper|--enable-gcc-wrapper=no) wrapper=no ;;
151 --enable-*|--disable-*|--with-*|--without-*|--*dir=*|--build=*) ;;
152 --host=*|--target=*) target=${arg#*=} ;;
153 -* ) echo "$0: unknown option $arg" ;;
154 CC=*) CC=${arg#*=} ;;
155 CFLAGS=*) CFLAGS=${arg#*=} ;;
156 CPPFLAGS=*) CPPFLAGS=${arg#*=} ;;
157 LDFLAGS=*) LDFLAGS=${arg#*=} ;;
158 CROSS_COMPILE=*) CROSS_COMPILE=${arg#*=} ;;
159 LIBCC=*) LIBCC=${arg#*=} ;;
160 *=*) ;;
161 *) target=$arg ;;
162 esac
163 done
164
165 for i in prefix exec_prefix bindir libdir includedir syslibdir ; do
166 stripdir $i
167 done
168
169 #
170 # Get a temp filename we can use
171 #
172 i=0
173 set -C
174 while : ; do i=$(($i+1))
175 tmpc="./conf$$-$PPID-$i.c"
176 2>|/dev/null > "$tmpc" && break
177 test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc"
178 done
179 set +C
180 trap 'rm "$tmpc"' EXIT INT QUIT TERM HUP
181
182 #
183 # Find a C compiler to use
184 #
185 printf "checking for C compiler... "
186 trycc ${CROSS_COMPILE}gcc
187 trycc ${CROSS_COMPILE}c99
188 trycc ${CROSS_COMPILE}cc
189 printf "%s\n" "$CC"
190 test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
191
192 #
193 # Only build musl-gcc wrapper if toolchain does not already target musl
194 #
195 if test -z "$wrapper" ; then
196 printf "checking whether compiler is gcc... "
197 if fnmatch '*gcc\ version*' "$($CC -v 2>&1)" ; then
198 echo yes
199 printf "checking whether to build musl-gcc wrapper... "
200 wrapper=yes
201 while read line ; do
202 case "$line" in */ld-musl-*) wrapper=no ;; esac
203 done <<EOF
204 $($CC -dumpspecs)
205 EOF
206 echo $wrapper
207 else
208 echo no
209 fi
210 fi
211
212
213
214 #
215 # Find the target architecture
216 #
217 printf "checking target system type... "
218 test -n "$target" || target=$($CC -dumpmachine 2>/dev/null) || target=unknown
219 printf "%s\n" "$target"
220
221 #
222 # Convert to just ARCH
223 #
224 case "$target" in
225 arm*) ARCH=arm ;;
226 i?86*) ARCH=i386 ;;
227 x86_64-x32*|x32*) ARCH=x32 ;;
228 x86_64*) ARCH=x86_64 ;;
229 mips-*|mipsel-*) ARCH=mips ;;
230 microblaze-*) ARCH=microblaze ;;
231 powerpc-*) ARCH=powerpc ;;
232 sh-*) ARCH=sh ;;
233 unknown) fail "$0: unable to detect target arch; try $0 --target=..." ;;
234 *) fail "$0: unknown or unsupported target \"$target\"" ;;
235 esac
236
237 #
238 # Try to get a conforming C99 freestanding environment
239 #
240 tryflag CFLAGS_C99FSE -std=c99
241 tryflag CFLAGS_C99FSE -nostdinc
242 tryflag CFLAGS_C99FSE -ffreestanding \
243 || tryflag CFLAGS_C99FSE -fno-builtin
244 tryflag CFLAGS_C99FSE -fexcess-precision=standard \
245 || { test "$ARCH" = i386 && tryflag CFLAGS_C99FSE -ffloat-store ; }
246 tryflag CFLAGS_C99FSE -frounding-math
247
248 #
249 # We may use the may_alias attribute if __GNUC__ is defined, so
250 # if the compiler defines __GNUC__ but does not provide it,
251 # it must be defined away as part of the CFLAGS.
252 #
253 printf "checking whether compiler needs attribute((may_alias)) suppression... "
254 cat > "$tmpc" <<EOF
255 typedef int
256 #ifdef __GNUC__
257 __attribute__((__may_alias__))
258 #endif
259 x;
260 EOF
261 if $CC $CFLAGS_C99FSE -I./arch/$ARCH -I./include $CPPFLAGS $CFLAGS \
262   -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
263 printf "no\n"
264 else
265 printf "yes\n"
266 CFLAGS_C99FSE="$CFLAGS_C99FSE -D__may_alias__="
267 fi
268
269 #
270 # Check for options that may be needed to prevent the compiler from
271 # generating self-referential versions of memcpy,, memmove, memcmp,
272 # and memset. Really, we should add a check to determine if this
273 # option is sufficient, and if not, add a macro to cripple these
274 # functions with volatile...
275 #
276 tryflag CFLAGS_MEMOPS -fno-tree-loop-distribute-patterns
277
278 #
279 # If debugging is explicitly enabled, don't auto-enable optimizations
280 #
281 if test "$debug" = yes ; then
282 CFLAGS_AUTO=-g
283 test "$optimize" = auto && optimize=no
284 fi
285
286 #
287 # Possibly add a -O option to CFLAGS and select modules to optimize with
288 # -O3 based on the status of --enable-optimize and provided CFLAGS.
289 #
290 printf "checking for optimization settings... "
291 case "x$optimize" in
292 xauto)
293 if fnmatch '-O*|*\ -O*' "$CFLAGS_AUTO $CFLAGS" ; then
294 printf "using provided CFLAGS\n" ;optimize=no
295 else
296 printf "using defaults\n" ; optimize=yes
297 fi
298 ;;
299 xsize|xnone) printf "minimize size\n" ; optimize=size ;;
300 xno|x) printf "disabled\n" ; optimize=no ;;
301 *) printf "custom\n" ;;
302 esac
303
304 test "$optimize" = no || tryflag CFLAGS_AUTO -Os || tryflag CFLAGS_AUTO -O2
305 test "$optimize" = yes && optimize="internal,malloc,string"
306
307 if fnmatch 'no|size' "$optimize" ; then :
308 else
309 printf "components to be optimized for speed:"
310 while test "$optimize" ; do
311 case "$optimize" in
312 *,*) this=${optimize%%,*} optimize=${optimize#*,} ;;
313 *) this=$optimize optimize=
314 esac
315 printf " $this"
316 case "$this" in
317 */*.c) ;;
318 */*) this=$this*.c ;;
319 *) this=$this/*.c ;;
320 esac
321 OPTIMIZE_GLOBS="$OPTIMIZE_GLOBS $this"
322 done
323 OPTIMIZE_GLOBS=${OPTIMIZE_GLOBS# }
324 printf "\n"
325 fi
326
327 # Always try -pipe
328 tryflag CFLAGS_AUTO -pipe
329
330 #
331 # If debugging is disabled, omit frame pointer. Modern GCC does this
332 # anyway on most archs even when debugging is enabled since the frame
333 # pointer is no longer needed for debugging.
334 #
335 if fnmatch '-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" ; then :
336 else 
337 tryflag CFLAGS_AUTO -fomit-frame-pointer
338 fi
339
340 #
341 # Modern GCC wants to put DWARF tables (used for debugging and
342 # unwinding) in the loaded part of the program where they are
343 # unstrippable. These options force them back to debug sections (and
344 # cause them not to get generated at all if debugging is off).
345 #
346 tryflag CFLAGS_AUTO -fno-unwind-tables
347 tryflag CFLAGS_AUTO -fno-asynchronous-unwind-tables
348
349 #
350 # The GNU toolchain defaults to assuming unmarked files need an
351 # executable stack, potentially exposing vulnerabilities in programs
352 # linked with such object files. Fix this.
353 #
354 tryflag CFLAGS_AUTO -Wa,--noexecstack
355
356 #
357 # On x86, make sure we don't have incompatible instruction set
358 # extensions enabled by default. This is bad for making static binaries.
359 # We cheat and use i486 rather than i386 because i386 really does not
360 # work anyway (issues with atomic ops).
361 #
362 if test "$ARCH" = "i386" ; then
363 fnmatch '-march=*|*\ -march=*' "$CFLAGS" || tryldflag CFLAGS_AUTO -march=i486
364 fnmatch '-mtune=*|*\ -mtune=*' "$CFLAGS" || tryldflag CFLAGS_AUTO -mtune=generic
365 fi
366
367 #
368 # Even with -std=c99, gcc accepts some constructs which are constraint
369 # violations. We want to treat these as errors regardless of whether
370 # other purely stylistic warnings are enabled -- especially implicit
371 # function declarations, which are a dangerous programming error.
372 #
373 tryflag CFLAGS_AUTO -Werror=implicit-function-declaration
374 tryflag CFLAGS_AUTO -Werror=implicit-int
375 tryflag CFLAGS_AUTO -Werror=pointer-sign
376 tryflag CFLAGS_AUTO -Werror=pointer-arith
377
378 if test "x$warnings" = xyes ; then
379 tryflag CFLAGS_AUTO -Wall
380 tryflag CFLAGS_AUTO -Wno-parentheses
381 tryflag CFLAGS_AUTO -Wno-uninitialized
382 tryflag CFLAGS_AUTO -Wno-missing-braces
383 tryflag CFLAGS_AUTO -Wno-unused-value
384 tryflag CFLAGS_AUTO -Wno-unused-but-set-variable
385 tryflag CFLAGS_AUTO -Wno-unknown-pragmas
386 tryflag CFLAGS_AUTO -Wno-pointer-to-int-cast
387 fi
388
389 # Some patched GCC builds have these defaults messed up...
390 tryflag CFLAGS_AUTO -fno-stack-protector
391 tryldflag LDFLAGS_AUTO -Wl,--hash-style=both
392
393 # Disable dynamic linking if ld is broken and can't do -Bsymbolic-functions
394 LDFLAGS_DUMMY=
395 tryldflag LDFLAGS_DUMMY -Wl,-Bsymbolic-functions || {
396 printf "warning: disabling dynamic linking support\n"
397 shared=no
398 }
399
400 # Find compiler runtime library
401 test -z "$LIBCC" && tryldflag LIBCC -lgcc && tryldflag LIBCC -lgcc_eh
402 test -z "$LIBCC" && tryldflag LIBCC -lcompiler_rt
403 test -z "$LIBCC" && try_libcc=`$CC -print-file-name=libpcc.a 2>/dev/null` \
404                  && tryldflag LIBCC "$try_libcc"
405 printf "using compiler runtime libraries: %s\n" "$LIBCC"
406
407 # Figure out arch variants for archs with variants
408 SUBARCH=
409 t="$CFLAGS_C99FSE $CPPFLAGS $CFLAGS_AUTO $CFLAGS"
410
411 if test "$ARCH" = "arm" ; then
412 trycppif __ARMEB__ "$t" && SUBARCH=${SUBARCH}eb
413 trycppif __ARM_PCS_VFP "$t" && SUBARCH=${SUBARCH}hf
414 fi
415
416 if test "$ARCH" = "mips" ; then
417 trycppif "_MIPSEL || __MIPSEL || __MIPSEL__" "$t" && SUBARCH=${SUBARCH}el
418 trycppif __mips_soft_float "$t" && SUBARCH=${SUBARCH}-sf
419 fi
420
421 test "$ARCH" = "microblaze" && trycppif __MICROBLAZEEL__ "$t" \
422 && SUBARCH=${SUBARCH}el
423
424 test "$ARCH" = "sh" && trycppif __BIG_ENDIAN__ "$t" \
425 && SUBARCH=${SUBARCH}eb
426
427 test "$SUBARCH" \
428 && printf "configured for %s variant: %s\n" "$ARCH" "$ARCH$SUBARCH"
429
430 case "$ARCH$SUBARCH" in
431 arm) ASMSUBARCH=el ;;
432 *) ASMSUBARCH=$SUBARCH ;;
433 esac
434
435 #
436 # Some archs (powerpc) have different possible long double formats
437 # that the compiler can be configured for. The logic for whether this
438 # is supported is in bits/float.h; in general, it is not. We need to
439 # check for mismatches here or code in printf, strotd, and scanf will
440 # be dangerously incorrect because it depends on (1) the macros being
441 # correct, and (2) IEEE semantics.
442 #
443 printf "checking whether compiler's long double definition matches float.h... "
444 echo '#include <float.h>' > "$tmpc"
445 echo '#if LDBL_MANT_DIG == 53' >> "$tmpc"
446 echo 'typedef char ldcheck[9-(int)sizeof(long double)];' >> "$tmpc"
447 echo '#endif' >> "$tmpc"
448 if $CC $CFLAGS_C99FSE -I./arch/$ARCH -I./include $CPPFLAGS $CFLAGS \
449   -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
450 printf "yes\n"
451 else
452 printf "no\n"
453 fail "$0: error: unsupported long double type"
454 fi
455
456 printf "creating config.mak... "
457
458 cmdline=$(quote "$0")
459 for i ; do cmdline="$cmdline $(quote "$i")" ; done
460
461 exec 3>&1 1>config.mak
462
463
464 cat << EOF
465 # This version of config.mak was generated by:
466 # $cmdline
467 # Any changes made here will be lost if configure is re-run
468 ARCH = $ARCH
469 SUBARCH = $SUBARCH
470 ASMSUBARCH = $ASMSUBARCH
471 prefix = $prefix
472 exec_prefix = $exec_prefix
473 bindir = $bindir
474 libdir = $libdir
475 includedir = $includedir
476 syslibdir = $syslibdir
477 CC = $CC
478 CFLAGS= $CFLAGS_AUTO $CFLAGS
479 CFLAGS_C99FSE = $CFLAGS_C99FSE
480 CFLAGS_MEMOPS = $CFLAGS_MEMOPS
481 CPPFLAGS = $CPPFLAGS
482 LDFLAGS = $LDFLAGS_AUTO $LDFLAGS
483 CROSS_COMPILE = $CROSS_COMPILE
484 LIBCC = $LIBCC
485 OPTIMIZE_GLOBS = $OPTIMIZE_GLOBS
486 EOF
487 test "x$static" = xno && echo "STATIC_LIBS ="
488 test "x$shared" = xno && echo "SHARED_LIBS ="
489 test "x$wrapper" = xno && echo "ALL_TOOLS ="
490 test "x$wrapper" = xno && echo "TOOL_LIBS ="
491 exec 1>&3 3>&-
492
493 printf "done\n"