fix configure build/host/target terminology usage
[musl] / 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-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 target=
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=*|--build=*) ;;
106 --host=*|--target=*) target=${arg#*=} ;;
107 -* ) echo "$0: unknown option $arg" ;;
108 CC=*) CC=${arg#*=} ;;
109 CFLAGS=*) CFLAGS=${arg#*=} ;;
110 CPPFLAGS=*) CPPFLAGS=${arg#*=} ;;
111 LDFLAGS=*) LDFLAGS=${arg#*=} ;;
112 *=*) ;;
113 *) target=$arg ;;
114 esac
115 done
116
117 setdir prefix /usr/local/musl
118 setdir exec_prefix '$(prefix)'
119 setdir bindir '$(exec_prefix)/bin'
120 setdir libdir '$(prefix)/lib'
121 setdir includedir '$(prefix)/include'
122 setdir syslibdir '/lib'
123
124 #
125 # Get a temp filename we can use
126 #
127 i=0
128 set -C
129 while : ; do i=$(($i+1))
130 tmpc="./conf$$-$PPID-$i.c"
131 2>/dev/null > "$tmpc" && break
132 test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc"
133 done
134 set +C
135 trap 'rm "$tmpc"' EXIT INT QUIT TERM HUP
136
137 #
138 # Find a C compiler to use
139 #
140 printf "checking for C compiler... "
141 trycc gcc
142 trycc c99
143 trycc cc
144 printf "%s\n" "$CC"
145 test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
146
147 #
148 # Only build musl-gcc wrapper if toolchain does not already target musl
149 #
150 if test -z "$wrapper" ; then
151 printf "checking whether compiler is gcc... "
152 if fnmatch '*gcc\ version*' "$("$CC" -v 2>&1)" ; then
153 echo yes
154 printf "checking whether to build musl-gcc wrapper... "
155 wrapper=yes
156 while read line ; do
157 case "$line" in */ld-musl-*) wrapper=no ;; esac
158 done <<EOF
159 $($CC -dumpspecs)
160 EOF
161 echo $wrapper
162 else
163 echo no
164 fi
165 fi
166
167
168
169 #
170 # Find the target architecture
171 #
172 printf "checking target system type... "
173 test -n "$target" || target=$("$CC" -dumpmachine 2>/dev/null) || target=unknown
174 printf "%s\n" "$target"
175
176 #
177 # Convert to just ARCH
178 #
179 case "$target" in
180 arm*) ARCH=arm ;;
181 i?86*) ARCH=i386 ;;
182 x86_64*) ARCH=x86_64 ;;
183 unknown) fail "$0: unable to detect target arch; try $0 --target=..." ;;
184 *) fail "$0: unknown or unsupported target \"$target\"" ;;
185 esac
186
187 #
188 # Try to get a conforming C99 freestanding environment
189 #
190 tryflag CFLAGS_C99FSE -std=c99
191 tryflag CFLAGS_C99FSE -nostdinc
192 tryflag CFLAGS_C99FSE -ffreestanding \
193 || tryflag CFLAGS_C99FSE -fno-builtin
194 tryflag CFLAGS_C99FSE -fexcess-precision=standard \
195 || tryflag CFLAGS_C99FSE -ffloat-store
196 tryflag CFLAGS_C99FSE -frounding-math
197
198 #
199 # Setup basic default CFLAGS: debug, optimization, and -pipe
200 #
201 if fnmatch '-O*|*\ -O*' "$CFLAGS_AUTO $CFLAGS" ; then :
202 else
203 tryflag CFLAGS_AUTO -Os || tryflag CFLAGS_AUTO -O2
204 fi
205 test "x$debug" = xyes && CFLAGS_AUTO="-g"
206 tryflag CFLAGS_AUTO -pipe
207
208 #
209 # If debugging is disabled, omit bloated DWARF2 unwind tables & frame ptr
210 #
211 if fnmatch '-g*|*\ -g*' "$CFLAGS_AUTO $CFLAGS" ; then :
212 else 
213 tryflag CFLAGS_AUTO -fno-unwind-tables
214 tryflag CFLAGS_AUTO -fno-asynchronous-unwind-tables
215 tryflag CFLAGS_AUTO -fomit-frame-pointer
216 fi
217
218 #
219 # Some optimization levels add bloated alignment that hurt performance
220 #
221 tryflag CFLAGS_AUTO -falign-functions=1
222 tryflag CFLAGS_AUTO -falign-labels=1
223 tryflag CFLAGS_AUTO -falign-loops=1
224 tryflag CFLAGS_AUTO -falign-jumps=1
225
226 #
227 # On x86, make sure we don't have incompatible instruction set
228 # extensions enabled by default. This is bad for making static binaries.
229 # We cheat and use i486 rather than i386 because i386 really does not
230 # work anyway (issues with atomic ops).
231 #
232 if test "$ARCH" = "i386" ; then
233 fnmatch '-march=*|*\ -march=*' "$CFLAGS" || tryflag CFLAGS_AUTO -march=i486
234 fnmatch '-mtune=*|*\ -mtune=*' "$CFLAGS" || tryflag CFLAGS_AUTO -mtune=generic
235 fi
236
237 if test "x$warnings" = xyes ; then
238 tryflag CFLAGS_AUTO -Wall
239 tryflag CFLAGS_AUTO -Wpointer-arith
240 tryflag CFLAGS_AUTO -Wcast-align
241 tryflag CFLAGS_AUTO -Wno-parentheses
242 tryflag CFLAGS_AUTO -Wno-uninitialized
243 tryflag CFLAGS_AUTO -Wno-missing-braces
244 tryflag CFLAGS_AUTO -Wno-unused-value
245 tryflag CFLAGS_AUTO -Wno-unused-but-set-variable
246 tryflag CFLAGS_AUTO -Wno-unknown-pragmas
247 fi
248
249
250 printf "creating config.mak... "
251
252 exec 3>&1 1>config.mak
253
254
255 cat << EOF
256 # This version of config.mak was generated by configure
257 # Any changes made here will be lost if configure is re-run
258 ARCH = $ARCH
259 prefix = $prefix
260 exec_prefix = $exec_prefix
261 bindir = $bindir
262 libdir = $libdir
263 includedir = $includedir
264 syslibdir = $syslibdir
265 CC = $CC
266 CFLAGS= $CFLAGS_AUTO $CFLAGS
267 CFLAGS_C99FSE = $CFLAGS_C99FSE
268 CPPFLAGS = $CPPFLAGS
269 LDFLAGS = $LDFLAGS
270 EOF
271 test "x$static" = xno && echo "STATIC_LIBS ="
272 test "x$shared" = xno && echo "SHARED_LIBS ="
273 test "x$wrapper" = xno && echo "ALL_TOOLS ="
274 test "x$wrapper" = xno && echo "TOOL_LIBS ="
275 exec 1>&3 3>&-
276
277 printf "done\n"