update release info for 0.9.0
[musl] / configure
1 #!/bin/sh
2
3 usage () {
4 cat <<EOF
5 Usage: $0 [OPTION]... [VAR=VALUE]... [BUILDTYPE]
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   --build=BUILD           same as --target
25
26 Optional features:
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]
32
33 Some influential environment variables:
34   CC                      C compiler command [detected]
35   CFLAGS                  C compiler flags [-Os -pipe ...]
36
37 Use these variables to override the choices made by configure.
38
39 EOF
40 exit 0
41 }
42
43 # Helper functions
44
45 echo () { printf "%s\n" "$*" ; }
46 fail () { echo "$*" ; exit 1 ; }
47 fnmatch () { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; }
48 cmdexists () { type "$1" >/dev/null 2>&1 ; }
49 trycc () { test -z "$CC" && cmdexists "$1" && CC=$1 ; }
50
51 setdir () {
52 if eval "test -z \"\${$1}\"" ; then eval "$1=\$2"
53 else eval "fnmatch '*/' \"\${$1}\"" && eval "$1=\${$1%/}" ; fi
54 }
55
56 tryflag () {
57 printf "checking whether compiler accepts %s... " "$2"
58 echo "typedef int x;" > "$tmpc"
59 if "$CC" "$2" -c -o /dev/null "$tmpc" 2>/dev/null ; then
60 printf "yes\n"
61 eval "$1=\"\${$1} \$2\""
62 eval "$1=\${$1# }"
63 return 0
64 else
65 printf "no\n"
66 return 1
67 fi
68 }
69
70
71
72 # Beginning of actual script
73
74 prefix=
75 exec_prefix=
76 bindir=
77 libdir=
78 includedir=
79 syslibdir=
80 build=
81 debug=no
82 warnings=
83 shared=yes
84 static=yes
85
86 for arg ; do
87 case "$arg" in
88 --help) usage ;;
89 --prefix=*) prefix=${arg#*=} ;;
90 --exec-prefix=*) exec_prefix=${arg#*=} ;;
91 --bindir=*) bindir=${arg#*=} ;;
92 --libdir=*) libdir=${arg#*=} ;;
93 --includedir=*) includedir=${arg#*=} ;;
94 --syslibdir=*) syslibdir=${arg#*=} ;;
95 --enable-shared|--enable-shared=yes) shared=yes ;;
96 --disable-shared|--enable-shared=no) shared=no ;;
97 --enable-static|--enable-static=yes) static=yes ;;
98 --disable-static|--enable-static=no) static=no ;;
99 --enable-debug|--enable-debug=yes) debug=yes ;;
100 --disable-debug|--enable-debug=no) debug=no ;;
101 --enable-warnings|--enable-warnings=yes) warnings=yes ;;
102 --disable-warnings|--enable-warnings=no) warnings=no ;;
103 --enable-gcc-wrapper|--enable-gcc-wrapper=yes) wrapper=yes ;;
104 --disable-gcc-wrapper|--enable-gcc-wrapper=no) wrapper=no ;;
105 --enable-*|--disable-*|--with-*|--without-*|--*dir=*|--host=*) ;;
106 --build=*|--target=*) build=${arg#*=} ;;
107 -* ) echo "$0: unknown option $arg" ;;
108 CC=*) CC=${arg#*=} ;;
109 CFLAGS=*) CFLAGS=${arg#*=} ;;
110 CPPFLAGS=*) CPPFLAGS=${arg#*=} ;;
111 LDFLAGS=*) LDFLAGS=${arg#*=} ;;
112 *) build=$arg ;;
113 esac
114 done
115
116 setdir prefix /usr/local/musl
117 setdir exec_prefix '$(prefix)'
118 setdir bindir '$(exec_prefix)/bin'
119 setdir libdir '$(prefix)/lib'
120 setdir includedir '$(prefix)/include'
121 setdir syslibdir '/lib'
122
123 #
124 # Get a temp filename we can use
125 #
126 i=0
127 set -C
128 while : ; do i=$(($i+1))
129 tmpc="./conf$$-$PPID-$i.c"
130 2>/dev/null > "$tmpc" && break
131 test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc"
132 done
133 set +C
134 trap 'rm "$tmpc"' EXIT INT QUIT TERM HUP
135
136 #
137 # Find a C compiler to use
138 #
139 printf "checking for C compiler... "
140 trycc gcc
141 trycc c99
142 trycc cc
143 printf "%s\n" "$CC"
144 test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
145
146 #
147 # Only build musl-gcc wrapper if toolchain does not already target musl
148 #
149 if test -z "$wrapper" ; then
150 printf "checking whether compiler is gcc... "
151 if fnmatch 'gcc*|GCC*' "$("$CC" --version 2>/dev/null)" ; then
152 echo yes
153 printf "checking whether to build musl-gcc wrapper... "
154 wrapper=yes
155 while read line ; do
156 case "$line" in */ld-musl-*) wrapper=no ;; esac
157 done <<EOF
158 $($CC -dumpspecs)
159 EOF
160 echo $wrapper
161 else
162 echo no
163 fi
164 fi
165
166
167
168 #
169 # Find the build architecture
170 #
171 printf "checking build system type... "
172 test -n "$build" || build=$("$CC" -dumpmachine 2>/dev/null) || build=unknown
173 printf "%s\n" "$build"
174
175 #
176 # Convert to just ARCH
177 #
178 case "$build" in
179 arm*) ARCH=arm ;;
180 i?86*) ARCH=i386 ;;
181 x86_64*) ARCH=x86_64 ;;
182 unknown) fail "$0: unable to detect built target; try $0 --build=..." ;;
183 *) fail "$0: unknown or unsupported build target \"$build\"" ;;
184 esac
185
186 #
187 # Try to get a conforming C99 freestanding environment
188 #
189 tryflag CFLAGS_C99FSE -std=c99
190 tryflag CFLAGS_C99FSE -nostdinc
191 tryflag CFLAGS_C99FSE -ffreestanding \
192 || tryflag CFLAGS_C99FSE -fno-builtin
193 tryflag CFLAGS_C99FSE -fexcess-precision=standard \
194 || tryflag CFLAGS_C99FSE -ffloat-store
195 tryflag CFLAGS_C99FSE -frounding-math
196
197 #
198 # Setup basic default CFLAGS: debug, optimization, and -pipe
199 #
200 if fnmatch '-O*|*\ -O*' "$CFLAGS_AUTO $CFLAGS" ; then :
201 else
202 tryflag CFLAGS_AUTO -Os || tryflag CFLAGS_AUTO -O2
203 fi
204 test "x$debug" = xyes && CFLAGS_AUTO="-g"
205 tryflag CFLAGS_AUTO -pipe
206
207 #
208 # If debugging is disabled, omit bloated DWARF2 unwind tables & frame ptr
209 #
210 if fnmatch '-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" ; then :
211 else 
212 tryflag CFLAGS_AUTO -fno-unwind-tables
213 tryflag CFLAGS_AUTO -fno-asynchronous-unwind-tables
214 tryflag CFLAGS_AUTO -fomit-frame-pointer
215 fi
216
217 #
218 # Some optimization levels add bloated alignment that hurt performance
219 #
220 tryflag CFLAGS_AUTO -falign-functions=1
221 tryflag CFLAGS_AUTO -falign-labels=1
222 tryflag CFLAGS_AUTO -falign-loops=1
223 tryflag CFLAGS_AUTO -falign-jumps=1
224
225 #
226 # On x86, make sure we don't have incompatible instruction set
227 # extensions enabled by default. This is bad for making static binaries.
228 # We cheat and use i486 rather than i386 because i386 really does not
229 # work anyway (issues with atomic ops).
230 #
231 if test "$ARCH" = "i386" ; then
232 fnmatch '-march=*|*\ -march=*' "$CFLAGS" || tryflag CFLAGS_AUTO -march=i486
233 fnmatch '-mtune=*|*\ -mtune=*' "$CFLAGS" || tryflag CFLAGS_AUTO -mtune=generic
234 fi
235
236 if test "x$warnings" = xyes ; then
237 tryflag CFLAGS_AUTO -Wall
238 tryflag CFLAGS_AUTO -Wpointer-arith
239 tryflag CFLAGS_AUTO -Wcast-align
240 tryflag CFLAGS_AUTO -Wno-parentheses
241 tryflag CFLAGS_AUTO -Wno-uninitialized
242 tryflag CFLAGS_AUTO -Wno-missing-braces
243 tryflag CFLAGS_AUTO -Wno-unused-value
244 tryflag CFLAGS_AUTO -Wno-unused-but-set-variable
245 tryflag CFLAGS_AUTO -Wno-unknown-pragmas
246 fi
247
248
249 printf "creating config.mak... "
250
251 exec 3>&1 1>config.mak
252
253
254 cat << EOF
255 # This version of config.mak was generated by configure
256 # Any changes made here will be lost if configure is re-run
257 ARCH = $ARCH
258 prefix = $prefix
259 exec_prefix = $exec_prefix
260 bindir = $bindir
261 libdir = $libdir
262 includedir = $includedir
263 syslibdir = $syslibdir
264 CC = $CC
265 CFLAGS= $CFLAGS_AUTO $CFLAGS
266 CFLAGS_C99FSE = $CFLAGS_C99FSE
267 CPPFLAGS = $CPPFLAGS
268 LDFLAGS = $LDFLAGS
269 EOF
270 test "x$static" = xno && echo "STATIC_LIBS ="
271 test "x$shared" = xno && echo "SHARED_LIBS ="
272 test "x$wrapper" = xno && echo "ALL_TOOLS ="
273 test "x$wrapper" = xno && echo "TOOL_LIBS ="
274 exec 1>&3 3>&-
275
276 printf "done\n"