lib/libtcc1.c: cleanup
[tinycc.git] / configure
blob491fad7242c5c804e3cecb2808eb8baeef613ddd
1 #!/bin/sh
3 # tcc configure script (c) 2003 Fabrice Bellard
5 # set temporary file name
6 # if test ! -z "$TMPDIR" ; then
7 # TMPDIR1="${TMPDIR}"
8 # elif test ! -z "$TEMPDIR" ; then
9 # TMPDIR1="${TEMPDIR}"
10 # else
11 # TMPDIR1="/tmp"
12 # fi
14 # bashism: TMPN="${TMPDIR1}/tcc-conf-${RANDOM}-$$-${RANDOM}.c"
16 TMPN="./conftest-$$"
17 TMPH=$TMPN.h
19 # default parameters
20 build_cross="no"
21 use_libgcc="no"
22 prefix=""
23 execprefix=""
24 bindir=""
25 libdir=""
26 tccdir=""
27 includedir=""
28 mandir=""
29 infodir=""
30 sysroot=""
31 cross_prefix=""
32 cc="gcc"
33 ar="ar"
34 strip="strip"
35 cygwin="no"
36 gprof="no"
37 bigendian="no"
38 mingw32="no"
39 LIBSUF=".a"
40 EXESUF=""
41 tcc_sysincludepaths=""
42 tcc_libpaths=""
43 tcc_crtprefix=""
44 tcc_elfinterp=""
45 triplet=
46 tcc_lddir=
47 confvars=
48 cpu=
50 # OS specific
51 targetos=`uname`
52 case $targetos in
53 MINGW*) mingw32=yes;;
54 MSYS*) mingw32=yes;;
55 DragonFly) noldl=yes;;
56 OpenBSD) noldl=yes;;
57 FreeBSD) noldl=yes;;
58 NetBSD) noldl=yes;;
59 *) ;;
60 esac
62 # find source path
63 # XXX: we assume an absolute path is given when launching configure,
64 # except in './configure' case.
65 source_path=${0%configure}
66 source_path=${source_path%/}
67 source_path_used="yes"
68 if test -z "$source_path" -o "$source_path" = "." ; then
69 source_path=`pwd`
70 source_path_used="no"
73 for opt do
74 eval opt=\"$opt\"
75 case "$opt" in
76 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
78 --exec-prefix=*) execprefix=`echo $opt | cut -d '=' -f 2`
80 --tccdir=*) tccdir=`echo $opt | cut -d '=' -f 2`
82 --bindir=*) bindir=`echo $opt | cut -d '=' -f 2`
84 --libdir=*) libdir=`echo $opt | cut -d '=' -f 2`
86 --includedir=*) includedir=`echo $opt | cut -d '=' -f 2`
88 --sharedir=*) sharedir=`echo $opt | cut -d '=' -f 2`
90 --mandir=*) mandir=`echo $opt | cut -d '=' -f 2`
92 --infodir=*) infodir=`echo $opt | cut -d '=' -f 2`
94 --docdir=*) docdir=`echo $opt | cut -d '=' -f 2`
96 --sysroot=*) sysroot=`echo $opt | cut -d '=' -f 2`
98 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
100 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
102 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
104 --ar=*) ar=`echo $opt | cut -d '=' -f 2`
106 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
108 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
110 --extra-libs=*) extralibs="${opt#--extra-libs=}"
112 --sysincludepaths=*) tcc_sysincludepaths=`echo $opt | cut -d '=' -f 2`
114 --libpaths=*) tcc_libpaths=`echo $opt | cut -d '=' -f 2`
116 --crtprefix=*) tcc_crtprefix=`echo $opt | cut -d '=' -f 2`
118 --elfinterp=*) tcc_elfinterp=`echo $opt | cut -d '=' -f 2`
120 --triplet=*) triplet=`echo $opt | cut -d '=' -f 2`
122 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
124 --enable-gprof) gprof="yes"
126 --enable-mingw32) mingw32="yes" ; cross_prefix="i686-pc-mingw32-" ; cpu=x86
128 --enable-cygwin) mingw32="yes" ; cygwin="yes" ; cross_prefix="mingw32-" ; cpu=x86
130 --enable-cross) build_cross="yes"
132 --disable-static) disable_static="yes"
134 --disable-rpath) disable_rpath="yes"
136 --strip-binaries) strip_binaries="yes"
138 --with-libgcc) use_libgcc="yes"
140 --with-selinux) have_selinux="yes"
142 --help|-h) show_help="yes"
144 *) echo "configure: WARNING: unrecognized option $opt"
146 esac
147 done
149 if test -z "$cpu" ; then
150 if test -n "$ARCH" ; then
151 cpu="$ARCH"
152 else
153 cpu=`uname -m`
157 case "$cpu" in
158 x86|i386|i486|i586|i686|i86pc|BePC|i686-AT386)
159 cpu="x86"
161 x86_64|amd64)
162 cpu="x86-64"
164 arm*)
165 case "$cpu" in
166 arm|armv4l)
167 cpuver=4
169 armv5tel|armv5tejl)
170 cpuver=5
172 armv6j|armv6l)
173 cpuver=6
175 armv7a|armv7l)
176 cpuver=7
178 esac
179 cpu="armv4l"
181 aarch64)
182 cpu="aarch64"
184 alpha)
185 cpu="alpha"
187 "Power Macintosh"|ppc|ppc64)
188 cpu="powerpc"
190 mips)
191 cpu="mips"
193 s390)
194 cpu="s390"
197 cpu="unknown"
199 esac
201 # Checking for CFLAGS
202 if test -z "$CFLAGS"; then
203 CFLAGS="-Wall -g -O2"
206 if test "$mingw32" = "yes" ; then
207 if test x"$tccdir" = x""; then
208 tccdir="tcc"
210 if test -z "$prefix" ; then
211 prefix="C:/Program Files/${tccdir}"
213 if test -z "$sharedir" ; then
214 sharedir="${prefix}"
216 execprefix="$prefix"
217 bindir="${prefix}"
218 tccdir="${prefix}"
219 libdir="${prefix}/lib"
220 docdir="${sharedir}/doc"
221 mandir="${sharedir}/man"
222 infodir="${sharedir}/info"
223 LIBSUF=".lib"
224 EXESUF=".exe"
225 else
226 if test -z "$prefix" ; then
227 prefix="/usr/local"
229 if test -z "$sharedir" ; then
230 sharedir="${prefix}/share"
232 if test x"$execprefix" = x""; then
233 execprefix="${prefix}"
235 if test x"$libdir" = x""; then
236 libdir="${execprefix}/lib"
238 if test x"$bindir" = x""; then
239 bindir="${execprefix}/bin"
241 if test x"$docdir" = x""; then
242 docdir="${sharedir}/doc"
244 if test x"$mandir" = x""; then
245 mandir="${sharedir}/man"
247 if test x"$infodir" = x""; then
248 infodir="${sharedir}/info"
250 if test x"$tccdir" = x""; then
251 tccdir="${libdir}/tcc"
253 fi # mingw32
255 if test x"$includedir" = x""; then
256 includedir="${prefix}/include"
259 if test x"$show_help" = "xyes" ; then
260 cat << EOF
261 Usage: configure [options]
262 Options: [defaults in brackets after descriptions]
264 Standard options:
265 --help print this message
266 --prefix=PREFIX install in PREFIX [$prefix]
267 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
268 [same as prefix]
269 --bindir=DIR user executables in DIR [EPREFIX/bin]
270 --libdir=DIR object code libraries in DIR [EPREFIX/lib]
271 --tccdir=DIR installation directory [EPREFIX/lib/tcc]
272 --includedir=DIR C header files in DIR [PREFIX/include]
273 --sharedir=DIR documentation root DIR [PREFIX/share]
274 --docdir=DIR documentation in DIR [SHAREDIR/doc/tcc]
275 --mandir=DIR man documentation in DIR [SHAREDIR/man]
276 --infodir=DIR info documentation in DIR [SHAREDIR/info]
278 Advanced options (experts only):
279 --source-path=PATH path of source code [$source_path]
280 --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]
281 --sysroot=PREFIX prepend PREFIX to library/include paths []
282 --cc=CC use C compiler CC [$cc]
283 --ar=AR create archives using AR [$ar]
284 --extra-cflags= specify compiler flags [$CFLAGS]
285 --extra-ldflags= specify linker options []
286 --cpu=CPU CPU [$cpu]
287 --strip-binaries strip symbol tables from resulting binaries
288 --disable-static make libtcc.so instead of libtcc.a
289 --disable-rpath disable use of -rpath with the above
290 --with-libgcc use libgcc_s.so.1 instead of libtcc1.a in dynamic link
291 --enable-mingw32 build windows version on linux with mingw32
292 --enable-cygwin build windows version on windows with cygwin
293 --enable-cross build cross compilers
294 --with-selinux use mmap for exec mem [needs writable /tmp]
295 --sysincludepaths=... specify system include paths, colon separated
296 --libpaths=... specify system library paths, colon separated
297 --crtprefix=... specify locations of crt?.o, colon separated
298 --elfinterp=... specify elf interpreter
299 --triplet=... specify system library/include directory triplet
301 #echo "NOTE: The object files are build at the place where configure is launched"
302 exit 1
305 cc="${cross_prefix}${cc}"
306 ar="${cross_prefix}${ar}"
307 strip="${cross_prefix}${strip}"
309 CONFTEST=./conftest$EXESUF
311 if test -z "$cross_prefix" ; then
312 if ! $cc -o $CONFTEST $source_path/conftest.c 2>/dev/null ; then
313 echo "configure: error: '$cc' failed to compile conftest.c."
314 else
315 bigendian="$($CONFTEST bigendian)"
316 gcc_major="$($CONFTEST version)"
317 gcc_minor="$($CONFTEST minor)"
318 if test "$mingw32" = "no" ; then
320 if test -z "$triplet"; then
321 tt="$($CONFTEST triplet)"
322 if test -n "$tt" -a -f "/usr/lib/$tt/crti.o" ; then
323 triplet="$tt"
327 if test -z "$triplet"; then
328 if test ! -f "/usr/lib/crti.o" -a -f "/usr/lib64/crti.o" ; then
329 tcc_lddir="lib64"
333 if test "$cpu" = "armv4l" ; then
334 if test "${triplet%eabihf}" != "$triplet" ; then
335 confvars="$confvars arm_eabihf"
336 elif test "${triplet%eabi}" != "$triplet" ; then
337 confvars="$confvars arm_eabi"
339 if grep -s -q "^Features.* \(vfp\|iwmmxt\) " /proc/cpuinfo ; then
340 confvars="$confvars arm_vfp"
344 if test -f "/lib/ld-uClibc.so.0" ; then
345 confvars="$confvars uClibc"
350 else
351 # if cross compiling, cannot launch a program, so make a static guess
352 case $cpu in
353 powerpc|mips|s390) bigendian=yes;;
354 esac
357 # a final configuration tuning
358 $cc -v --help > cc_help.txt 2>&1
359 W_OPTIONS="declaration-after-statement"
360 for i in $W_OPTIONS; do
361 O_PRESENT="$(grep -- -W$i cc_help.txt)"
362 if test -n "$O_PRESENT"; then CFLAGS="$CFLAGS -W$i"; fi
363 done
364 W_OPTIONS="deprecated-declarations strict-aliasing pointer-sign sign-compare unused-result uninitialized"
365 for i in $W_OPTIONS; do
366 O_PRESENT="$(grep -- -W$i cc_help.txt)"
367 if test -n "$O_PRESENT"; then CFLAGS="$CFLAGS -Wno-$i"; fi
368 done
369 F_OPTIONS="strict-aliasing"
370 for i in $F_OPTIONS; do
371 O_PRESENT="$(grep -- -f$i cc_help.txt)"
372 if test -n "$O_PRESENT"; then CFLAGS="$CFLAGS -fno-$i"; fi
373 done
374 rm -f cc_help.txt
376 fcho() { if test -n "$2"; then echo "$1$2"; else echo "$1-"; fi }
378 echo "Binary directory $bindir"
379 echo "TinyCC directory $tccdir"
380 echo "Library directory $libdir"
381 echo "Include directory $includedir"
382 echo "Manual directory $mandir"
383 echo "Info directory $infodir"
384 echo "Doc directory $docdir"
385 fcho "Target root prefix " "$sysroot"
386 echo "Source path $source_path"
387 echo "C compiler $cc"
388 echo "Target OS $targetos"
389 echo "CPU $cpu"
390 echo "Big Endian $bigendian"
391 echo "Profiling $gprof"
392 echo "Cross compilers $build_cross"
393 echo "Use libgcc $use_libgcc"
394 fcho "Triplet " "$triplet"
396 echo "Creating config.mak and config.h"
398 cat >config.mak <<EOF
399 # Automatically generated by configure - do not modify
400 prefix=$prefix
401 bindir=\$(DESTDIR)$bindir
402 tccdir=\$(DESTDIR)$tccdir
403 libdir=\$(DESTDIR)$libdir
404 ln_libdir=$libdir
405 includedir=\$(DESTDIR)$includedir
406 mandir=\$(DESTDIR)$mandir
407 infodir=\$(DESTDIR)$infodir
408 docdir=\$(DESTDIR)$docdir
409 CC=$cc
410 GCC_MAJOR=$gcc_major
411 GCC_MINOR=$gcc_minor
412 AR=$ar
413 STRIP=$strip -s -R .comment -R .note
414 CFLAGS=$CFLAGS
415 LDFLAGS=$LDFLAGS
416 LIBSUF=$LIBSUF
417 EXESUF=$EXESUF
420 print_inc() {
421 if test -n "$2"; then
422 echo "#ifndef $1" >> $TMPH
423 echo "# define $1 \"$2\"" >> $TMPH
424 echo "#endif" >> $TMPH
427 print_mak() {
428 if test -n "$2"; then
429 echo "NATIVE_DEFINES+=-D$1=\"\\\"$2\\\"\"" >> config.mak
433 echo "/* Automatically generated by configure - do not modify */" > $TMPH
435 print_inc CONFIG_SYSROOT "$sysroot"
436 print_inc CONFIG_TCCDIR "$tccdir"
437 print_mak CONFIG_TCC_SYSINCLUDEPATHS "$tcc_sysincludepaths"
438 print_mak CONFIG_TCC_LIBPATHS "$tcc_libpaths"
439 print_mak CONFIG_TCC_CRTPREFIX "$tcc_crtprefix"
440 print_mak CONFIG_TCC_ELFINTERP "$tcc_elfinterp"
441 print_mak CONFIG_LDDIR "$tcc_lddir"
442 print_mak CONFIG_TRIPLET "$triplet"
444 echo "#define GCC_MAJOR $gcc_major" >> $TMPH
445 echo "#define GCC_MINOR $gcc_minor" >> $TMPH
447 if test "$cpu" = "x86" ; then
448 echo "ARCH=i386" >> config.mak
449 elif test "$cpu" = "x86-64" ; then
450 echo "ARCH=x86-64" >> config.mak
451 elif test "$cpu" = "armv4l" ; then
452 echo "ARCH=arm" >> config.mak
453 echo "#define TCC_ARM_VERSION $cpuver" >> $TMPH
454 elif test "$cpu" = "aarch64" ; then
455 echo "ARCH=arm64" >> config.mak
456 elif test "$cpu" = "powerpc" ; then
457 echo "ARCH=ppc" >> config.mak
458 elif test "$cpu" = "mips" ; then
459 echo "ARCH=mips" >> config.mak
460 elif test "$cpu" = "s390" ; then
461 echo "ARCH=s390" >> config.mak
462 elif test "$cpu" = "alpha" ; then
463 echo "ARCH=alpha" >> config.mak
464 else
465 echo "Unsupported CPU"
466 exit 1
469 echo "TARGETOS=$targetos" >> config.mak
471 for v in $confvars ; do
472 echo "CONFIG_$v=yes" >> config.mak
473 done
474 if test "$noldl" = "yes" ; then
475 echo "CONFIG_NOLDL=yes" >> config.mak
477 if test "$mingw32" = "yes" ; then
478 echo "CONFIG_WIN32=yes" >> config.mak
480 if test "$cygwin" = "yes" ; then
481 echo "#ifndef _WIN32" >> $TMPH
482 echo "# define _WIN32" >> $TMPH
483 echo "#endif" >> $TMPH
484 echo "AR=ar" >> config.mak
486 if test "$bigendian" = "yes" ; then
487 echo "WORDS_BIGENDIAN=yes" >> config.mak
488 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
490 if test "$gprof" = "yes" ; then
491 echo "TARGET_GPROF=yes" >> config.mak
492 echo "#define HAVE_GPROF 1" >> $TMPH
494 if test "$build_cross" = "yes" ; then
495 echo "CONFIG_CROSS=yes" >> config.mak
497 if test "$disable_static" = "yes" ; then
498 echo "DISABLE_STATIC=yes" >> config.mak
500 if test "$disable_rpath" = "yes" ; then
501 echo "DISABLE_RPATH=yes" >> config.mak
503 if test "$strip_binaries" = "yes" ; then
504 echo "STRIP_BINARIES=yes" >> config.mak
506 if test "$use_libgcc" = "yes" ; then
507 echo "#define CONFIG_USE_LIBGCC" >> $TMPH
508 echo "CONFIG_USE_LIBGCC=yes" >> config.mak
510 if test "$have_selinux" = "yes" ; then
511 echo "#define HAVE_SELINUX" >> $TMPH
512 echo "HAVE_SELINUX=yes" >> config.mak
515 version=`head $source_path/VERSION`
516 echo "VERSION = $version" >> config.mak
517 echo "#define TCC_VERSION \"$version\"" >> $TMPH
518 echo "@set VERSION $version" > config.texi
520 if test "$source_path_used" = "yes" ; then
521 case $source_path in
522 /*) echo "TOPSRC=$source_path";;
523 *) echo "TOPSRC=\$(TOP)/$source_path";;
524 esac >>config.mak
525 else
526 echo 'TOPSRC=$(TOP)' >>config.mak
529 diff $TMPH config.h >/dev/null 2>&1
530 if test $? -ne 0 ; then
531 mv -f $TMPH config.h
532 else
533 echo "config.h is unchanged"
536 rm -f $TMPN* $CONFTEST
538 # ---------------------------------------------------------------------------
539 # build tree in object directory if source path is different from current one
541 fn_makelink()
543 tgt=$1/$2
544 case $2 in
545 */*) dn=${2%/*}
546 test -d $dn || mkdir -p $dn
547 case $1 in
548 /*) ;;
549 *) while test $dn ; do
550 tgt=../$tgt; dn=${dn#${dn%%/*}}; dn=${dn#/}
551 done
553 esac
555 esac
557 ln -sfn $tgt $2 || ( echo "ln failed. Using cp instead."; cp -f $1/$2 $2 )
560 if test "$source_path_used" = "yes" ; then
561 FILES="Makefile lib/Makefile tests/Makefile tests/tests2/Makefile tests/pp/Makefile"
562 for f in $FILES ; do
563 fn_makelink $source_path $f
564 done
567 # ---------------------------------------------------------------------------