3 # tcc configure script (c) 2003 Fabrice Bellard
5 # set temporary file name
6 # if test ! -z "$TMPDIR" ; then
8 # elif test ! -z "$TEMPDIR" ; then
14 # bashism: TMPN="${TMPDIR1}/tcc-conf-${RANDOM}-$$-${RANDOM}.c"
41 tcc_sysincludepaths
=""
55 DragonFly
) noldl
=yes;;
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
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"
149 if test -z "$cpu" ; then
150 if test -n "$ARCH" ; then
158 x86|i386|i486|i586|i686|i86pc|BePC|i686-AT386
)
187 "Power Macintosh"|ppc|ppc64
)
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
210 if test -z "$prefix" ; then
211 prefix
="C:/Program Files/${tccdir}"
213 if test -z "$sharedir" ; then
219 libdir
="${prefix}/lib"
220 docdir
="${sharedir}/doc"
221 mandir
="${sharedir}/man"
222 infodir
="${sharedir}/info"
226 if test -z "$prefix" ; then
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"
255 if test x
"$includedir" = x
""; then
256 includedir
="${prefix}/include"
259 if test x
"$show_help" = "xyes" ; then
261 Usage: configure [options]
262 Options: [defaults in brackets after descriptions]
265 --help print this message
266 --prefix=PREFIX install in PREFIX [$prefix]
267 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
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 []
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"
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."
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
327 if test -z "$triplet"; then
328 if test $cpu = "x86-64" -o $cpu = "aarch64" ; then
329 if test -f "/usr/lib64/crti.o" ; then
335 if test "$cpu" = "armv4l" ; then
336 if test "${triplet%eabihf}" != "$triplet" ; then
337 confvars
="$confvars arm_eabihf"
338 elif test "${triplet%eabi}" != "$triplet" ; then
339 confvars
="$confvars arm_eabi"
341 if grep -s -q "^Features.* \(vfp\|iwmmxt\) " /proc
/cpuinfo
; then
342 confvars
="$confvars arm_vfp"
346 if test -f "/lib/ld-uClibc.so.0" ; then
347 confvars
="$confvars uClibc"
353 # if cross compiling, cannot launch a program, so make a static guess
355 powerpc|mips|s390
) bigendian
=yes;;
359 # a final configuration tuning
360 $cc -v --help > cc_help.txt
2>&1
361 W_OPTIONS
="declaration-after-statement"
362 for i
in $W_OPTIONS; do
363 O_PRESENT
="$(grep -- -W$i cc_help.txt)"
364 if test -n "$O_PRESENT"; then CFLAGS
="$CFLAGS -W$i"; fi
366 W_OPTIONS
="deprecated-declarations strict-aliasing pointer-sign sign-compare unused-result uninitialized"
367 for i
in $W_OPTIONS; do
368 O_PRESENT
="$(grep -- -W$i cc_help.txt)"
369 if test -n "$O_PRESENT"; then CFLAGS
="$CFLAGS -Wno-$i"; fi
371 F_OPTIONS
="strict-aliasing"
372 for i
in $F_OPTIONS; do
373 O_PRESENT
="$(grep -- -f$i cc_help.txt)"
374 if test -n "$O_PRESENT"; then CFLAGS
="$CFLAGS -fno-$i"; fi
378 fcho
() { if test -n "$2"; then echo "$1$2"; else echo "$1-"; fi }
380 echo "Binary directory $bindir"
381 echo "TinyCC directory $tccdir"
382 echo "Library directory $libdir"
383 echo "Include directory $includedir"
384 echo "Manual directory $mandir"
385 echo "Info directory $infodir"
386 echo "Doc directory $docdir"
387 fcho
"Target root prefix " "$sysroot"
388 echo "Source path $source_path"
389 echo "C compiler $cc"
390 echo "Target OS $targetos"
392 echo "Big Endian $bigendian"
393 echo "Profiling $gprof"
394 echo "Cross compilers $build_cross"
395 echo "Use libgcc $use_libgcc"
396 fcho
"Triplet " "$triplet"
398 echo "Creating config.mak and config.h"
400 cat >config.mak
<<EOF
401 # Automatically generated by configure - do not modify
403 bindir=\$(DESTDIR)$bindir
404 tccdir=\$(DESTDIR)$tccdir
405 libdir=\$(DESTDIR)$libdir
406 includedir=\$(DESTDIR)$includedir
407 mandir=\$(DESTDIR)$mandir
408 infodir=\$(DESTDIR)$infodir
409 docdir=\$(DESTDIR)$docdir
414 STRIP=$strip -s -R .comment -R .note
422 if test -n "$2"; then
423 echo "#ifndef $1" >> $TMPH
424 echo "# define $1 \"$2\"" >> $TMPH
425 echo "#endif" >> $TMPH
429 if test -n "$2"; then
430 echo "NATIVE_DEFINES+=-D$1=\"\\\"$2\\\"\"" >> config.mak
434 echo "/* Automatically generated by configure - do not modify */" > $TMPH
436 print_inc CONFIG_SYSROOT
"$sysroot"
437 print_inc CONFIG_TCCDIR
"$tccdir"
438 print_mak CONFIG_TCC_SYSINCLUDEPATHS
"$tcc_sysincludepaths"
439 print_mak CONFIG_TCC_LIBPATHS
"$tcc_libpaths"
440 print_mak CONFIG_TCC_CRTPREFIX
"$tcc_crtprefix"
441 print_mak CONFIG_TCC_ELFINTERP
"$tcc_elfinterp"
442 print_mak CONFIG_LDDIR
"$tcc_lddir"
443 print_mak CONFIG_TRIPLET
"$triplet"
445 echo "#define GCC_MAJOR $gcc_major" >> $TMPH
446 echo "#define GCC_MINOR $gcc_minor" >> $TMPH
448 if test "$cpu" = "x86" ; then
449 echo "ARCH=i386" >> config.mak
450 elif test "$cpu" = "x86-64" ; then
451 echo "ARCH=x86-64" >> config.mak
452 elif test "$cpu" = "armv4l" ; then
453 echo "ARCH=arm" >> config.mak
454 echo "#define TCC_ARM_VERSION $cpuver" >> $TMPH
455 elif test "$cpu" = "aarch64" ; then
456 echo "ARCH=arm64" >> config.mak
457 elif test "$cpu" = "powerpc" ; then
458 echo "ARCH=ppc" >> config.mak
459 elif test "$cpu" = "mips" ; then
460 echo "ARCH=mips" >> config.mak
461 elif test "$cpu" = "s390" ; then
462 echo "ARCH=s390" >> config.mak
463 elif test "$cpu" = "alpha" ; then
464 echo "ARCH=alpha" >> config.mak
466 echo "Unsupported CPU"
470 echo "TARGETOS=$targetos" >> config.mak
472 for v
in $confvars ; do
473 echo "CONFIG_$v=yes" >> config.mak
475 if test "$noldl" = "yes" ; then
476 echo "CONFIG_NOLDL=yes" >> config.mak
478 if test "$mingw32" = "yes" ; then
479 echo "CONFIG_WIN32=yes" >> config.mak
481 if test "$cygwin" = "yes" ; then
482 echo "#ifndef _WIN32" >> $TMPH
483 echo "# define _WIN32" >> $TMPH
484 echo "#endif" >> $TMPH
485 echo "AR=ar" >> config.mak
487 if test "$bigendian" = "yes" ; then
488 echo "WORDS_BIGENDIAN=yes" >> config.mak
489 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
491 if test "$gprof" = "yes" ; then
492 echo "TARGET_GPROF=yes" >> config.mak
493 echo "#define HAVE_GPROF 1" >> $TMPH
495 if test "$build_cross" = "yes" ; then
496 echo "CONFIG_CROSS=yes" >> config.mak
498 if test "$disable_static" = "yes" ; then
499 echo "DISABLE_STATIC=yes" >> config.mak
501 if test "$disable_rpath" = "yes" ; then
502 echo "DISABLE_RPATH=yes" >> config.mak
504 if test "$strip_binaries" = "yes" ; then
505 echo "STRIP_BINARIES=yes" >> config.mak
507 if test "$use_libgcc" = "yes" ; then
508 echo "#define CONFIG_USE_LIBGCC" >> $TMPH
509 echo "CONFIG_USE_LIBGCC=yes" >> config.mak
511 if test "$have_selinux" = "yes" ; then
512 echo "#define HAVE_SELINUX" >> $TMPH
513 echo "HAVE_SELINUX=yes" >> config.mak
516 version
=`head $source_path/VERSION`
517 echo "VERSION = $version" >> config.mak
518 echo "#define TCC_VERSION \"$version\"" >> $TMPH
519 echo "@set VERSION $version" > config.texi
521 if test "$source_path_used" = "yes" ; then
523 /*) echo "TOPSRC=$source_path";;
524 *) echo "TOPSRC=\$(TOP)/$source_path";;
527 echo 'TOPSRC=$(TOP)' >>config.mak
530 diff $TMPH config.h
>/dev
/null
2>&1
531 if test $?
-ne 0 ; then
534 echo "config.h is unchanged"
537 rm -f $TMPN* $CONFTEST
539 # ---------------------------------------------------------------------------
540 # build tree in object directory if source path is different from current one
547 test -d $dn || mkdir
-p $dn
550 *) while test $dn ; do
551 tgt
=..
/$tgt; dn
=${dn#${dn%%/*}}; dn=${dn#/}
558 ln -sfn $tgt $2 ||
( echo "ln failed. Using cp instead."; cp -f $1/$2 $2 )
561 if test "$source_path_used" = "yes" ; then
562 FILES
="Makefile lib/Makefile tests/Makefile tests/tests2/Makefile tests/pp/Makefile"
564 fn_makelink
$source_path $f
568 # ---------------------------------------------------------------------------