childs -> children.
[AROS.git] / configure.in
bloba4ce89dc4c0aaa509f1e21a676026795ae6c74c4
1 dnl Copyright © 1997-2012, The AROS Development Team. All rights reserved.
2 dnl $Id$
3 dnl
4 dnl Desc: Autoconf source for configuration file
5 dnl Lang: english
7 # Note: After file changes, generate configure anew and commit _both_ files.
9 #TODO
10 # method of getting shared/non-shared ld/ar tool for target.
12 # ------------------------------------------------------------------------
13 # Here starts the first section of the configure.in file.
14 # ------------------------------------------------------------------------
16 AC_INIT(mmakefile)
17 AC_PREREQ(2.61)
18 AC_CONFIG_AUX_DIR(scripts/autoconf)
20 # Check what host we are running on.
21 # If a target is not suggested, we use this one.
22 # Note that what we call a target, Autoconf calls a host.
23 AC_CANONICAL_HOST
25 # The AROS target is slightly different to the normal GNU style
26 # format. We don't have the middle part, and we reverse the order
27 # of the $(CPU) and $(OS) bits.
29 # Don't strip the version of the target yet, it might be
30 # useful on some systems.
32 AC_MSG_CHECKING([for AROS style target])
34 if test "$target" = "NONE" ; then
35     target=$host_os-$host_cpu
36 else
37     if test "$target" = "" ; then
38         target=$host_os-$host_cpu
39     fi
41 AC_MSG_RESULT($target)
43 if test "$host_os" = "mingw32" ; then
44     PWDCMD="pwd -W"
47 # Don't know where else to put this...
48 AC_MSG_CHECKING([building AROS in])
49 AROS_BUILDDIR=`${PWDCMD-pwd}`
50 AROS_BUILDDIR_UNIX=${PWD}
51 AC_MSG_RESULT($AROS_BUILDDIR)
53 AC_MSG_CHECKING([AROS source in])
54 srcpwd=`cd ${srcdir} ; ${PWDCMD-pwd}`
55 SRCDIR=${srcpwd}
56 AC_MSG_RESULT($SRCDIR)
58 # Parse the target field into something useful.
59 changequote(<<,>>)
60 target_os=`echo $target | sed 's/^\([^-].*\)-\(.*\)$/\1/'`
61 target_cpu=`echo $target | sed 's/^\([^-].*\)-\(.*\)$/\2/'`
62 changequote([,])
64 # Some debug output, to be removed again.
65 AC_MSG_CHECKING([for target system (debug output)])
66 AC_MSG_RESULT($target_os)
67 AC_MSG_CHECKING([for target cpu (debug output)])
68 AC_MSG_RESULT($target_cpu)
70 dnl --------------------------------------------------------------------
71 dnl Set the default Workbench resolution
72 dnl --------------------------------------------------------------------
73 aros_default_wbwidth=800
74 aros_default_wbheight=600
75 aros_default_wbdepth=4
77 dnl --------------------------------------------------------------------
78 dnl Host Configuration Section
79 dnl --------------------------------------------------------------------
80 dnl
81 dnl The idea here is to find out all the information we need about the
82 dnl host. This means things like tools for building directory structures,
83 dnl copying files around and the like.
85 # The first step is to find the host binaries.
86 # Check for a compiler.
87 # Due to a bug in autoconf check for c++ compiler first.
88 # For mor info see, http://osdir.com/ml/bug-autoconf-gnu/2010-05/msg00001.html.
89 AC_PROG_CXX
90 AC_PROG_CC
91 AC_PROG_CC_STDC
92 AC_PROG_CPP
94 # Check for a compatible awk
95 AC_CHECK_PROGS(AWK,[gawk nawk])
96 AROS_REQUIRED(gawk,$AWK)
97 AROS_PROG(MMAKE,mmake)
99 # Perform some default variable assignments. Note all of these will be
100 # Regenerated from the script, so there is no need to cache them.
102 aros_host_cpp="$CPP"
103 aros_host_cc="$CC"
104 aros_host_cxx="$CXX"
105 AROS_TOOL_CCPATH(aros_host_ld,ld)
106 AROS_REQUIRED(ld,$aros_host_ld)
107 aros_host_make="make"
108 aros_host_cflags=$CFLAGS
109 aros_host_cxxflags=$CXXFLAGS
110 aros_host_ldflags=$LDFLAGS
111 aros_host_debug="-g -O0"
112 aros_host_mkdep="\$(SRCDIR)/scripts/mkdep"
113 aros_host_mkargs="--no-print-directory"
114 aros_host_exe_suffix="$EXEEXT"
115 aros_host_lib_suffix=""
117 # Ignore all compliance, AROS ROMs = 0
118 # KickStart v1.0 = 30
119 # KickStart v1.3 = 34
120 # KickStart v2.0 = 37
121 # KickStart v3.0 = 39
122 # KickStart v3.1 = 40
123 # AmigaOS   v3.5 = 44
124 aros_amigaos_compliance=0
126 AC_CHECK_PROGS(aros_host_aclocal,[aclocal aclocal19 aclocal-1.9])
127 AC_CHECK_PROGS(aros_host_autoconf,[autoconf autoconf259 autoconf253])
128 AC_CHECK_PROGS(aros_host_autoheader,[autoheader autoheader259 autoheader253])
129 AC_CHECK_PROGS(aros_host_automake,[automake automake19 automake-1.9])
131 AROS_REQUIRED(aclocal/aclocal19/aclocal-1.9, $aros_host_aclocal)
132 AROS_REQUIRED(automake/automake19/automake-1.9, $aros_host_automake)
134 case "$aros_host_cc" in
135     *gcc*)
136         aros_host_cc_pipe="-pipe"
137         ;;
138     icc)
139         aros_host_cc_pipe=""
140         ;;
141     *)
142         aros_host_cc_pipe=""
143         ;;
144 esac
146 aros_kernel_cc_includes=""
147 aros_target_cc_includes=""
148 host_cc_elf=yes
150 # ----------------------------------------------------------------------------------------
151 # Host-specific defaults
153 # This is the main host configuration section. It is where the host
154 # can change the values of any variables it needs to change. We do
155 # not look at anything that compiles to the target yet, we'll get
156 # to that later.
158 case "$host_os" in
159     aros*)
160         aros_host_arch="aros"
161         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
162         case "$host_cpu" in
163             *i?86*)
164                 aros_host_cpu="i386"
165                 ;;
166             *x86_64*)
167                 aros_host_cpu="x86_64"
168                 ;;
169             *powerpc*)
170                 aros_host_cpu="ppc"
171                 ;;
172             *)
173                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
174                 aros_host_cpu="$host_cpu"
175                 ;;
176         esac
177         ;;
179     linux*)
180         aros_host_arch="linux"
181         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
182         android_build_os="linux-x86"
183         android_tool="android"
184         default_android_sdk="/opt/android-sdk-linux_x86"
185         case "$host_cpu" in
186             *i?86*)
187                 aros_host_cpu="i386"
188                 ;;
189             *x86_64*)
190                 aros_host_cpu="x86_64"
191                 ;;
192             *m68k*)
193                 aros_host_cpu="m68k"
194                 ;;
195             *powerpc*)
196                 aros_host_cpu="ppc"
197                 ;;
198             *arm*)
199                 aros_host_cpu="arm"
200                 ;;
201             *)
202                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
203                 aros_host_cpu="$host_cpu"
204                 ;;
205         esac
206         ;;
208     freebsd*)
209         aros_host_cc="$aros_host_cc $aros_host_cc_pipe -I/usr/local/include"
210         aros_host_make="gmake"
211         aros_host_arch="freebsd"
212         aros_host_cpu="i386"
214         aros_host_ldflags="$aros_host_ldflags -L/usr/local/lib -liconv"
216         dnl FreeBSD 5.x (and later) has changed the default object format.
217         dnl The double [[]] is necessary to get around m4's quoting rules.
218         case $host_os in
219             freebsd[[234]]*)
220                 aros_object_format="elf_i386"
221                 ;;
223             *)
224                 aros_object_format="elf_i386_fbsd"
225                 ;;
226         esac
228         ;;
230     darwin*)
231         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
232         aros_host_arch="darwin"
233         host_cc_elf=no
234         android_build_os="darwin-x86"
235         android_tool="android"
236         default_android_sdk="/android-sdk-mac_x86"
237         case "$host_cpu" in
238             *i?86*)
239                 aros_host_cpu="i386"
240                 ;;
241             *x86_64*)
242                 aros_host_cpu="x86_64"
243                 ;;
244             *powerpc*)
245                 aros_host_cpu="ppc"
246                 ;;
247             *)
248                 AC_MSG_WARN("Unknown CPU for Darwin host -- $host_cpu")
249                 aros_host_cpu="$host_cpu"
250                 ;;
251         esac
253         aros_host_ldflags="$aros_host_ldflags -liconv"
255         ;;
257     dragonfly*)
258         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
259         aros_host_make="gmake"
260         aros_host_arch="dragonfly"
261         case $host_cpu in
262             *i?86*)
263                 aros_host_cpu="i386"
264                 ;;
265             *amd64*)
266                 aros_host_cpu="x86_64"
267                 ;;
268             *)
269                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
270                 aros_host_cpu="$host_cpu"
271                 ;;
272         esac
273         ;;
275     netbsd*)
276         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
277         aros_host_make="gmake"
278         aros_host_arch="netbsd"
279         case "$host_cpu" in
280             *i?86*)
281                 aros_host_cpu="i386"
282                 ;;
283             *m68k*)
284                 aros_host_cpu="m68k"
285                 ;;
286             *)
287                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
288                 aros_host_cpu="$host_cpu"
289                 ;;
290         esac    
291         aros_host_lib_suffix=".0.0"
292         ;;
294     openbsd*)
295         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
296         aros_host_make="gmake"
297         aros_host_arch="openbsd"
298         case "$host_cpu" in
299             *i?86*)
300                 aros_host_cpu="i386"
301                 ;;
302             *)
303                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
304                 aros_host_cpu="$host_cpu"
305                 ;;
306         esac
307         ;;
308         
309     solaris*)
310         aros_host_arch="solaris"
311         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
312         case "$host_cpu" in
313             *i?86*)
314                 aros_host_cpu="i386"
315                 ;;
316             *sparc*)
317                 aros_host_cpu="sparc"
318                 ;;
319             *)
320                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
321                 aros_host_cpu="$host_cpu"
322                 ;;
323         esac
324         ;;
326     morphos*)
327         aros_host_arch="morphos"
328         aros_host_cpu="ppc"
329         host_cc_elf=no
330         ;;
332     amiga*)
333         aros_host_arch="amiga"
334         host_cc_elf=no
335         SORT="/gg/bin/sort"
336         TEST="/gg/bin/test"
337         UNIQ="/gg/bin/uniq"
338         FOR="for"
339         TOUCH="/gg/bin/touch"
340         case "$host_cpu" in
341             *m68k*)
342                 aros_host_cpu="m68k"
343                 ;;
344             *powerpc*)
345                 aros_host_cpu="ppc"
346                 ;;
347             *)
348                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
349                 aros_host_cpu="$host_cpu"
350                 ;;
351         esac
352         ;;
354     cygwin*)
355         aros_host_arch="cygwin"
356         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
357         host_cc_elf=no
358         android_build_os="windows"
359         android_tool="android.bat"
360         default_android_sdk="/cygdrive/c/android-sdk-windows-1.6_r1"
362         case "$host_cpu" in
363             *i?86*)
364                 aros_host_cpu="i386"
365                 ;;
366             *)
367                 AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
368                 aros_host_cpu="$host_cpu"
369                 ;;
370         esac
371         ;;
373     mingw32*)
374         aros_host_arch="mingw32"
375         aros_host_cc="$aros_host_cc $aros_host_cc_pipe"
376         host_cc_elf=no
377         android_build_os="windows"
378         android_tool="android.bat"
379         default_android_sdk="/c/android-sdk-windows-1.6_r1"
381         case "$host_cpu" in
382         *i?86*)
383             dnl Currently there's neither 64-bit MinGW nor MSYS. Both environments are 32-bit
384             dnl and run under emulation. Consequently, uname reports i386 even on 64-bit systems.
385             dnl Here we attempt to detect Windows home platform by asking gcc about its target.
386             dnl 64-bit gcc will output "x86_64-w64-mingw32" here.
388             AC_MSG_CHECKING([for Windows native gcc target])
389             host_cpu=`gcc -dumpmachine`
390             AC_MSG_RESULT($host_cpu)
391             ;;
393         esac
395         case "$host_cpu" in
396         *i?86*)
397             aros_host_cpu="i386"
398             ;;
400         mingw32*)
401             dnl Native i386 gcc for MinGW32 reports 'mingw32' with -dumpmachine switch
402             aros_host_cpu="i386"
403             ;;
405         *x86_64*)
406             aros_host_cpu="x86_64"
407             dnl Dragon's x86_64-w64-mingw32-gcc is a bit broken. It ignores standard $prefix/include
408             dnl directory, so we have to add it explicitly here.
409             aros_host_cflags="$aros_host_cflags -isystem /mingw/include"
410             ;;
412         *)
413             AC_MSG_WARN("Unknown CPU for host -- $host_cpu")
414             aros_host_cpu="$host_cpu"
415             ;;
416         esac
417         ;;
418     *)
419         AC_MSG_ERROR([Unsupported host architecture $host])
420         ;;
421 esac
423 AROS_PROG(aros_host_ar,[ar],[cr])
424 AROS_REQUIRED(ar,$aros_host_ar)
425 AROS_PROG(aros_host_ranlib,ranlib)
426 AROS_REQUIRED(ranlib,$aros_host_ranlib)
427 AROS_PROG(aros_host_strip,strip)
428 AROS_REQUIRED(strip,$aros_host_strip)
430 AROS_PROG(RM,[rm],[-rf])
431 AROS_REQUIRED(rm,$RM)
432 AROS_PROG(CP,[cp])
433 AROS_REQUIRED(cp,$CP)
434 AROS_PROG(MV,[mv])
435 AROS_REQUIRED(mv,$MV)
436 AROS_PROG(ECHO,[echo])
437 AROS_REQUIRED(echo,$ECHO)
438 AROS_PROG(MKDIR,[mkdir],[-p])
439 AROS_REQUIRED(mkdir,$MKDIR)
440 AROS_PROG(TOUCH,[touch])
441 AROS_REQUIRED(touch,$TOUCH)
442 AROS_PROG(SORT,[sort])
443 AROS_REQUIRED(sort,$SORT)
444 AROS_PROG(UNIQ,[uniq])
445 AROS_REQUIRED(uniq,$UNIQ)
446 AROS_PROG(NOP,[true])
447 AROS_REQUIRED(true,$NOP)
448 AROS_PROG(CAT,[cat])
449 AROS_REQUIRED(cat,$CAT)
450 AROS_PROG(BISON,[bison])
451 AROS_REQUIRED(bison,$BISON)
452 AROS_PROG(FLEX,[flex])
453 AROS_REQUIRED(flex,$FLEX)
454 AROS_PROG(PNGTOPNM,[pngtopnm])
455 AROS_REQUIRED(pngtopnm,$PNGTOPNM)
456 AROS_PROG(PPMTOILBM,[ppmtoilbm])
457 AROS_REQUIRED(ppmtoilbm,$PPMTOILBM)
458 AROS_PROG(SED,[sed])
459 AROS_REQUIRED(sed,$SED)
460 AROS_PROG(CHMOD,[chmod])
461 AROS_REQUIRED(chmod,$CHMOD)
462 AROS_PROG(PATCH,[patch])
463 AROS_REQUIRED(patch,$PATCH)
465 AM_PATH_PYTHON(2.5)
467 AC_CHECK_LIB(png, png_read_png)
468 AROS_REQUIRED(libpng, $ac_cv_lib_png_png_read_png)
470 AC_SUBST(FOR, for)
471 AC_SUBST(IF, if)
472 AC_SUBST(TEST, test)
473 AC_SUBST(CMP, cmp)
475 dnl ---------------------------------------------------------------------------
476 dnl Look for things about the host system, good for hosted targets.
477 dnl ---------------------------------------------------------------------------
479 # Check for some includes for the X11 HIDD and the kernel
480 AC_CHECK_HEADERS([sys/ipc.h sys/shm.h \
481     sys/mmap.h sys/mman.h sysexits.h \
482     sys/statfs.h sys/statvfs.h sys/vfs.h sys/param.h \
485 AC_CHECK_HEADERS([sys/mount.h],,,[#include <sys/param.h>])
487 AC_HEADER_DIRENT
488 AC_HEADER_STAT
489 AC_HEADER_STDC
490 AC_HEADER_SYS_WAIT
491 AC_HEADER_TIME
492 AC_STRUCT_ST_BLKSIZE
493 AC_STRUCT_ST_BLOCKS
494 AC_STRUCT_ST_RDEV
495 AC_STRUCT_TM
496 AC_STRUCT_TIMEZONE
497 AC_TYPE_OFF_T
498 AC_TYPE_PID_T
499 AC_TYPE_SIZE_T
500 AC_TYPE_UID_T
502 AC_CHECK_MEMBERS(struct tm.tm_gmtoff)
504 # Look for some functions
505 AC_CHECK_FUNCS([getpagesize kqueue statfs statvfs \
506     clone kse_create rfork_thread thr_create sa_register \
507     getcontext makecontext setcontext sigaltstack swapcontext])
509 AC_FUNC_MMAP
512 dnl --------------------------------------------------------------------
513 dnl Target Configuration Section
514 dnl --------------------------------------------------------------------
516 dnl The target configuration section is responsible for setting up all
517 dnl the paths for includes, and tools required to build AROS to some
518 dnl particular target.
520 aros_config_cflags="-Wall -Werror-implicit-function-declaration"
521 aros_config_aflags="-Wall -x assembler-with-cpp -c"
522 aros_config_ldflags=""
524 aros_shared_default=yes
526 aros_shared_cflags="-fPIC"
527 aros_shared_aflags=""
528 aros_shared_ldflags="-Wl,-rpath,./lib -shared"
529 aros_kernel_ldflags="-Wl,-rpath,./lib"
531 aros_kernel_ar_flags="cr"
532 aros_target_ar_flags="cr"
533 aros_target_nm_flags="-C -ul"
534 aros_target_strip_flags="--strip-unneeded -R.comment"
536 aros_compiler_libs=
537 aros_arch_libs=
539 aros_target_genmap="-Wl,-Map -Xlinker"
541 # Native flavour stuff
542 aros_serial_debug="0"
544 # Palm native flavour stuff
545 aros_palm_debug_hack="0"
547 # Unix flavour stuff
548 aros_nesting_supervisor="0"
550 # Collect-aros stuff: "-ius" to ignore undefined symbols
551 ignore_undefined_symbols=""
553 # Check for X11 by default
554 need_x11="auto"
556 #-----------------------------------------------------------------------------
559 # GCC 4.1+ has a stack protection feature that requires OS support. Ubuntu has
560 # it switched on by default, and we use the host compiler, so it compiles AROS
561 # code with this enabled resulting in link failures as we don't have support
562 # for it.
564 # We use two methods to disable it. For the host compiler (used to compile
565 # some hosted modules), we test to see if the compiler supports stack
566 # protection, and if it does we disable it in AROS_CONFIG_CFLAGS. This should
567 # work on all platforms.
569 # For the "cross" compiler we clear the "ssp_default" spec in config/specs.in
570 # (this is done unconditionally, as it should have no effect on compilers
571 # without the stack protection feature). This may be specific to the way that
572 # Ubuntu enables the feature, so may not work everywhere. My specs-fu isn't
573 # strong enough to disable it in a generic way though, so we'll live with it
574 # until another vendor ships GCC with it enabled in a different way, and deal
575 # with it then.
578 AC_MSG_CHECKING([whether ${CC} accepts -fno-stack-protector])
579 save_cflags="$CFLAGS"
580 CFLAGS="$CFLAGS -fno-stack-protector"
581 AC_TRY_COMPILE(,, use_no_stack_protector="yes", use_no_stack_protector="no")
582 AC_MSG_RESULT($use_no_stack_protector)
583 if test "x-$use_no_stack_protector" = "x-yes" ; then
584     aros_host_cflags="$aros_host_cflags -fno-stack-protector"
586 CFLAGS="$save_cflags"
588 #-----------------------------------------------------------------------------
590 # Disable pointer-signedness warnings if the compiler recognises the option
591 # (this only works for the host compiler at the moment)
593 AC_MSG_CHECKING([whether ${CC} accepts -Wno-pointer-sign])
594 save_cflags="$CFLAGS"
595 CFLAGS="$CFLAGS -Wno-pointer-sign"
596 AC_TRY_COMPILE(,, use_no_sign_warning="yes", use_no_sign_warning="no")
597 AC_MSG_RESULT($use_no_sign_warning)
598 if test "x-$use_no_sign_warning" = "x-yes" ; then
599     aros_host_cflags="$aros_host_cflags -Wno-pointer-sign"
601 CFLAGS="$save_cflags"
603 #-----------------------------------------------------------------------------
605 # Check if host compiler supports -fgnu89-inline, can be needed for crosstools.
607 AC_MSG_CHECKING([whether ${CC} accepts -fgnu89-inline])
608 save_cflags="$CFLAGS"
609 CFLAGS="$CFLAGS -fgnu89-inline"
610 AC_TRY_COMPILE(,, use_gnu89_inline="yes", use_gnu89_inline="no")
611 AC_MSG_RESULT($use_gnu89_inline)
612 if test "x-$use_gnu89_inline" = "x-yes" ; then
613     gnu89_inline="-fgnu89-inline"
615 CFLAGS="$save_cflags"
617 #-----------------------------------------------------------------------------
619 AC_MSG_CHECKING([for type of build])
620 AC_ARG_ENABLE(build_type,AC_HELP_STRING([--enable-build-type=TYPE],[Select the build type. Available types are: personal, nightly, snapshot, milestone, release. Do NOT use this option unless you know what you are doing! (default=personal)]),build_type=$enableval,build_type="personal")
622 if test "$build_type" = "nightly"; then
623     build_type_string="NIGHTLY"
624 elif test "$build_type" = "snapshot"; then
625     build_type_string="SNAPSHOT"
626 elif test "$build_type" = "milestone"; then
627     build_type_string="MILESTONE"
628 elif test "$build_type" = "release"; then
629     build_type_string="RELEASE"
630 else
631     build_type_string="PERSONAL"
632     build_type="personal"
635 aros_config_cflags="$aros_config_cflags -DAROS_BUILD_TYPE=AROS_BUILD_TYPE_$build_type_string"
637 AC_MSG_RESULT($build_type)
639 #-----------------------------------------------------------------------------
640 all_debug_types="messages stack modules mungwall symbols"
642 AC_MSG_CHECKING([which debug types to enable])
643 AC_ARG_ENABLE(debug,AC_HELP_STRING([--enable-debug=list],[Enable different types of debug. Commas or whitespaces can be used to separate the items in the list. Available types of debug are: all, none, messages, stack, mungwall, modules, symbols. If no list is provided then "all" is assumed. (default=none)]),
644  debug="$enableval",debug="")
646 if test "$debug" = "" -o "$debug" = "no"; then
647     debug="none"
648 elif test "$debug" = "yes"; then
649     debug="all"
652 if test "$debug" = "all" ; then
653     debug="messages stack modules symbols"
654     for d in $all_debug_types; do
655         export aros_${d}_debug="1"
656     done
657 else
658     for d in $all_debug_types; do
659         export aros_${d}_debug="0"
660     done
663 if test "$debug" != "none"; then
664     debug=`echo $debug | sed s/,/\ /g`
665     for d in $debug; do
666         found="0"
667         for d2 in $all_debug_types; do
668             if test "$d2" = "$d"; then
669                 found="1"
670                 break
671             fi
672         done
673         if test "$found" = "0"; then
674             AC_MSG_ERROR([unrecognized debug type "$d". Available types are: all none $all_debug_types])
675         fi
676         export aros_${d}_debug="1"
677     done
678     aros_debug="yes"
680 AC_MSG_RESULT($debug)
682 if test "$aros_messages_debug" = "1"; then
683     aros_messages_debug="-DADEBUG=1 -DMDEBUG=1"
684 else
685     aros_messages_debug=""
687 if test "$aros_symbols_debug" = "1"; then
688     aros_symbols_debug="-g"
689 else
690     aros_symbols_debug=""
693 # These are the flags to pass when compiling debugged programs
694 aros_debug_cflags="$aros_symbols_debug $aros_messages_debug"
695 aros_debug_aflags=""
696 aros_debug_ldflags="$aros_symbols_debug"
698 #-----------------------------------------------------------------------------
699 #   Checking for distcc and ccache.
701 #   Always apply the transforms in this particular order. Basically you should
702 #   always run 'ccache distcc compiler' in that order for the best performance.
704 AC_MSG_CHECKING([whether to enable distcc])
705 AC_ARG_ENABLE(distcc,AC_HELP_STRING([--enable-distcc],[Use distcc as a front end to the compiler (default=no).]),distcc="$enableval",distcc="no")
706 if test "$distcc" != "" -a "$distcc" != "no"; then
707     # AC_CHECK_PROG will print out the result in this case
708     AC_PATH_PROG(DISTCC,[distcc],distcc,)
709 else
710     AC_MSG_RESULT(no)
713 AC_MSG_CHECKING([whether to enable ccache])
714 AC_ARG_ENABLE(ccache,AC_HELP_STRING([--enable-ccache],[Use ccache as a front end to the compiler (default=no).]),ccache="$enableval",ccache="no")
715 if test "$ccache" != "" -a "$ccache" != "no"; then
716     # AC_CHECK_PROG will print out the result in this case
717     AC_CHECK_PROG(CCACHE,[ccache],ccache,)
718 else
719     AC_MSG_RESULT(no)
722 #-----------------------------------------------------------------------------
723 AC_MSG_CHECKING([what specific host gcc version to use])
724 AC_ARG_WITH(kernel-gcc-version,AC_HELP_STRING([--with-kernel-gcc-version=VERSION],[Use host gcc-VERSION for building AROS]),kernel_tool_version="-$withval",kernel_tool_version="")
725 AC_MSG_RESULT($kernel_tool_version)
727 #-----------------------------------------------------------------------------
728 AC_MSG_CHECKING([what specific target gcc version to use])
729 AC_ARG_WITH(gcc-version,AC_HELP_STRING([--with-gcc-version=VERSION],[Use host gcc-VERSION for building AROS]),target_tool_version="$withval",target_tool_version="default")
730 AC_MSG_RESULT($target_tool_version)
732 #-----------------------------------------------------------------------------
733 AC_MSG_CHECKING([what optimization flags to use])
734 AC_ARG_WITH(optimization,AC_HELP_STRING([--with-optimization=FLAGS],[Use optimization flags FLAGS (default=-O2).]),optimization="$withval",optimization="unknown")
735 if test "$optimization" = "unknown"; then
736     dnl default is -O2 for normal builds, -O0 for debug builds
737     if test "$debug" != "none"; then
738         optimization="-O0"
739     else
740         optimization="-O2"
741     fi
743 aros_config_cflags="$aros_config_cflags $optimization"
744 AC_MSG_RESULT($optimization)
746 #-----------------------------------------------------------------------------
747 AC_MSG_CHECKING([what paranoia flags to use])
748 AC_ARG_WITH(paranoia,AC_HELP_STRING([--with-paranoia=FLAGS],[CC flags to enable paranoia]),[paranoia_flags="$withval"],[paranoia_flags="default"])
749 if test "$paranoia_flags" = "default"; then
750         paranoia_flags=""
751 else if test "$paranoia_flags" = "yes"; then
752         paranoia_flags="-Wall -Werror"
753 fi fi
754 AC_MSG_RESULT($paranoia_flags)
755 aros_config_cflags="$aros_config_cflags $paranoia_flags"
757 #-----------------------------------------------------------------------------
758 AC_MSG_CHECKING([what target variant to enable])
759 AC_ARG_ENABLE(target_variant,AC_HELP_STRING([--enable-target-variant=NAME],[Enable a specific target variant(default=none)]),target_variant=$enableval,target_variant="")
760 if test "$target_variant" = ""; then
761     aros_target_variant=""
762     aros_target_suffix=""
763     enableval="none"
764 else
765     aros_target_variant="$target_variant"
766     aros_target_suffix="-$target_variant"
768 AC_MSG_RESULT($enableval)
770 #-----------------------------------------------------------------------------
771 # Target-specific defaults. You can override then on a per-target basis.
773 # Bootloader name. Currently used by PC target.
774 target_bootloader="none"
776 #-----------------------------------------------------------------------------
777 # Additional options for some specific targets
779 case "$aros_target_variant" in
780 ios)
781     AC_MSG_CHECKING([XCode path])
782     AC_ARG_WITH(xcode,AC_HELP_STRING([--with-xcode=PATH],[Specify XCode path for iOS targets (default=/Developer).]),aros_xcode_path="$withval",aros_xcode_path="/Developer")
783     AC_MSG_RESULT($aros_xcode_path)
785     AC_MSG_CHECKING([what iOS SDK version to use])
786     AC_ARG_WITH(sdk-version,AC_HELP_STRING([--with-sdk-version=VERSION],[Use iOS SDK version VERSION (default=4.1).]),aros_sdk_version="$withval",aros_sdk_version="4.1")
787     AC_MSG_RESULT($aros_sdk_version)
789     ;;
791 "android")
792     AC_MSG_CHECKING([Android SDK path])
793     AC_ARG_WITH(sdk,AC_HELP_STRING([--with-sdk=PATH],[Specify Android SDK path (default=$default_android_sdk).]),aros_android_sdk="$withval",aros_android_sdk=$default_android_sdk)
794     AC_MSG_RESULT($aros_android_sdk)
796     AC_MSG_CHECKING([Android NDK path])
797     AC_ARG_WITH(ndk,AC_HELP_STRING([--with-ndk=PATH],[Specify Android NDK path (default=none).]),aros_android_ndk="$withval",aros_android_ndk="none")
798     AC_MSG_RESULT($aros_android_ndk)
800     AC_MSG_CHECKING([what Android SDK version to use])
801     AC_ARG_WITH(sdk-version,AC_HELP_STRING([--with-sdk-version=LEVEL],[Use Android SDK for API LEVEL (default=12).]),aros_sdk_version="$withval",aros_sdk_version="12")
802     AC_MSG_RESULT($aros_sdk_version)
804     if test "$aros_android_ndk" != "none"; then
805         AC_MSG_CHECKING([what Android NDK version to use])
806         AC_ARG_WITH(ndk-version,AC_HELP_STRING([--with-ndk-version=LEVEL],[Use Android NDK for API LEVEL (default=9).]),aros_ndk_version="$withval",aros_ndk_version="9")
807         AC_MSG_RESULT($aros_ndk_version)
808     fi
810     export PATH="$aros_android_sdk/tools:$PATH"
811     AC_PATH_PROG(android_tool, $android_tool)
812     AROS_REQUIRED(android,$android_tool)
814     aros_android_level=android-$aros_sdk_version
815     if test ! -d $aros_android_sdk/platforms/$aros_android_level; then
816         echo "Platform $aros_android_level is not installed in your SDK"
817         echo "Use --with-sdk-version=<API level number> to select another platform version"
818         echo "You can check what plaform versions are installed in your SDK"
819         echo "by examining contents of $aros_android_sdk/platforms directory"
820         AC_MSG_ERROR([Android platform $aros_android_level is not installed])
821     fi
823     AC_PATH_PROG(ant, ant)
824     if test "$ant" = ""; then
825         AC_MSG_WARN([Apache Ant is missing, Java bootstrap can't be built automatically])
826     fi
828     dnl MSYS bash can't run .bat files directly, then need to be started via cmd.exe
829     if test "$host_os" = "mingw32"; then
830         android_tool="cmd //c $android_tool"
831     fi
833     ;;
834 esac
836 #-----------------------------------------------------------------------------
837 # External toolchains
838 kernel_tool_prefix="none"
839 aros_tool_prefix="none"
840 elf_tool_prefix="${target_cpu}-elf-"
842 # This is the target configuration switch.
843 case "$target_os" in
844     linux*)
845         aros_target_arch="linux"
846         aros_target_family="unix"
847         case "$target_cpu" in
848             *m68k*)
849                 aros_target_cpu="m68k"
850                 aros_object_format="m68kelf"
851                 aros_flavour="emulcompat"
852                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -D__mc68000 -D__linux__"
853                 aros_shared_ldflags="-Wl,-T,\$(TOP)/config/linux/m68k/script.so"
854                 aros_kernel_ldflags="-Wl,-rpath,./lib,-T,\$(TOP)/config/linux/m68k/script.normal"
855                 gcc_target_cpu="mc68000"
856                 ;;
857             *i?86*)
858                 aros_target_cpu="i386"
859                 aros_object_format="elf_i386"
860                 aros_flavour="emulation"
861                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386 -D__linux__"
862                 aros_config_cflags="$aros_config_cflags -m32 -march=i486"
863                 aros_kernel_cflags="$aros_kernel_cflags -m32 -march=i486"
864                 aros_config_aflags="$aros_config_aflags -m32 -march=i486"
865                 aros_config_ldflags="-m32 -march=i486"
866                 aros_kernel_ldflags="-melf_i386"
867                 aros_default_wbdepth=8
868                 gcc_target_cpu="i386"
869                 pci_hidd_target="hidd-pci-linux"
870                 android_tool_dir_prefix="x86"
871                 android_tool_prefix="i686-android-linux"
872                 android_ndk_arch="x86"
873                 ;;
874             *x86_64*)
875                 aros_target_cpu="x86_64"
876                 aros_object_format="elf_x86_64"
877                 aros_flavour="emulation"
878                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dx86_64 -D__linux__"
879                 aros_config_cflags="$aros_config_cflags -mno-red-zone -fno-omit-frame-pointer"
880                 aros_default_wbdepth=8
881                 pci_hidd_target="hidd-pci-linux"
882                 ;;
883             *powerpc*)
884                 aros_target_cpu="ppc"
885                 aros_object_format="elf32ppc"
886                 aros_flavour="emulation"
887                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc -D__linux__"
888                 aros_default_wbdepth=8
889                 gcc_target_cpu="ppc"
890                 ;;
891 # TODO
892 # Same as powerpc, but I need this for the nightly build to work again.
893 # Actually, the nightly should be made working with powerpc target.
894 # That just was too much work for the moment, another week or two.
895             *ppc*)
896                 aros_target_cpu="ppc"
897                 aros_object_format="elf32ppc"
898                 aros_flavour="emulation"
899                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc -D__linux__"
900                 aros_default_wbdepth=8
901                 gcc_target_cpu="ppc"
902                 ;;
903             *armhf*)
904                 aros_target_cpu="arm"
905                 target_cpu="arm"
906                 aros_object_format="armelf_linux_eabi"
907                 aros_flavour="emulation"
908                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Darm -D__linux__"
909                 gcc_target_cpu="arm"
910                 aros_config_cflags="$aros_config_cflags -fno-strict-aliasing -fno-omit-frame-pointer"
911                 aros_config_aflags="$aros_config_aflags -fno-strict-aliasing"
912                 aros_arch_libs="-laeabi"
913                 gcc_default_fpu="vfpv3-d16"
914                 gcc_default_float_abi="hard"
915                 android_tool_dir_prefix="arm-linux-androideabi"
916                 android_tool_prefix="arm-linux-androideabi"
917                 android_ndk_arch="arm"
918                 kernel_tool_prefix="arm-linux-gnueabihf-"
919                 ;;
920             *arm*)
921                 aros_target_cpu="arm"
922                 aros_object_format="armelf_linux_eabi"
923                 aros_flavour="emulation"
924                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Darm -D__linux__"
925                 gcc_target_cpu="arm"
926                 aros_config_cflags="$aros_config_cflags -fno-strict-aliasing -fno-omit-frame-pointer"
927                 aros_config_aflags="$aros_config_aflags -fno-strict-aliasing"
928                 aros_arch_libs="-laeabi"
929                 android_tool_dir_prefix="arm-linux-androideabi"
930                 android_tool_prefix="arm-linux-androideabi"
931                 android_ndk_arch="arm"
932                 kernel_tool_prefix="arm-linux-gnueabi-"
933                 ;;
934             *)
935                 AC_MSG_ERROR("Unknown CPU for Linux -- $target_cpu")
936                 ;;
937         esac
938         case "$aros_target_variant" in
939             android)
941                 dnl Not all Linux CPUs are supported by Android
942                 if test "$android_ndk_arch" = ""; then
943                     AC_MSG_ERROR("Unsupported CPU for Android -- $target_cpu")
944                 fi
946                 aros_default_wbwidth=320
947                 aros_default_wbheight=480
948                 if test "$aros_android_ndk" = "none"; then
949                     dnl Use standalone toolchain, don't adjust paths
950                     aros_kernel_cflags="-mandroid"
951                     aros_kernel_ldflags="-mandroid"
952                     CFLAGS="-mandroid"
953                 else
954                     export PATH="$aros_android_ndk/toolchains/$android_tool_dir_prefix-$target_tool_version/prebuilt/$android_build_os/bin:$PATH"
955                     aros_android_ndk="$aros_android_ndk/platforms/android-$aros_ndk_version/arch-$android_ndk_arch"
956                     aros_kernel_cflags="--sysroot $aros_android_ndk -mandroid"
957                     aros_kernel_ldflags="--sysroot $aros_android_ndk -mandroid"
958                     CFLAGS="$CFLAGS --sysroot $aros_android_ndk -mandroid"
959                     aros_kernel_includes="-isystem $aros_android_ndk/usr/include"
960                 fi
961                 need_x11=no
962                 dnl (Ab)use $(X11_HIDD_TARGET) as "Default display driver target"
963                 dnl in order not to fill mmakefiles with garbage
964                 x11_hidd_target=kernel-hidd-androidgfx-kobj
965                 # Disable implicit PIC mode
966                 aros_target_cflags="$aros_target_cflags -fno-pic"
967                 kernel_tool_prefix="$android_tool_prefix-"
968             ;;
969         esac
970     ;;
972     pc)
973         aros_target_arch="pc"
974         aros_shared_default="no"
975         target_bootloader="grub2"
976         case "$target_cpu" in
977             *i?86*)
978                 aros_target_cpu="i386"
980                 dnl If somebody hasn't already set the target object
981                 dnl format, then use this value. Mostly to support
982                 dnl FreeBSD cross-compilation.
983                 dnl TODO: Remove when we always use our compiler.
985                 if test "$aros_object_format" = "" ; then
986                     aros_object_format="elf_i386"
987                 fi
988                 aros_flavour="standalone"
989                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386"
990                 aros_config_cflags="$aros_config_cflags -m32 -march=i486"
991                 aros_kernel_cflags="$aros_kernel_cflags -m32 -march=i486"
992                 aros_config_aflags="$aros_config_aflags -m32 -march=i486"
993                 aros_config_ldflags="-m32 -march=i486"
994                 aros_kernel_ldflags="-melf_i386"
995                 aros_default_wbwidth=640
996                 aros_default_wbheight=480
997                 gcc_target_cpu="i386"
998                 ;;
999             *x86_64*)
1000                 aros_target_cpu="x86_64"
1001                 aros_serial_debug=1
1002                 if test "$aros_object_format" = "" ; then
1003                     aros_object_format="elf_x86_64"
1004                 fi
1005                 aros_flavour="standalone"
1006                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dx86_64"
1007                 aros_config_cflags="$aros_config_cflags -fno-asynchronous-unwind-tables -mno-red-zone -fno-omit-frame-pointer"
1008                 aros_kernel_ldflags=""
1009                 aros_default_wbwidth=640
1010                 aros_default_wbheight=480
1011                 ;;
1012             *)
1013                 AC_MSG_ERROR("Unknown native CPU -- $target_cpu")
1014                 ;;
1015         esac
1016         ;;
1018     prep)
1019         aros_target_arch="prep"
1020         aros_shared_default="no"
1021         aros_target_cpu="ppc"
1022         aros_object_format="elf32ppc"
1023         aros_flavour="ppcnative"
1024         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc"
1025         aros_kernel_ldflags=""
1026         aros_default_wbwidth=640
1027         aros_default_wbheight=480
1028         gcc_target_cpu="ppc"
1029         ;;
1031     freebsd*)
1032         aros_target_arch="freebsd"
1033         aros_target_family="unix"
1034         aros_target_cpu="i386"
1035         aros_flavour="emulation"
1036         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386"
1037         gcc_target_cpu="i386"
1039         aros_target_strip_flags="-x"
1040         ;;
1042     darwin*)
1043         aros_target_arch="darwin"
1044         aros_target_family="unix"
1045         aros_flavour="emulation"
1046         case "$target_cpu" in
1047             *i?86*)
1048                 aros_ios_platform="iPhoneSimulator"
1049                 aros_target_cpu="i386"
1050                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386"
1051                 aros_kernel_ldflags=""
1052                 aros_macosx_version="10.4"
1053                 aros_default_wbdepth=8
1054                 gcc_target_cpu="i386"
1055                 aros_object_format="elf_i386"
1056                 aros_kernel_ar_flags="-cr"
1057                 aros_target_strip_flags="-x"
1058                 kernel_tool_flags="-m32"
1059                 ;;
1060             *x86_64*)
1061                 aros_target_cpu="x86_64"
1062                 aros_object_format="elf_x86_64"
1063                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dx86_64"
1064                 aros_macosx_version="10.6"
1065                 aros_config_cflags="$aros_config_cflags -fno-omit-frame-pointer"
1066                 aros_kernel_cflags="-m64"
1067                 aros_kernel_ldflags="-m64"
1068                 aros_target_cflags="-mcmodel=large"
1069                 aros_default_wbdepth=8
1070                 aros_kernel_ar="ar"
1071                 aros_kernel_ar_flags="-cr"
1072                 aros_kernel_ld="ld"
1073                 aros_kernel_ranlib="ranlib"
1074                 ;;
1075             *ppc*)
1076                 aros_target_cpu="ppc"
1077                 aros_object_format="elf32ppc"
1078                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc"
1079                 aros_kernel_ldflags=""
1080                 aros_macosx_version="10.0"
1081                 aros_default_wbdepth=8
1082                 gcc_target_cpu="ppc"
1083                 aros_kernel_ar="ar"
1084                 aros_kernel_ar_flags="-cr"
1085                 aros_kernel_ld="ld -arch ppc"
1086                 aros_kernel_as="as -arch ppc"
1087                 aros_kernel_ranlib="ranlib -arch ppc"
1088                 aros_kernel_nm="nm -arch ppc"
1089                 aros_kernel_strip="strip -arch ppc"
1090                 kernel_tool_prefix="powerpc-apple-darwin10-"
1091                 ;;
1092             *arm*)
1093                 aros_ios_platform="iPhoneOS"
1094                 aros_target_cpu="arm"
1095                 aros_object_format="armelf_linux_eabi"
1096                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Darm"
1097                 aros_arch_libs="-laeabi"
1098                 aros_default_wbdepth=8
1099                 gcc_target_cpu="arm"
1100                 aros_kernel_ar="ar"
1101                 aros_kernel_ar_flags="-cr"
1102                 aros_kernel_ld="ld -arch arm"
1103                 aros_kernel_ranlib="ranlib -arch arm"
1104                 kernel_tool_prefix="arm-apple-darwin10-" 
1105                 export PATH="$aros_xcode_path/Platforms/$aros_ios_platform.platform/Developer/usr/bin:$PATH"
1106                 ;;
1107             *)
1108                 AC_MSG_ERROR("Unsupported target CPU for darwin hosted flavour -- $target_cpu")
1109                 ;;
1110         esac
1111         case "$aros_target_variant" in
1112             ios)
1113                 aros_ios_version="3.0"
1114                 aros_default_wbwidth=320
1115                 aros_default_wbheight=480
1116                 aros_ios_sdk="$aros_xcode_path/Platforms/$aros_ios_platform.platform/Developer/SDKs/$aros_ios_platform$aros_sdk_version.sdk"
1117                 kernel_tool_flags="$target_tool_flags -isysroot $aros_ios_sdk"
1118                 aros_kernel_includes="-isystem $aros_ios_sdk/usr/include"
1119                 need_x11=no
1120                 # This is here because it may depend on iOS or SDK version
1121                 aros_kernel_cflags="$aros_kernel_cflags -miphoneos-version-min=$aros_ios_version"
1122                 aros_kernel_ldflags="$aros_kernel_ldflags -miphoneos-version-min=$aros_ios_version"
1123                 aros_kernel_objcflags="-fobjc-abi-version=2 -fobjc-legacy-dispatch"
1124             ;;
1125             *)
1126                 aros_kernel_cflags="$aros_kernel_cflags -mmacosx-version-min=$aros_macosx_version"
1127                 aros_kernel_ldflags="$aros_kernel_ldflags -mmacosx-version-min=$aros_macosx_version"
1128             ;;
1129         esac
1130         ;;
1132     dragonfly*)
1133         aros_target_arch="dragonfly"
1134         aros_target_family="unix"
1135         aros_flavour="emulation"
1136         case "$target_cpu" in
1137             *i?86*)
1138                 aros_target_cpu="i386"
1139                 aros_object_format="elf_i386"
1140                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386 -D__DragonFly__"
1141                 ;;
1142             *x86_64*)
1143                 aros_config_cflags="$aros_config_cflags -fno-omit-frame-pointer"
1144                 aros_target_cpu="x86_64"
1145                 aros_object_format="elf_x86_64"
1146                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dx86_64 -D__DragonFly__"
1147                 ;;
1148             *)
1149                 AC_MSG_ERROR("Unknown CPU for DragonFly -- $target_cpu")
1150                 ;;
1151         esac
1152         ;;
1154     netbsd*)
1155         aros_target_arch="netbsd"
1156         aros_target_family="unix"
1157         case "$target_cpu" in
1158             *m68k*)
1159                 aros_target_cpu="m68k"
1160                 aros_object_format="m68kelf"
1161                 aros_flavour="emulcompat"
1162                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -D__mc68000 -D__NetBSD__"
1163                 gcc_target_cpu="mc68000"
1164                 ;;
1165             *i?86*)
1166                 aros_target_cpu="i386"
1167                 aros_object_format="elf_i386"
1168                 aros_flavour="emulation"
1169                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386 -D__NetBSD__"
1170                 aros_default_wbdepth=8
1171                 gcc_target_cpu="i386"
1172                 ;;
1173             *)
1174                 AC_MSG_ERROR("Unknown CPU for NetBSD -- $target_cpu")
1175                 ;;
1176         esac
1177         aros_target_genmap="-Wl,-M -Xlinker >"
1178         aros_flavour="emulation"
1179         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386"
1180         ;;   
1182     openbsd*)
1183         aros_target_arch="openbsd"
1184         aros_target_family="unix"
1185         case "$target_cpu" in
1186             *i?86*)
1187                 aros_target_cpu="i386"
1188                 aros_object_format="elf_i386"
1189                 aros_flavour="emulation"
1190                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386 -D__OpenBSD__"
1191                 gcc_target_cpu="i386"
1192                 ;;
1193             *)
1194                 AC_MSG_ERROR("Unknown CPU for OpenBSD -- $target_cpu")
1195                 ;;
1196         esac
1197         aros_target_genmap="-Wl,-M -Xlinker >"
1198         aros_target_nm_flags="-u"
1199         aros_flavour="emulation"
1200         ;;
1202     solaris*)
1203         aros_target_arch="solaris"
1204         aros_target_family="unix"
1205         case "$target_cpu" in
1206            *i?86*)
1207                aros_target_cpu="i386"
1208                aros_object_format="elf_i386"
1209                aros_flavour="emulation"
1210                aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386 -D__Solaris__"
1211                aros_default_wbdepth=8
1212                gcc_target_cpu="i386"
1213                ;;
1214             *sparc*)
1215                 aros_target_cpu="sparc"
1216                 aros_object_format="elf_sparc"
1217                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dsparc -D__Solaris__"
1218                 gcc_target_cpu="sparc"
1219                 ;;
1220             *)
1221                 AC_MSG_ERROR("Unknown CPU for Solaris -- $target_cpu")
1222                 ;;
1223         esac
1224         aros_config_cflags="$aros_config_cflags -D$aros_target_cpu"
1225         aros_flavour="emulation"
1226         ;;
1228     morphos*)
1229         aros_target_arch="morphos"
1230         aros_shared_default="no"
1231         aros_target_cpu="ppc"
1232         aros_object_format="elf_ppc"
1233         aros_flavour="nativecompat"
1234         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc"
1235         gcc_target_cpu="ppc"
1236         ;;
1238     sam440)
1239         aros_target_arch="sam440"
1240         aros_shared_default="no"
1241         aros_target_cpu="ppc"
1242         aros_object_format="elf32ppc"
1243         aros_flavour="ppcnative"
1244         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc"
1245         aros_kernel_ldflags=""
1246         aros_default_wbwidth=1024
1247         aros_default_wbheight=768
1248         aros_default_wbdepth=24
1249         aros_config_cflags="$aros_config_cflags -mcpu=440fp -mno-toc -fno-asynchronous-unwind-tables"
1250         gcc_target_cpu="powerpc"
1251         ;;
1253     efika)
1254         aros_target_arch="efika"
1255         aros_shared_default="no"
1256         aros_target_cpu="arm"
1257         aros_object_format="armelf_linux_eabi"
1258         aros_flavour="standalone"
1259         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Darm"
1260         aros_kernel_ldflags=""
1261         aros_default_wbwidth=1024
1262         aros_default_wbheight=600
1263         aros_arch_libs="-laeabi"
1264         gcc_default_cpu="armv7-a"
1265         gcc_default_fpu="vfpv3"
1266         gcc_default_float_abi="softfp"
1267         aros_config_cflags="$aros_config_cflags -mtune=cortex-a8 -fno-strict-aliasing"
1268         aros_config_aflags="$aros_config_aflags -mtune=cortex-a8 -fno-strict-aliasing"
1269         ;;
1270         
1271     chrp)
1272     aros_target_arch="chrp"
1273     aros_shared_default="no"
1274     aros_target_cpu="ppc"
1275     aros_object_format="elf32ppc"
1276     aros_flavour="ppcnative"
1277     aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dppc"
1278     aros_kernel_ldflags=""
1279     aros_default_wbwidth=640
1280     aros_default_wbheight=480
1281     aros_config_cflags="$aros_config_cflags -mno-toc -fno-asynchronous-unwind-tables"    
1282     gcc_target_cpu="powerpc"
1283         case "$aros_target_variant" in
1284             efika)
1285             aros_config_cflags="$aros_config_cflags -DBIG_ENDIAN_OHCI=1 -mcpu=603e"
1286             ;;
1287         esac
1288     ;;
1290     amiga*)
1291         aros_target_arch="amiga"
1292         aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -D_AMIGA -DAMIGA"
1293         aros_shared_default="no"
1295         case "$target_cpu" in
1296             *m68k*)
1297                 AC_ARG_ENABLE(amigaos_compliance,AC_HELP_STRING([--enable-amigaos-compliance=VERSION],[Enforce userspace AmigaOS compliance to a specific KickStart version (default=none).]),aros_amigaos_compliance="$enableval")
1298                 aros_enable_mmu=no
1299                 aros_target_cpu="m68k"
1300                 aros_object_format="m68kelf"
1301                 aros_flavour="standcompat"
1302                 gcc_target_cpu="m68000"
1303                 aros_config_cflags="$aros_config_cflags -fno-strict-aliasing -ffreestanding -fomit-frame-pointer -fbuiltin -Wno-volatile-register-var -Os -DNOLIBINLINE"
1304                 aros_config_aflags="$aros_config_aflags"
1305                 aros_target_strip_flags="-R.comment --strip-debug"
1306                 aros_default_wbwidth=640
1307                 aros_default_wbheight=256
1308                 aros_default_wbdepth=2
1309                 ;;
1310             *ppc*)
1311                 aros_cpu="ppc"
1312                 aros_flavour="native"
1313                 gcc_target_cpu="ppc"
1314                 ;;
1315             *)
1316                 AC_MSG_ERROR("Unknown CPU for Amiga $target_cpu")
1317                 ;;
1318         esac
1319         ;;
1321     mingw*)
1322         aros_target_arch="mingw32"
1323         aros_shared_default="no"
1324         aros_flavour="emulation"
1325         aros_shared_cflags=""
1326         need_crosstools="yes"
1327         need_dlopen="no"
1328         rescomp="windres"
1329         case "$target_cpu" in
1330             *i?86*)
1331                 aros_target_cpu="i386"
1332                 aros_object_format="elf_i386"
1333                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Di386"
1334                 aros_default_wbdepth=8
1335                 gcc_target_cpu="i386"
1337                 kernel_tool_prefix="i386-mingw32-"
1338                 ;;
1339             *x86_64*)
1340                 aros_target_cpu="x86_64"
1341                 aros_object_format="elf_x86_64"
1342                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dx86_64"
1343                 aros_config_cflags="$aros_config_cflags -fno-omit-frame-pointer"
1344                 aros_default_wbdepth=8
1345                 kernel_tool_prefix="x86_64-w64-mingw32-"
1346                 ;;
1347             *arm*)
1348                 aros_target_cpu="arm"
1349                 aros_object_format="armelf_linux_eabi"
1350                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Darm"
1351                 aros_arch_libs="-laeabi"
1352                 aros_default_wbdepth=8
1353                 gcc_target_cpu="arm"
1354                 gcc_default_float_abi="soft"
1355                 kernel_tool_prefix="arm-mingw32ce-"
1356                 aros_default_wbwidth=160
1357                 aros_default_wbheight=160
1358                 ;;
1359             *)
1360                 AC_MSG_ERROR("Unknown CPU for Mingw32 -- $target_cpu")
1361                 ;;
1362         esac
1363         if test $host_os = "cygwin"; then
1364                 aros_kernel_cflags="-mno-cygwin"
1365         fi
1366     ;;
1367     pp*)
1368         aros_target_arch="pp"
1369         aros_shared_default="no"
1370         case "$target_cpu" in
1371             *m68k*)
1372                 aros_target_cpu="m68k"
1373                 aros_object_format="m68kelf"
1374                 aros_flavour="palmnative"
1375                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dm68k"
1376                 aros_default_wbwidth=160
1377                 aros_default_wbheight=160
1378                 aros_default_wbdepth=1
1379                 aros_target_ar_flags="cru"
1380                 aros_compiler_libs="-lgcc1"
1381                 aros_shared_default=no
1382                 aros_shared_cflags="-fpic"
1383                 aros_shared_aflags=""
1384                 aros_shared_ldflags="-Wl,-rpath,./lib -shared"
1385                 aros_kernel_ldflags="-Wl,-rpath,./lib"
1386                 aros_debug_cflags="$aros_symbols_debug  $aros_messages_debug"
1387                 aros_debug_aflags=""
1388                 aros_debug_ldflags="$aros_symbols_debug"
1389                 aros_mungwall_debug="0"
1390                 aros_modules_debug="0"
1391                 gcc_target_cpu="mc68000"
1392                 ignore_undefined_symbols="-ius"
1393                 ;;
1394            *)
1395                 AC_MSG_ERROR("Unknown CPU for PalmPilot -- $target_cpu")
1396                 ;;
1397         esac
1398         ;;
1400     mac*)
1401         aros_target_arch="mac"
1402         aros_shared_default="no"
1403         case "$target_cpu" in
1404             *m68k*)
1405                 aros_target_cpu="m68k"
1406                 aros_object_format="m68kelf"
1407                 aros_flavour="mac68knative"
1408                 aros_target_mkdep="$aros_target_mkdep -D__GNUC__ -Dm68k"
1409                 aros_default_wbwidth=512
1410                 aros_default_wbheight=384
1411                 aros_default_wbdepth=8
1412                 aros_target_ar_flags="cru"
1413                 aros_compiler_libs="-lgcc1"
1414                 aros_shared_default=no
1415                 aros_shared_cflags="-fpic"
1416                 aros_shared_aflags=""
1417                 aros_shared_ldflags="-Wl,-rpath,./lib -shared"
1418                 aros_kernel_ldflags="-Wl,-rpath,./lib"
1419                 aros_debug_cflags="$aros_symbols_debug $aros_messages_debug"
1420                 aros_debug_aflags=""
1421                 aros_debug_ldflags="$aros_symbols_debug"
1422                 aros_mungwall_debug="0"
1423                 aros_modules_debug="0"
1424                 gcc_target_cpu="mc68000"
1425                 ignore_undefined_symbols="-ius"
1426                 ;;
1427            *)
1428                 AC_MSG_ERROR("Unknown CPU for Mac68k -- $target_cpu")
1429                 ;;
1430         esac
1431         ;;
1433     *)
1434         AC_MSG_ERROR([Unsupported target architecture $target])
1435         ;;
1436 esac
1438 #-----------------------------------------------------------------------------
1439 crosstools_guess=yes
1441 AC_MSG_CHECKING([Kernel toolchain prefix])
1442 AC_ARG_WITH(kernel-toolchain-prefix,AC_HELP_STRING([--with-kernel-toolchain-prefix=...],[Specify crosscompile toolchain prefix for kernel objects]),[kernel_tool_prefix="$withval"])
1443 AC_MSG_RESULT($kernel_tool_prefix)
1445 AC_MSG_CHECKING([ELF toolchain prefix])
1446 AC_ARG_WITH(elf-toolchain-prefix,AC_HELP_STRING([--with-elf-toolchain-prefix=...],[Specify crosscompile toolchain prefix to wrap for AROS objects]),[elf_tool_prefix="$withval"
1447                                                  crosstools_guess=no])
1448 AC_MSG_RESULT($elf_tool_prefix)
1450 AC_MSG_CHECKING([AROS toolchain prefix])
1451 AC_ARG_WITH(aros-toolchain,AC_HELP_STRING([--with-aros-toolchain=PREFIX],[Specify prebuilt AROS toolchain]),[aros_tool_prefix="$withval"
1452                 crosstools_guess=no])
1453 if test "$aros_tool_prefix" = "yes" ; then
1454     aros_tool_prefix=$aros_target_cpu-aros-
1456 AC_MSG_RESULT($aros_tool_prefix)
1458 #-----------------------------------------------------------------------------
1459 #   Checking if we should build crosstools..
1460 AC_MSG_CHECKING([whether to build crosstools])
1461 AC_ARG_ENABLE(crosstools,AC_HELP_STRING([--disable-crosstools],[Do not build cross-compiler toolchain]),crosstools="$enableval",crosstools="$crosstools_guess")
1462 AC_MSG_RESULT($crosstools)
1464 if test "${crosstools}" = "yes"; then
1465     if test "${crosstools_guess}" = "no"; then
1466         AC_MSG_ERROR([Cannot build external toolchain if an external ELF or AROS toolchain is specified])
1467     fi
1470 AC_MSG_CHECKING([where to install the crosstools binaries])
1471 AC_ARG_WITH(aros-toolchain-install,AC_HELP_STRING([--with-aros-toolchain-install=DIR],[Where to install or search for cross tools binaries]),[aros_toolchain_install=$withval])
1472 if test "x$aros_toolchain_install" = "x"; then
1473     AROS_CROSSTOOLSDIR="$AROS_BUILDDIR_UNIX/bin/$aros_host_arch-$aros_host_cpu/tools/crosstools"
1474 else
1475     AROS_CROSSTOOLSDIR="$aros_toolchain_install"
1476     PATH="$AROS_CROSSTOOLSDIR:$PATH"
1478 AC_MSG_RESULT($AROS_CROSSTOOLSDIR)
1481 # Now process extra architecture-specific options.
1482 # Currently this is implemented only for ARM. We can specify which minimum CPU and FPU to use,\
1483 # as well as floating-point ABI.
1484 case "$aros_target_cpu" in
1485 arm)
1486     dnl ARM defaults are: armv6 + vfp (unless overriden in per-target section above)
1487     if test "$gcc_default_cpu" = ""; then
1488         gcc_default_cpu="armv6"
1489     fi
1490     if test "$gcc_default_fpu" = ""; then
1491         gcc_default_fpu="vfp"
1492     fi
1493     if test "$gcc_default_float_abi" = ""; then
1494         gcc_default_float_abi="softfp"
1495     fi
1497     AC_MSG_CHECKING([Which minimum CPU to use])
1498     AC_ARG_WITH(cpu,AC_HELP_STRING([--with-cpu=<spec>],[Specify minumum CPU (default=$gcc_default_cpu).]),aros_gcc_cpu="$withval",aros_gcc_cpu=$gcc_default_cpu)
1499     AC_MSG_RESULT($aros_gcc_cpu)
1501     AC_MSG_CHECKING([Which minimum FPU to use])
1502     AC_ARG_WITH(fpu,AC_HELP_STRING([--with-fpu=<spec>],[Specify minumum FPU (default=$gcc_default_fpu).]),aros_gcc_fpu="$withval",aros_gcc_fpu=$gcc_default_fpu)
1503     AC_MSG_RESULT($aros_gcc_fpu)
1505     AC_MSG_CHECKING([Which floating point ABI to use])
1506     AC_ARG_WITH(float,AC_HELP_STRING([--with-float=<spec>],[Specify floating point ABI (default=$gcc_default_float_abi).]),aros_gcc_float_abi="$withval",aros_gcc_float_abi=$gcc_default_float_abi)
1507     AC_MSG_RESULT($aros_gcc_float_abi)
1509     aros_config_cflags="$aros_config_cflags -marm -mthumb-interwork -march=$aros_gcc_cpu -mfpu=$aros_gcc_fpu -mfloat-abi=$aros_gcc_float_abi -fno-asynchronous-unwind-tables -fno-exceptions"
1510     aros_config_aflags="$aros_config_aflags -marm -mthumb-interwork -march=$aros_gcc_cpu -mfpu=$aros_gcc_fpu -mfloat-abi=$aros_gcc_float_abi -fno-asynchronous-unwind-tables -fno-exceptions"
1511     ;;
1512 esac
1514 # Some formats need custom ELF specs.
1515 # For example for x86_64 it is needed in order for -m32 switch to work correctly.
1516 if test -f $SRCDIR/config/${aros_object_format}-specs.in; then
1517     elf_specs_in=config/${aros_object_format}-specs.in
1518 else
1519     elf_specs_in=config/elf-specs.in
1522 AC_MSG_CHECKING([what specific AROS gcc version to use])
1523 AC_ARG_WITH(aros-gcc,AC_HELP_STRING([--with-aros-gcc=VERSION],[Use aros-gcc-VERSION for building AROS]),aros_gcc_version="-$withval",aros_gcc_version="")
1524 AC_MSG_RESULT($aros_gcc_version)
1526 # Some compilers (ppc-elf-gcc is known to) have CPU defines in specs
1527 # Since we override specs, we may need to put these defines there
1528 if test "$gcc_target_cpu" != ""; then
1529     gcc_target_cpu="-D__${gcc_target_cpu}__"
1532 AC_MSG_CHECKING([where to download sourcecode for external ports])
1533 AC_ARG_WITH(portssources,AC_HELP_STRING([--with-portssources=DIR],[Where to download sourcecode for external ports]),with_portssrcdir=$withval,with_portssrcdir="default")
1534 if test "$with_portssrcdir" = "default"; then
1535     AROS_PORTSSRCDIR="$AROS_BUILDDIR_UNIX/bin/Sources"
1536 else
1537     AROS_PORTSSRCDIR="$with_portssrcdir"
1539 AC_MSG_RESULT($AROS_PORTSSRCDIR)
1541 AC_MSG_CHECKING([which bootloader to use])
1542 AC_ARG_WITH(bootloader,AC_HELP_STRING([--with-bootloader=NAME],[Use a specific bootloader]),target_bootloader=$withval,target_bootloader=$target_bootloader)
1543 if test "$target_bootloader" = "none"; then
1544     aros_target_bootloader=""
1545 else
1546     aros_target_bootloader="$target_bootloader"
1548 AC_MSG_RESULT($target_bootloader)
1550 AC_MSG_CHECKING([which icon-set to use])
1551 AC_ARG_WITH(iconset,AC_HELP_STRING([--with-iconset=NAME],[Use a specific Icon-set (default=Gorilla).]),target_iconset=$withval,target_iconset="default")
1552 if test "$target_iconset" = "default"; then
1553     aros_target_iconset="Gorilla"
1554     target_iconset="default (Gorilla)"
1555 else
1556     aros_target_iconset="$target_iconset"
1558 AC_MSG_RESULT($target_iconset)
1560 AC_MSG_CHECKING([which GUI Theme to use])
1561 AC_ARG_WITH(theme,AC_HELP_STRING([--with-theme=NAME],[Use a specific GUI Theme]),target_guitheme=$withval,target_guitheme="default")
1562 if test "$target_guitheme" = "default"; then
1563     aros_target_guitheme="Ice"
1564 else
1565     aros_target_guitheme="$target_guitheme"
1567 AC_MSG_RESULT($aros_target_guitheme)
1569 # Find out if we are cross-compiling (i.e. if we can't use the host compiler
1570 # for target code)
1571 cross_compiling=no
1573 dnl The first case is simple. If we are compiling for another CPU, we are cross-compiling for sure
1574 if test "$aros_host_cpu" != "$aros_target_cpu" ; then
1575     cross_compiling=yes
1578 dnl x86-64 toolchains can also produce i386 binaries, given -m32 flag.
1579 dnl The flag itself is given in per-target section, because some targets require to pass it
1580 dnl in a different manner, otherwise some tests fail.
1581 dnl TODO: Justify this.
1582 if test "$aros_host_cpu" == "x86_64" ; then
1583     if test "$aros_target_cpu" == "i386" ; then
1584         cross_compiling=no
1585     fi
1588 if test "x-$aros_flavour" = "x-emulation" -o "x-$aros_flavour" = "x-emulcompat" ; then
1589     dnl For a hosted build we are cross-compiling if host OS differs from build OS.
1590     dnl TODO: This might get a little bit more tricky if we ever cross-compile ARM-Android-hosted
1591     dnl AROS on ARM Linux, or even vice versa (Linux-hosted ARM AROS building on ARM Android).
1592     dnl ARM ABIs of Linux and Android are not compatible (despite very close), so host_cc can't be
1593     dnl used to build bootstrap for target arch in either case.
1594     dnl For us Android is not a separate OS, but a variant of Linux, so both systems will be
1595     dnl identified as 'linux'. If this ever involves, we'll have to implement some additional check,
1596     dnl perhaps introducing aros_host_variant
1597     if test "$aros_host_arch" != "$aros_target_arch" ; then
1598         cross_compiling=yes
1599     fi
1600 else
1601     dnl For a native build we only care if our host_cc can produce static ELF files. If so, we can use
1602     dnl it as kernel_cc. If not, (e. g. we are on Windows or Darwin), we need a crosscompiler.
1603     if test "$host_cc_elf" = "no" ; then
1604         cross_compiling=yes
1605     fi
1608 if test "$cross_compiling" = "no" ; then
1609     kernel_tool_prefix=""
1610     if test "$host_cc_elf" = "yes" ; then
1611         elf_tool_prefix=""
1612     fi
1615 #######################################################################
1616 ## Compute what toolchains to use, and their paths                   ##
1617 #######################################################################
1619 # This takes, as input:
1620 #   crosstools             {yes,no}
1621 #   kernel_tool_version    {"",[version]}
1622 #   aros_gcc_version       {"",[version]}
1623 #   kernel_tool_prefix     {none,[some-arch-os-]}
1624 #   aros_tool_prefix       ${target_cpu}-aros-
1626 # The output is
1627 #   aros_kernel_{cpp,cc,ar,ld,as,ranlib,nm,strip}
1628 #        Where the 'kernel' binaries are located
1629 #   orig_target_{cpp,cc,ar,ld,as,ranlib,nm,strip}
1630 #        Where the 'target' binaries are located
1631 #        (not the symlink farm - that is aros_target_*!)
1633 # The rules are:
1634 #   if crosstools then
1635 #      if kernel_tools_prefix = "no-kernel-prefix-"
1636 #          aros_kernel_* = crosstools cc paths
1637 #          aros_kernel_cc = elf cc wrapper around crosstools cc
1638 #      else
1639 #          VALIDATE(${kernel_tools_prefix}*)
1640 #          aros_kernel_* = ${kernel_tools_prefix}*
1641 #          if ${kernel_tools_prefix}cc is an AROS gcc
1642 #              aros_kernel_cc = ${kernel_tools_prefix}cc
1643 #          else
1644 #              aros_kernel_cc = elf cc wrapper around ${kernel_tools_prefix}cc
1645 #          fi
1646 #      fi
1648 #      orig_target_* = aros built crosstools
1649 #      orig_target_cc = elf cc wrapper around crosstools cc
1650 #   else
1651 #      VALIDATE(${kernel_tools_prefix}*)
1653 #      orig_target_* = aros_kernel_*
1654 #      if aros_kernel_cc is an AROS gcc
1655 #          orig_target_cc = aros_kernel_cc
1656 #      else
1657 #          orig_target_cc = aros cc wrapper around aros_kernel_cc
1658 #      fi
1659 #   fi
1661 target_tool_prefix="${target_cpu}-aros-"
1663 AC_MSG_CHECKING([which kernel tools])
1664 AC_MSG_RESULT([$kernel_tool_prefix]);
1666 if test "$kernel_tool_prefix" = "none" ; then
1667     dnl ELF wrapper can be used only for native bootstrap
1668     if test "x-$aros_flavour" = "x-emulation" -o "x-$aros_flavour" = "x-emulcompat" ; then
1669         AC_MSG_ERROR([--with-kernel-toolchain-prefix= is required for this arch])
1670     fi
1671 else
1672     # Kernel tools required - find them
1673     # Note that 'normally', aros_kernel_* overrides will
1674     # empty, unless specified in the per-arch sections above.
1675     if test "x$aros_kernel_cpp" = "x"; then
1676         aros_kernel_cpp=${kernel_tool_prefix}cpp
1677     fi
1678     AROS_TOOL_KERNEL(aros_kernel_cpp,cpp,$aros_kernel_cpp${kernel_tool_version})
1679     AROS_REQUIRED(cpp,$aros_kernel_cpp)
1680     if test "x$aros_kernel_cc" = "x"; then
1681         aros_kernel_cc=${kernel_tool_prefix}gcc
1682     fi
1683     AROS_TOOL_KERNEL(aros_kernel_cc,cc,$aros_kernel_cc${kernel_tool_version})
1684     AROS_REQUIRED(cc,$aros_kernel_cc)
1685     if test "x$aros_kernel_cxx" = "x"; then
1686         aros_kernel_cxx=${kernel_tool_prefix}g++
1687     fi
1688     AROS_TOOL_KERNEL(aros_kernel_cxx,cxx,$aros_kernel_cxx${kernel_tool_version})
1689     # If it's set, make sure it's really there
1690     if test "x$aros_kernel_cxx" != "x" ; then
1691         AROS_REQUIRED(cxx,$aros_kernel_cxx)
1692     fi
1693     AROS_TOOL_KERNEL(aros_kernel_ld,ld,$aros_kernel_ld)
1694     AROS_REQUIRED(ld,$aros_kernel_ld)
1695     AROS_TOOL_KERNEL(aros_kernel_as,as,$aros_kernel_as)
1696     AROS_REQUIRED(as,$aros_kernel_as)
1697     AROS_TOOL_KERNEL(aros_kernel_ar,ar,$aros_kernel_ar)
1698     AROS_REQUIRED(ar,$aros_kernel_ar)
1699     AROS_TOOL_KERNEL(aros_kernel_ranlib,ranlib,$aros_kernel_ranlib)
1700     AROS_REQUIRED(ranlib,$aros_kernel_ranlib)
1701     AROS_TOOL_KERNEL(aros_kernel_nm,nm,$aros_kernel_nm)
1702     AROS_REQUIRED(nm,$aros_kernel_nm)
1703     AROS_TOOL_KERNEL(aros_kernel_strip,strip,$aros_kernel_strip)
1704     AROS_REQUIRED(strip,$aros_kernel_strip)
1706     # Objcopy and objdump are not required for the kernel
1707     # toolchain on many architectures.
1708     # So we'll look for them, but not make them strictly required.
1709     AROS_TOOL_KERNEL(aros_kernel_objcopy,objcopy,$aros_kernel_objcopy)
1710     AROS_TOOL_KERNEL(aros_kernel_objdump,objdump,$aros_kernel_objdump)
1711     if test "x${crosstools}" != "xyes" ; then
1712         AROS_REQUIRED(objcopy,$aros_kernel_objcopy)
1713         AROS_REQUIRED(objdump,$aros_kernel_objdump)
1714     fi
1717 AC_MSG_CHECKING([which target tools to use])
1718 if test "$crosstools" = "yes"; then
1719     AC_MSG_RESULT([$target_tool_prefix])
1720     # We are are building AROS crosstools
1721     tmp_tool_prefix="$AROS_CROSSTOOLSDIR/${target_tool_prefix}"
1722     orig_target_cc="${tmp_tool_prefix}gcc${aros_gcc_version}"
1723     orig_target_cxx="${tmp_tool_prefix}g++${aros_gcc_version}"
1724     orig_target_cpp="${tmp_tool_prefix}cpp"
1725     orig_target_ld="${tmp_tool_prefix}ld"
1726     orig_target_as="${tmp_tool_prefix}as"
1727     orig_target_ar="${tmp_tool_prefix}ar"
1728     orig_target_ranlib="${tmp_tool_prefix}ranlib"
1729     orig_target_nm="${tmp_tool_prefix}nm"
1730     orig_target_strip="${tmp_tool_prefix}strip"
1731     orig_target_objcopy="${tmp_tool_prefix}objcopy"
1732     orig_target_objdump="${tmp_tool_prefix}objdump"
1733 else
1734     # Determine whether AROS or ELF tools should be used
1735     if test "$aros_tool_prefix" = "none"; then
1736         aros_tool_prefix="${elf_tool_prefix}"
1737         crosstools_cxx_target=tools-crosstools
1738     fi
1740     AC_MSG_RESULT([$aros_tool_prefix])
1741     # We are *not* building AROS crosstools - use the AROS or ELF tools
1742     AROS_TOOL_TARGET(orig_target_cpp,cpp,${aros_tool_prefix}cpp)
1743     AROS_REQUIRED(cpp,$orig_target_cpp)
1744     AROS_TOOL_TARGET(orig_target_cc,gcc,${aros_tool_prefix}gcc)
1745     AROS_REQUIRED(cc,$orig_target_cc)
1746     if test "x${crosstools_cxx_target}" = "x" ; then
1747         AROS_TOOL_TARGET(orig_target_cxx,g++,${aros_tool_prefix}g++)
1748         AROS_REQUIRED(cxx,$orig_target_cxx)
1749     fi
1750     AROS_TOOL_TARGET(orig_target_ld,gcc,${aros_tool_prefix}ld)
1751     AROS_REQUIRED(ld,$orig_target_ld)
1752     AROS_TOOL_TARGET(orig_target_as,as,${aros_tool_prefix}as)
1753     AROS_REQUIRED(as,$orig_target_as)
1754     AROS_TOOL_TARGET(orig_target_ar,ar,${aros_tool_prefix}ar)
1755     AROS_REQUIRED(ar,$orig_target_ar)
1756     AROS_TOOL_TARGET(orig_target_ranlib,ar,${aros_tool_prefix}ranlib)
1757     AROS_REQUIRED(ranlib,$orig_target_ranlib)
1758     AROS_TOOL_TARGET(orig_target_nm,nm,${aros_tool_prefix}nm)
1759     AROS_REQUIRED(nm,$orig_target_nm)
1760     AROS_TOOL_TARGET(orig_target_strip,strip,${aros_tool_prefix}strip)
1761     AROS_REQUIRED(strip,$orig_target_strip)
1762     AROS_TOOL_TARGET(orig_target_objcopy,objcopy,${aros_tool_prefix}objcopy)
1763     AROS_REQUIRED(objcopy,$orig_target_objcopy)
1764     AROS_TOOL_TARGET(orig_target_objdump,objdump,${aros_tool_prefix}objdump)
1765     AROS_REQUIRED(objdump,$orig_target_objdump)
1768 if test "$kernel_tool_prefix" = "none" ; then
1769     # No kernel tools specified
1770     # Assume target tools == kernel tools with ELF wrapper
1771     aros_kernel_cc=$orig_target_cc
1772     aros_kernel_cxx=$orig_target_cxx
1773     aros_kernel_cpp=$orig_target_cpp
1774     aros_kernel_ld=$orig_target_ld
1775     aros_kernel_as=$orig_target_as
1776     aros_kernel_ar=$orig_target_ar
1777     aros_kernel_ranlib=$orig_target_ranlib
1778     aros_kernel_nm=$orig_target_nm
1779     aros_kernel_strip=$orig_target_strip
1780     aros_kernel_objcopy=$orig_target_objcopy
1781     aros_kernel_objdump=$orig_target_objdump
1782     use_kernel_cc_wrapper=yes
1785 # At this point, all aros_kernel_* and aros_target_* 
1786 # tools should be set up correctly
1788 CC="$aros_kernel_cc $kernel_tool_flags"
1789 CPP="$aros_kernel_cpp"
1791 #-----------------------------------------------------------------------------
1793 # Disable pointer-signedness warnings if the compiler recognises the option
1795 AC_MSG_CHECKING([whether ${CC} accepts -Wno-pointer-sign])
1796 save_cflags="$CFLAGS"
1797 if test "$crosstools" != "yes" ; then
1798     CFLAGS="$CFLAGS -Wno-pointer-sign"
1799     AC_TRY_COMPILE(,, use_no_sign_warning="yes", use_no_sign_warning="no")
1800 else
1801     # we do know it is supported for the smallest version of gcc we are going to build
1802     # we assume it's also supported by later versions
1803     use_no_sign_warning=yes
1805 AC_MSG_RESULT($use_no_sign_warning)
1806 if test "x-$use_no_sign_warning" = "x-yes" ; then
1807     aros_config_cflags="$aros_config_cflags -Wno-pointer-sign"
1809 CFLAGS="$save_cflags"
1811 #-----------------------------------------------------------------------------
1813 # Find all the tools we need to compile. This could be cross-compiling
1814 # though! If that is the case we use the GNU form of the target and
1815 # simply add this to the front of the binary name. This is rather simple,
1816 # but it should work under most circumstances.
1818 # The default tools are to use the same as the host, but only if the
1819 # host and target CPU are the same. With GCC this is normally enough.
1822 aros_cc_pre=""
1823 aros_shared_ld="$aros_host_ld"
1825 aros_target_mkdep="$aros_host_mkdep"
1827 # The default tools executables to be linked to.
1828 if test "$rescomp" != ""; then
1829     AC_PATH_PROG(aros_kernel_rescomp,${kernel_tool_prefix}$rescomp)
1830     AROS_REQUIRED($rescomp,$aros_kernel_rescomp)
1833 # Set up the sources for the symlink farm
1834 if test "$crosstools" = "yes"; then
1835     crosstools_target=tools-crosstools
1838 aros_kernel_cc="$aros_kernel_cc $kernel_tool_flags"
1839 aros_kernel_ar="$aros_kernel_ar $aros_kernel_ar_flags"
1842 aros_hostcfg_dir="bin/${aros_host_arch}-${aros_host_cpu}/gen/config"
1843 aros_targetcfg_dir="bin/${aros_target_arch}-${aros_target_cpu}${aros_target_suffix}/gen/config"
1844 aros_inc_dir="bin/${aros_target_arch}-${aros_target_cpu}${aros_target_suffix}/AROS/Development/include/aros"
1845 aros_gendir="bin/${aros_target_arch}-${aros_target_cpu}${aros_target_suffix}/gen"
1846 aros_geninc_dir="bin/${aros_target_arch}-${aros_target_cpu}${aros_target_suffix}/gen/include/aros"
1847 aros_tools_dir="bin/${aros_host_arch}-${aros_host_cpu}/tools"
1848 aros_scripts_dir="bin/${aros_target_arch}-${aros_target_cpu}${aros_target_suffix}/gen/scripts"
1850 # aros_cc_pre is a variable that is added to the front of the compiler name
1851 # in the generated aros-gcc shell script. We need this to enable the cache
1852 # to work across cleaned builds. Also, support DISTCC using the correct
1853 # environment variable.
1856 if test "x${DISTCC}" != "x" ; then
1857     if test "x${CCACHE}" != "x" ; then
1858         aros_cc_pre="env CCACHE_PREFIX=${DISTCC} ${CCACHE} "
1859     else
1860         aros_cc_pre="${DISTCC} "
1861     fi
1862 else
1863     if test "x${CCACHE}" != "x" ; then
1864         aros_cc_pre="${CCACHE} "
1865     fi
1868 prefix="${PWD}/${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-aros-"
1870 AC_SUBST(aros_target_nostdinc_cflags,-nostdinc)
1871 AC_SUBST(aros_target_nostartup_ldflags,-nostartfiles)
1872 AC_SUBST(aros_target_nix_ldflags,-nix)
1873 AC_SUBST(aros_target_detach_ldflags,-detach)
1874 AC_SUBST(aros_target_nostdlib_ldflags,-nostdlib)
1876 # Target tools
1877 if test "$crosstools" != "yes"; then
1878     if test "$GCC" = "yes"; then
1879         aros_target_cc_path=`$orig_target_cc -print-search-dirs | grep "programs: =" | cut -c 12-`
1880     fi
1881 else
1882     # We do not know which gcc version we are going to build and what we need to know
1883     # here is different for different versions so this will be set later during the
1884     # build of crosstools.
1885     aros_target_cc_path=@aros_target_cc_path@
1887 aros_target_cpp="${prefix}cpp"
1888 aros_target_cc="${prefix}gcc"
1889 aros_target_cxx="${prefix}g++"
1890 aros_target_as="${prefix}as"
1891 aros_target_ld="${prefix}ld"
1892 aros_target_ar="${prefix}ar $aros_target_ar_flags"
1893 aros_target_objcopy="${prefix}objcopy"
1894 aros_target_objdump="${prefix}objdump"
1895 aros_target_ranlib="${prefix}ranlib $aros_target_ranlib_flags"
1896 aros_target_nm="${prefix}nm $aros_target_nm_flags"
1897 aros_target_strip="${prefix}strip"
1898 aros_plain_nm="${prefix}nm"
1899 aros_plain_ar="${prefix}ar"
1901 AC_ARG_ENABLE(includes,
1902 AC_HELP_STRING([--enable-includes=dir],[Alternative system include directory]),
1903 [aros_target_incl=$enable_includes], [aros_target_incl=`$aros_kernel_cc -print-sysroot`/`$aros_kernel_cc --print-sysroot-headers-suffix 2>/dev/null || echo usr/include`])
1905 if test "$aros_kernel_includes" = ""; then
1906     if test "x-$aros_flavour" = "x-emulation" -o "x-$aros_flavour" = "x-emulcompat" ; then
1907         aros_kernel_includes="-isystem $aros_target_incl"
1908     fi
1911 if test "$aros_kernel_includes" != "" ; then
1912     dnl find out about the kernel cc's include path
1913     AC_MSG_CHECKING([for the kernel compiler's include path])
1914     if test "$aros_kernel_cc_includes" = "" ; then
1915         # Try to guess where the directory is.
1916         aros_kernel_cc_includes=`dirname \`${aros_kernel_cc} ${aros_kernel_cflags} -print-libgcc-file-name\``/include
1917         if test -d $aros_kernel_cc_includes; then
1918             # Check if there is also an include-fixed directory and add it
1919             # to kernel compiler's include path as it may contain some of
1920             # the headers we need.
1921             if test -d "$aros_kernel_cc_includes"-fixed; then
1922                 aros_kernel_cc_includes+=" -isystem $aros_kernel_cc_includes"-fixed
1923             fi
1924             # Check for specific includes directory. Neede for Ubuntu 11.10
1925             if test -d "/usr/include/i386-linux-gnu"; then
1926                 aros_kernel_cc_includes+=" -isystem /usr/include/i386-linux-gnu"
1927             fi
1928         else
1929             # The directory doesn't exist, we need to do some more work.
1930             aros_kernel_cc_includes=${PWD}/${aros_gendir}/cc_include
1932             # These are the headers we're looking for.
1933             headers="limits.h mmintrin.h stdbool.h syslimits.h float.h \
1934                      stddef.h xmmintrin.h iso646.h stdarg.h unwind.h   \
1935                      zutil.h stdint.h"
1937             dirs=
1938             for h in $headers; do
1939                 # Which other headers are needed by each of the above?
1940                 deps=$(echo "#include <$h>" | \
1941                        $aros_kernel_cc -E -M - 2>/dev/null | \
1942                        sed 's/^.*://; s/\\$/ /g; s/[[ \t]]\+/ /g')
1944                 # Copy all the needed headers to a directory beneath gendir.
1945                 for d in $deps; do
1946                     h=$(basename $d)
1947                     dir=${aros_kernel_cc_includes}$(echo $(dirname $d) | \
1948                                                 sed -n "s,^.*/include\(/.*\),\1,p")
1949                     ! test -d $dir && mkdir -p $dir
1950                     ! test -f $dir/$h && { cp $d $dir; chmod u+w $dir/$h; }
1951                 done
1952             done            
1953         fi
1954     fi
1955     AC_MSG_RESULT($aros_kernel_cc_includes)
1956     # Adding -nostdinc to kernel includes as they are always used together.
1957     aros_kernel_includes="$aros_kernel_includes $aros_target_nostdinc_cflags -isystem $aros_kernel_cc_includes"
1960 if test "$crosstools" != "yes"; then
1961     dnl find out about the target cc's include path
1962     AC_MSG_CHECKING([for the target compiler's include path])
1963     if test "$aros_target_cc_includes" = "" ; then
1964         #try to guess where the directory is
1965         aros_target_cc_includes=`dirname \`${orig_target_cc} -print-libgcc-file-name\``/include
1966         if ! test -d $aros_target_cc_includes; then
1967             #the directory doesn't exist, we need to do some more work
1968             aros_target_cc_includes=${PWD}/${aros_gendir}/cc_include
1969         
1970             #these are the headers we're looking for
1971             headers="limits.h mmintrin.h stdbool.h syslimits.h float.h \
1972                     stddef.h xmmintrin.h iso646.h stdarg.h unwind.h   \
1973                     zutil.h"
1975             dirs=
1976             for h in $headers; do
1977                 #which other headers each of the above headers needs?
1978                 deps=$(echo "#include <$h>" | \
1979                     $orig_target_cc -E -M - 2>/dev/null | \
1980                     sed 's/^.*://; s/\\$/ /g; s/[[ \t]]\+/ /g')
1981             
1982                 #copy all the needed headers to a directory beneath gendir
1983                 for d in $deps; do
1984                     h=$(basename $d)
1985                     dir=${aros_target_cc_includes}$(echo $(dirname $d) | \
1986                                                 sed -n "s,^.*/include\(/.*\),\1,p")
1987                     ! test -d $dir && mkdir -p $dir
1988                     ! test -f $dir/$h && { cp $d $dir; chmod u+w $dir/$h; }
1989                 done
1990             done
1991         fi
1992     fi
1993     AC_MSG_RESULT($aros_target_cc_includes)
1994 else
1995     # We do not know which gcc version we are going to build and what we need to know
1996     # here is different for different versions so this will be set later during the
1997     # build of crosstools.
1998     aros_target_cc_includes=@aros_target_cc_includes@
2002 # For GCC < 4.0 -I- is used for giving the search path for '#include "..."'
2003 # On GCC >= 4.0 -iquote should be used
2006 save_cc="$CC"
2007 save_cflags="$CFLAGS"
2008 CFLAGS="-iquote."
2009 AC_MSG_CHECKING([whether ${CC} accepts -iquote])
2010 if test "x-$crosstools" != "x-yes"; then
2011     AC_TRY_COMPILE(,, has_iquote="yes", has_iquote="no")
2012 else
2013     # we do know it is supported for the smallest version of gcc we are going to build
2014     # we assume it's also supported by later versions
2015     has_iquote=yes
2017 AC_MSG_RESULT($has_iquote)
2018 if test "x-$has_iquote" = "x-yes" ; then
2019     host_cflags_iquote=-iquote
2020     host_cflags_iquote_end=
2021 else
2022     host_cflags_iquote=-I
2023     host_cflags_iquote_end=-I-
2025 kernel_cflags_iquote=$host_cflags_iquote
2026 kernel_cflags_iquote_end=$host_cflags_iquote_end
2027 if test "x-$cross_compiling" = "x-yes"; then
2028     CC="$aros_kernel_cc"
2029     AC_MSG_CHECKING([whether ${CC} accepts -fno-stack-protector])
2030     if test "x-$crosstools" != "x-yes"; then
2031         AC_TRY_COMPILE(,, use_no_stack_protector="yes", use_no_stack_protector="no")
2032     else
2033         # we do know it is supported for the smallest version of gcc we are going to build
2034         # we assume it's also supported by later versions
2035         use_no_stack_protector=yes
2036     fi
2037     AC_MSG_RESULT($use_no_stack_protector)
2038     AC_MSG_CHECKING([whether ${CC} accepts -iquote])
2039     if test "x-$crosstools" != "x-yes"; then
2040         AC_TRY_COMPILE(,, has_iquote="yes", has_iquote="no")
2041     else
2042         # we do know it is supported for the smallest version of gcc we are going to build
2043         # we assume it's also supported by later versions
2044         has_iquote=yes
2045     fi
2046     AC_MSG_RESULT($has_iquote)
2047     if test "x-$has_iquote" = "x-yes" ; then
2048         kernel_cflags_iquote=-iquote
2049         kernel_cflags_iquote_end=
2050     else
2051         kernel_cflags_iquote=-I
2052         kernel_cflags_iquote_end=-I-
2053     fi
2055 aros_cflags_iquote=$kernel_cflags_iquote
2056 aros_cflags_iquote_end=$kernel_cflags_iquote_end
2057 if test "$orig_target_cc" != "$aros_kernel_cc"; then
2058     CC="$orig_target_cc"
2059     AC_MSG_CHECKING([whether ${CC} accepts -iquote])
2060     if test "x-$crosstools" != "x-yes"; then
2061         AC_TRY_COMPILE(,, has_iquote="yes", has_iquote="no")
2062     else
2063         # we do know it is supported for the smallest version of gcc we are going to build
2064         # we assume it's also supported by later versions
2065         has_iquote=yes
2066     fi
2067     AC_MSG_RESULT($has_iquote)
2068     if test "x-$has_iquote" = "x-yes" ; then
2069         aros_cflags_iquote=-iquote
2070         aros_cflags_iquote_end=
2071     else
2072         aros_cflags_iquote=-I
2073         aros_cflags_iquote_end=-I-
2074     fi
2076 if test "x-$use_no_stack_protector" = "x-yes" ; then
2077     aros_kernel_cflags="$aros_kernel_cflags -fno-stack-protector"
2081 #-----------------------------------------------------------------------------
2083 # Check if the target compiler supports some options used for delinting:
2084 #  -Wunused-but-set-variable
2085 #  -Warray-bounds
2086 #  -Wenum-compare
2087 #  -Wstrict-overflow
2088 #  -Wformat-security
2090 if test "x-$crosstools" != "x-yes"; then
2091     if test "$orig_target_cc" != "$aros_kernel_cc"; then
2092         CC="$orig_target_cc"
2093     fi
2094     AC_MSG_CHECKING([whether ${CC} accepts -Wunused-but-set-variable])
2095     CFLAGS=-Wunused-but-set-variable
2096     AC_TRY_COMPILE(,, aros_unused_but_set_variable="yes", aros_unused_but_set_variable="no")
2097     AC_MSG_RESULT($aros_unused_but_set_variable)
2098     if test "x-$aros_unused_but_set_variable" = "x-yes" ; then
2099         aros_cflags_unused_but_set_variable=-Wno-unused-but-set-variable
2100     fi
2102     AC_MSG_CHECKING([whether ${CC} accepts -Warray-bounds])
2103     CFLAGS=-Warray-bounds
2104     AC_TRY_COMPILE(,, aros_array_bounds="yes", aros_array_bounds="no")
2105     AC_MSG_RESULT($aros_array_bounds)
2106     if test "x-$aros_array_bounds" = "x-yes" ; then
2107         aros_cflags_array_bounds=-Wno-array-bounds
2108     fi
2110     AC_MSG_CHECKING([whether ${CC} accepts -Wenum-compare])
2111     CFLAGS=-Wenum-compare
2112     AC_TRY_COMPILE(,, aros_enum_compare="yes", aros_enum_compare="no")
2113     AC_MSG_RESULT($aros_enum_compare)
2114     if test "x-$aros_enum_compare" = "x-yes" ; then
2115         aros_cflags_enum_compare=-Wno-enum-compare
2116     fi
2118     AC_MSG_CHECKING([whether ${CC} accepts -Wstrict-overflow])
2119     CFLAGS=-Wstrict-overflow
2120     AC_TRY_COMPILE(,, aros_strict_overflow="yes", aros_strict_overflow="no")
2121     AC_MSG_RESULT($aros_strict_overflow)
2122     if test "x-$aros_strict_overflow" = "x-yes" ; then
2123         aros_cflags_strict_overflow=-Wno-strict-overflow
2124     fi
2126     AC_MSG_CHECKING([whether ${CC} accepts -Wformat-security])
2127     CFLAGS=-Wformat-security
2128     AC_TRY_COMPILE(,, aros_format_security="yes", aros_format_security="no")
2129     AC_MSG_RESULT($aros_format_security)
2130     if test "x-$aros_format_security" = "x-yes" ; then
2131         aros_cflags_format_security=-Wno-format-security
2132     fi
2133 else
2134     # We do not know which gcc version we are going to build and what we need to know
2135     # here is different for different versions so this will be set later during the
2136     # build of crosstools.
2137     aros_cflags_unused_but_set_variable=@aros_cflags_unused_but_set_variable@
2138     aros_cflags_array_bounds=@aros_cflags_array_bounds@
2139     aros_cflags_enum_compare=@aros_cflags_enum_compare@
2140     aros_cflags_strict_overflow=@aros_cflags_strict_overflow@
2141     aros_cflags_format_security=@aros_cflags_format_security@
2144 #-----------------------------------------------------------------------------
2146 # Check if we can explicitly choose older version of symbol hashing
2148 CFLAGS="save_cflags -Wl,--hash-style=sysv"
2149 CC="$aros_kernel_cc"
2150 AC_MSG_CHECKING([whether ${CC} accepts -Wl,--hash-style=sysv])
2151 AC_TRY_LINK(,, use_hash_style="yes", use_hash_style="no")
2152 AC_MSG_RESULT($use_hash_style)
2153 if test "x-$use_hash_style" = "x-yes" ; then
2154     aros_kernel_cflags="$aros_kernel_cflags -Wl,--hash-style=sysv"
2156 CC="$save_cc"
2157 CFLAGS="$save_cflags"
2159 AC_SUBST(host_cflags_iquote)
2160 AC_SUBST(host_cflags_iquote_end)
2161 AC_SUBST(kernel_cflags_iquote)
2162 AC_SUBST(kernel_cflags_iquote_end)
2163 AC_SUBST(aros_cflags_iquote)
2164 AC_SUBST(aros_cflags_iquote_end)
2167 dnl Check if user specified --with-resolution=XRESxYRESxDEPTH
2168 AC_MSG_CHECKING([for default resolution of WBScreen])
2169 AC_ARG_WITH(resolution,AC_HELP_STRING([--with-resolution=XRESxYRESxDEPTH],[Default resolution of the initial WorkbenchScreen]),resolution=$withval,resolution=none)
2170 # We require an argument, so map --with/--without ("yes"/"no") to "none" specified
2171 if test "$resolution" = "yes" ; then
2172     resolution="none"
2174 if test "$resolution" = "no" ; then
2175     resolution="none"
2177 if test "$resolution" != "none" ; then
2178     aros_default_wbwidth=`echo $resolution | cut -d'x' -f1`
2179     aros_default_wbheight=`echo $resolution | cut -d'x' -f2`
2180     aros_default_wbdepth=`echo $resolution | cut -d'x' -f3`
2182 AC_MSG_RESULT($aros_default_wbwidth x $aros_default_wbheight x $aros_default_wbdepth)
2183 aros_cv_default_wbwidth=$aros_default_wbwidth
2184 aros_cv_default_wbheight=$aros_default_wbheight
2185 aros_cv_default_wbdepth=$aros_default_wbdepth
2187 dnl See if the user wants the serial debug output for native flavour
2188 AC_MSG_CHECKING([if serial debug is enabled])
2189 AC_ARG_WITH(serial-debug,AC_HELP_STRING([--with-serial-debug],[Enable serial debug output in native (default=no)]),serial_debug=$withval,serial_debug=none)
2190 if test "$aros_serial_debug" = 0 ; then
2191     serial_debug_forced=""
2192     if test "$serial_debug" = "yes" ; then
2193         serial_debug="1"
2194     fi
2195     if test "$serial_debug" = "no" ; then
2196         serial_debug="none"
2197     fi
2198 else
2199     serial_debug_forced="(forced)"
2200     serial_debug=$aros_serial_debug
2202 if test "$serial_debug" != "none" ; then
2203     aros_serial_debug=$serial_debug
2204     AC_MSG_RESULT($serial_debug_forced on port $serial_debug)
2205 else
2206     AC_MSG_RESULT(no)
2209 dnl See if the user wants the palm debug output hack for palm native flavour
2210 AC_MSG_CHECKING([if palm debug hack is enabled])
2211 AC_ARG_ENABLE(palm_debug_hack,AC_HELP_STRING([--enable-palm-debug-hack],[Enable palm debug output hack in palm native (default=no)]),palm_debug_hack="yes",palm_debug_hack="no")
2212 if test "$palm_debug_hack" = "yes" ; then
2213     aros_palm_debug_hack="1"
2215 AC_MSG_RESULT($palm_debug_hack)
2217 dnl See if the user wants nesting supervisor activated for unix flavour
2218 AC_MSG_CHECKING([if nesting supervisor support is enabled])
2219 AC_ARG_ENABLE(nesting_supervisor,AC_HELP_STRING([--enable-nesting-supervisor],[Enable nesting supervisor support in unix (default=no)]),nesting_supervisor="yes",nesting_supervisor="no")
2220 if test "$nesting_supervisor" = "yes" ; then
2221     aros_nesting_supervisor="1"
2223 AC_MSG_RESULT($nesting_supervisor)
2225 dnl See if the user wants to disable MMU support
2226 dnl This can be overriden on per-target basis,
2227 dnl set $aros_enable_mmu to "yes" or "no" to do this
2228 if test "$aros_enable_mmu" = "" ; then
2229     AC_MSG_CHECKING([if MMU support is enabled])
2230     dnl Enabled by default
2231     AC_ARG_ENABLE(mmu,AC_HELP_STRING([--disable-mmu],[Disable MMU support (default=enabled)]),aros_enable_mmu=$enableval,aros_enable_mmu="yes")
2232     if test "$aros_enable_mmu" = "" ; then
2233         aros_enable_mmu="yes"
2234     fi
2235     AC_MSG_RESULT($aros_enable_mmu)
2237 if test "$aros_enable_mmu" = "no" ; then
2238     aros_enable_mmu="0"
2239 else
2240     aros_enable_mmu="1"
2242     
2244 dnl things specifically required for hosted flavours
2245 if test "x-$aros_flavour" = "x-emulation" -o "x-$aros_flavour" = "x-emulcompat" ; then
2247     if test "x-$need_dlopen" != "x-no" ; then
2248       save_libs="$LIBS"
2249       LIBS=""
2250       dnl some kind of dynamic library access system is required for hostlib.resource
2251       AC_CHECK_FUNC(dlopen, have_dl="yes", have_dl="no")
2252       if test "x-$have_dl" = "x-no" ; then
2253           AC_CHECK_LIB(dl, dlopen, [have_dl="yes"
2254                                     aros_host_ldflags="$aros_host_ldflags -ldl"],
2255                                     have_dl="no")
2256       fi
2257       if test "x-$have_dl" = "x-no" ; then
2258           AC_MSG_ERROR([dlopen() dynamic linker functions not available])
2259       fi
2260       LIBS="$save_libs"
2261     fi
2264     dnl x11 hidd
2265     AC_ARG_ENABLE(x11_hidd, AC_HELP_STRING([--enable-x11-hidd],
2266                                            [build X11 hidd for hosted (default=auto)]),
2267                                            x11_hidd="$enableval",
2268                                            x11_hidd="$need_x11")
2269     case "x-$x11_hidd" in
2270         x-yes|x-no|x-auto)                 ;;
2271         *)                 x11_hidd="$need_x11" ;;
2272     esac
2274     ENABLE_X11=0
2276     dnl they want it
2277     if test "x-$x11_hidd" != "x-no" ; then
2279         dnl find x11 stuff
2280         AC_PATH_X
2282         x_cflags=
2283         for path in $x_libraries
2284         do
2285             x_cflags="$x_cflags -L$path"
2286         done
2288         for path in $x_includes
2289         do
2290             x_cflags="$x_cflags -I$path"
2291         done
2292         
2293         if test "x-$no_x" = "x-yes" ; then
2295             dnl didn't find it
2296             if test "x-$x11_hidd" != "x-auto" ; then
2297                 dnl and they explicitly asked for it, bail out
2298                 AC_MSG_ERROR([X11 libs/headers not found, cannot build X11 hidd as requested])
2299             fi
2300         
2301         else
2302             dnl found it, setup the metatarget
2303             x11_hidd_target=kernel-x11gfx-kobj
2304             ENABLE_X11=1
2306             dnl setup shared memory extensions
2307             AC_ARG_ENABLE(x11_shm, AC_HELP_STRING([--enable-x11-shm],
2308                                                   [use X11 shared memory (default=auto)]),
2309                                                   x11_hidd_shm="$enableval",
2310                                                   x11_hidd_shm="auto")
2311             case "x-$x11_hidd_shm" in
2312                 x-yes|x-no|x-auto)                     ;;
2313                 *)                 x11_hidd_shm="auto" ;;
2314             esac
2316             have_xshm=no
2318             dnl they want it
2319             if test "x-$x11_hidd_shm" != "x-no" ; then
2321                 dnl system shm headers
2322                 AC_CHECK_HEADERS(sys/ipc.h)
2323                 AC_CHECK_HEADERS(sys/shm.h)
2325                 dnl got them
2326                 if test "x-$ac_cv_header_sys_ipc_h" = "x-yes" -a "x-$ac_cv_header_sys_shm_h" = "x-yes" ; then
2328                     dnl make sure X libs have shm functions
2329                     save_cflags="$CFLAGS"
2330                     CFLAGS="$CFLAGS $x_cflags"
2331                     AC_CHECK_LIB(Xext, XShmQueryExtension, have_xshm=yes)
2332                     CFLAGS="$save_cflags"
2333                 fi
2334             fi
2336             dnl detection done, prepare output
2337             if test "x-$have_xshm" = "x-yes" ; then
2338                 dnl we can do shm
2339                 DO_XSHM_SUPPORT="1"
2340             elif test "x-$x11_hidd_shm" = "x-yes" ; then
2341                 dnl they explicitly asked for it, but we can't do it
2342                 AC_MSG_ERROR([X11 has no support for shared memory, cannot enable it as requested])
2343             else
2344                 dnl otherwise just disable it
2345                 DO_XSHM_SUPPORT="0"
2346             fi
2348             
2349             dnl setup vidmode (fullscreen) extensions
2350             AC_ARG_ENABLE(x11_vidmode, AC_HELP_STRING([--enable-x11-vidmode],
2351                                                       [use X11 vidmode extension (default=auto)]),
2352                                                       x11_hidd_vidmode="$enableval",
2353                                                       x11_hidd_vidmode="auto")
2354             case "x-$x11_hidd_vidmode" in
2355                 x-yes|x-no|x-auto)                         ;;
2356                 *)                 x11_hidd_vidmode="auto" ;;
2357             esac
2359             have_vidmode=no
2361             dnl they want it
2362             if test "x-$x11_hidd_vidmode" != "x-no" ; then
2364                 dnl make sure X libs have vidmode functions
2365                 save_cflags="$CFLAGS"
2366                 CFLAGS="$CFLAGS $x_cflags"
2367                 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension, have_vidmode=yes)
2368                 CFLAGS="$save_cflags"
2369             fi
2371             dnl detection done, prepare output
2372             if test "x-$have_vidmode" = "x-yes" ; then
2373                 dnl we can do vidmode
2374                 DO_VIDMODE_SUPPORT="1"
2375             elif test "x-$x11_hidd_vidmode" = "x-yes" ; then
2376                 dnl they explicitly asked for it, but we can't do it
2377                 AC_MSG_ERROR([X11 vidmode extension not available, cannot enable it as requested])
2378             else
2379                 dnl otherwise just disable it
2380                 DO_VIDMODE_SUPPORT="0"
2381             fi
2382         fi
2384         aros_host_x11_includes=$x_includes 
2385         aros_host_x11_libdirs=$x_libraries
2386     fi
2389     dnl sdl hidd
2390     AC_ARG_ENABLE(sdl_hidd, AC_HELP_STRING([--enable-sdl-hidd],
2391                                            [build SDL hidd for hosted (default=auto)]),
2392                                            sdl_hidd="$enableval",
2393                                            sdl_hidd="auto")
2394     case "x-$sdl_hidd" in
2395         x-yes|x-no|x-auto)                 ;;
2396         *)                 sdl_hidd="auto" ;;
2397     esac
2399     dnl they want it
2400     if test "x-$sdl_hidd" != "x-no" ; then
2402         dnl find sdl
2403         AM_PATH_SDL([1.2.10], have_sdl="yes", have_sdl="no")
2405         if test "x-$have_sdl" != "x-yes" ; then
2407             dnl didn't find it
2408             if test "x-$sdl_hidd" != "x-auto" ; then
2409                 dnl and they explicitly asked for it, bail out
2410                 AC_MSG_ERROR([SDL libs/headers not found, cannot build SDL hidd as requested])
2411             fi
2413         else
2414             dnl found it, set up the metatarget
2415             sdl_hidd_target=kernel-hidd-sdl
2416             aros_host_sdl_cflags=SDL_CFLAGS
2417             aros_host_sdl_libs=SDL_LIBS
2418         fi
2419     fi
2421     dnl oss.library
2422     AC_CHECK_HEADER(sys/soundcard.h)
2423     if test "x-$ac_cv_header_sys_soundcard_h" = "x-yes" ; then
2424         oss_library_target=workbench-libs-oss-unix
2425     fi
2429 dnl See if the user wants dbus.library
2430 AC_MSG_CHECKING([if building of dbus.library is enabled])
2431 AC_ARG_ENABLE(dbus,AC_HELP_STRING([--enable-dbus],[Enable DBUS support via dbus.library (default=no)]),dbus="yes",dbus="no")
2432 if test "$dbus" = "yes" ; then
2433     ENABLE_DBUS=1
2434     DBUS_CFLAGS=`pkg-config --cflags dbus-1`
2435     DBUS_LIBFLAGS=`pkg-config --libs dbus-1`
2436     KERNEL_DBUS_KOBJ=kernel-dbus-kobj
2437     KERNEL_DBUS_INCLUDES=kernel-dbus-includes
2438 else
2439     ENABLE_DBUS=0
2441 AC_MSG_RESULT($dbus)
2443 if test "$use_kernel_cc_wrapper" = "yes" ; then
2444     aros_kernel_cc="${PWD}/${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-elf-gcc"
2447 if test "${crosstools}" != "yes" ; then
2448     aros_target_toolchain=no
2449 else
2450     aros_target_toolchain=yes
2453 dnl --------------------------------------------------------------------
2454 dnl Configuration Output Section
2455 dnl --------------------------------------------------------------------
2457 # Generic
2458 AC_SUBST(aros_arch)
2459 AC_SUBST(aros_cpu)
2460 AC_SUBST(aros_flavour)
2461 AC_SUBST(aros_flavour_uc)
2462 AC_SUBST(aros_target_toolchain)
2463 AC_SUBST(AROS_BUILDDIR)
2464 AC_SUBST(AROS_BUILDDIR_UNIX)
2465 AC_SUBST(SRCDIR)
2466 AC_SUBST(AROS_CROSSTOOLSDIR)
2467 AC_SUBST(AROS_PORTSSRCDIR)
2469 # Compatability with other Amiga-like operation systems
2470 AC_SUBST(aros_amigaos_compliance)
2472 # Host related
2473 AC_SUBST(aros_cc_pre)
2474 AC_SUBST(aros_host_strip)
2475 AC_SUBST(aros_host_arch)
2476 AC_SUBST(aros_host_cpu)
2477 AC_SUBST(aros_host_cpp)
2478 AC_SUBST(aros_host_cc)
2479 AC_SUBST(aros_host_cxx)
2480 AC_SUBST(aros_host_ar)
2481 AC_SUBST(aros_host_ranlib)
2482 AC_SUBST(aros_host_ld)
2483 AC_SUBST(aros_host_make)
2484 AC_SUBST(aros_host_cflags)
2485 AC_SUBST(aros_host_cxxflags)
2486 AC_SUBST(gnu89_inline)
2487 AC_SUBST(aros_host_ldflags)
2488 AC_SUBST(aros_host_debug)
2489 AC_SUBST(aros_host_mkdep)
2490 AC_SUBST(aros_host_mkargs)
2491 AC_SUBST(aros_host_exe_suffix)
2492 AC_SUBST(aros_host_lib_suffix)
2493 AC_SUBST(aros_tools_dir)
2494 AC_SUBST(aros_host_aclocal)
2495 AC_SUBST(aros_host_autoconf)
2496 AC_SUBST(aros_host_autoheader)
2497 AC_SUBST(aros_host_automake)
2498 AC_SUBST(ant)
2500 # Target Related
2501 AC_SUBST(aros_target_guitheme)
2502 AC_SUBST(aros_target_iconset)
2503 AC_SUBST(aros_target_bootloader)
2504 AC_SUBST(aros_target_arch)
2505 AC_SUBST(aros_target_family)
2506 AC_SUBST(aros_target_cpu)
2507 AC_SUBST(aros_target_variant)
2508 AC_SUBST(aros_target_suffix)
2509 AC_SUBST(aros_target_ar)
2510 AC_SUBST(aros_target_ranlib)
2511 AC_SUBST(aros_plain_nm)
2512 AC_SUBST(aros_plain_ar)
2513 AC_SUBST(aros_kernel_ar)
2514 AC_SUBST(aros_kernel_ranlib)
2515 AC_SUBST(orig_target_cc)
2516 AC_SUBST(aros_target_cc)
2517 AC_SUBST(aros_kernel_cc)
2518 AC_SUBST(orig_target_cxx)
2519 AC_SUBST(aros_target_cxx)
2520 AC_SUBST(aros_kernel_cxx)
2521 AC_SUBST(orig_target_cpp)
2522 AC_SUBST(aros_target_cpp)
2523 AC_SUBST(aros_kernel_cpp)
2524 AC_SUBST(orig_target_as)
2525 AC_SUBST(aros_target_as)
2526 AC_SUBST(aros_kernel_as)
2527 AC_SUBST(orig_target_ld)
2528 AC_SUBST(aros_target_ld)
2529 AC_SUBST(aros_kernel_ld)
2530 AC_SUBST(aros_target_cc_includes)
2531 AC_SUBST(aros_target_cc_path)
2532 AC_SUBST(aros_target_objdump)
2533 AC_SUBST(aros_target_objcopy)
2534 AC_SUBST(aros_target_strip)
2535 AC_SUBST(aros_target_nm)
2536 AC_SUBST(aros_kernel_rescomp)
2537 AC_SUBST(aros_shared_default)
2538 AC_SUBST(aros_shared_ld)
2539 AC_SUBST(aros_object_format)
2540 AC_SUBST(aros_compiler_libs)
2541 AC_SUBST(aros_arch_libs)
2543 AC_SUBST(aros_config_cflags)
2544 AC_SUBST(aros_config_aflags)
2545 AC_SUBST(aros_config_ldflags)
2547 AC_SUBST(aros_shared_cflags)
2548 AC_SUBST(aros_shared_aflags)
2549 AC_SUBST(aros_shared_ldflags)
2550 AC_SUBST(aros_kernel_cflags)
2551 AC_SUBST(aros_kernel_includes)
2552 AC_SUBST(aros_kernel_objcflags)
2553 AC_SUBST(aros_kernel_ldflags)
2554 AC_SUBST(aros_target_cflags)
2555 AC_SUBST(aros_debug_cflags)
2556 AC_SUBST(aros_debug_aflags)
2557 AC_SUBST(aros_debug_ldflags)
2558 AC_SUBST(aros_target_genmap)
2559 AC_SUBST(aros_target_strip_flags)
2561 AC_SUBST(crosstools_target)
2562 AC_SUBST(crosstools_cxx_target)
2564 # Delinting target compiler flags
2565 AC_SUBST(aros_cflags_unused_but_set_variable)
2566 AC_SUBST(aros_cflags_array_bounds)
2567 AC_SUBST(aros_cflags_enum_compare)
2568 AC_SUBST(aros_cflags_strict_overflow)
2569 AC_SUBST(aros_cflags_format_security)
2571 # Graphics Related
2572 AC_SUBST(x11_hidd_target)
2573 AC_SUBST(sdl_hidd_target)
2574 AC_SUBST(pci_hidd_target)
2575 AC_SUBST(oss_library_target)
2577 AC_SUBST(aros_default_wbwidth)
2578 AC_SUBST(aros_default_wbheight)
2579 AC_SUBST(aros_default_wbdepth)
2580 AC_SUBST(DO_XSHM_SUPPORT)
2581 AC_SUBST(DO_VIDMODE_SUPPORT)
2583 AC_SUBST(aros_host_x11_includes)
2584 AC_SUBST(aros_host_x11_libdirs)
2585 AC_SUBST(aros_host_sdl_cflags)
2586 AC_SUBST(aros_host_sdl_libs)
2588 # Native version related
2589 AC_SUBST(aros_serial_debug)
2591 # Palm native version related
2592 AC_SUBST(aros_palm_debug_hack)
2594 # Unix/Hosted version related
2595 AC_SUBST(aros_nesting_supervisor)
2597 # MMU related
2598 AC_SUBST(aros_enable_mmu)
2600 # Apple iOS related
2601 AC_SUBST(aros_ios_platform)
2602 AC_SUBST(aros_ios_version)
2603 AC_SUBST(aros_ios_sdk)
2605 # ARM default GCC target related
2606 AC_SUBST(gcc_default_cpu)
2607 AC_SUBST(gcc_default_fpu)
2608 AC_SUBST(gcc_default_float_abi)
2610 # Android related
2611 AC_SUBST(android_tool)
2612 AC_SUBST(aros_android_level)
2614 # DBUS related
2615 AC_SUBST(ENABLE_DBUS)
2616 AC_SUBST(DBUS_CFLAGS)
2617 AC_SUBST(DBUS_LIBFLAGS)
2618 AC_SUBST(KERNEL_DBUS_KOBJ)
2619 AC_SUBST(KERNEL_DBUS_INCLUDES)
2621 #X11 related
2622 AC_SUBST(ENABLE_X11)
2624 # Debug related
2625 AC_SUBST(aros_debug)
2626 AC_SUBST(aros_mungwall_debug)
2627 AC_SUBST(aros_stack_debug)
2628 AC_SUBST(aros_modules_debug)
2630 # Collect-aros stuff: "-ius" to ignore undefined symbols
2631 AC_SUBST(ignore_undefined_symbols)
2633 # C compiler related
2634 AC_SUBST(gcc_target_cpu)
2636 dnl Prepare for output, make up all the generated patches
2637 case "$aros_flavour" in
2638 emulation)      aros_flavour_uc="AROS_FLAVOUR_EMULATION"
2639                 aros_flavour="emulation" ;;
2640 emulcompat)     aros_flavour_uc="(AROS_FLAVOUR_EMULATION|AROS_FLAVOUR_BINCOMPAT)"
2641                 aros_flavour="emulation" ;;
2642 standalone)     aros_flavour_uc="AROS_FLAVOUR_STANDALONE"
2643                 aros_flavour="standalone";;
2644 standcompat)    aros_flavour_uc="(AROS_FLAVOUR_STANDALONE|AROS_FLAVOUR_BINCOMPAT)"
2645                 aros_flavour="standalone";;
2646 native)         aros_flavour_uc="AROS_FLAVOUR_NATIVE"
2647                 aros_flavour="native" ;;
2648 nativecompat)   aros_flavour_uc="(AROS_FLAVOUR_NATIVE|AROS_FLAVOUR_BINCOMPAT)"
2649                 aros_flavour="native" ;;
2650 linklib)        aros_flavour_uc="AROS_FLAVOUR_LINKLIB"
2651                 aros_flavour="linklib" ;;
2652 palmnative)     aros_flavour_uc="(AROS_FLAVOUR_STANDALONE|AROS_FLAVOUR_EMULATION)"
2653                 aros_flavour="palmnative" ;;
2654 mac68knative)   aros_flavour_uc="(AROS_FLAVOUR_STANDALONE|AROS_FLAVOUR_EMULATION)"
2655                 aros_flavour="mac68knative" ;;
2656 ppcnative)      aros_flavour_uc="(AROS_FLAVOUR_STANDALONE|AROS_FLAVOUR_BINCOMPAT)"
2657                 aros_flavour="ppcnative" ;;
2658 esac
2660 if test ! -d ${aros_inc_dir} ; then
2661     ${MKDIR} ${aros_inc_dir}
2663 if test ! -d ${aros_geninc_dir} ; then
2664     ${MKDIR} ${aros_geninc_dir}
2666 if test ! -d ${aros_hostcfg_dir} ; then
2667     ${MKDIR} ${aros_hostcfg_dir}
2669 if test ! -d ${aros_targetcfg_dir} ; then
2670     ${MKDIR} ${aros_targetcfg_dir}
2672 if test ! -d ${aros_tools_dir} ; then
2673     ${MKDIR} ${aros_tools_dir}
2675 if test ! -d ${aros_scripts_dir} ; then
2676     ${MKDIR} ${aros_scripts_dir}
2679 AC_CONFIG_HEADERS(${aros_geninc_dir}/host-conf.h:config/host-conf.h.in)
2681 AC_CONFIG_COMMANDS([compiler_executable],
2682     [
2683         prefix=${PWD}/${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}
2684         mkdir -p $prefix
2685         prefix2=${PWD}/${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-aros
2686         prefix3=${PWD}/${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-elf
2688         echo ${prefix2}
2689         echo ${prefix3}
2690         chmod a+x ${prefix2}-gcc ${prefix2}-g++ ${prefix2}-ld ${prefix2}-cpp ${prefix3}-gcc
2692         ln -sf $orig_target_as$aros_host_exe_suffix      ${prefix2}-as$aros_host_exe_suffix
2693         ln -sf $orig_target_nm$aros_host_exe_suffix      ${prefix2}-nm$aros_host_exe_suffix
2694         ln -sf $orig_target_ar$aros_host_exe_suffix      ${prefix2}-ar$aros_host_exe_suffix
2695         ln -sf $orig_target_ranlib$aros_host_exe_suffix  ${prefix2}-ranlib$aros_host_exe_suffix
2696         ln -sf $orig_target_objcopy$aros_host_exe_suffix ${prefix2}-objcopy$aros_host_exe_suffix
2697         ln -sf $orig_target_objdump$aros_host_exe_suffix ${prefix2}-objdump$aros_host_exe_suffix
2698         ln -sf $orig_target_strip$aros_host_exe_suffix   ${prefix2}-strip$aros_host_exe_suffix
2700         ln -sf $aros_kernel_ld$aros_host_exe_suffix         ${prefix3}-ld$aros_host_exe_suffix
2701     ],
2702     [
2703         aros_host_exe_suffix=${aros_host_exe_suffix}
2704         aros_tools_dir=${aros_tools_dir}
2705         aros_target_cpu=${aros_target_cpu}
2706         aros_target_arch=${aros_target_arch}
2707         aros_target_suffix=${aros_target_suffix}
2708         orig_target_nm=${orig_target_nm}
2709         orig_target_as=${orig_target_as}
2710         orig_target_ar=${orig_target_ar}
2711         orig_target_ranlib=${orig_target_ranlib}
2712         orig_target_objdump=${orig_target_objdump}
2713         orig_target_objcopy=${orig_target_objcopy}
2714         orig_target_strip=${orig_target_strip}
2715         aros_kernel_ld=${aros_kernel_ld}
2716     ]
2718 AC_CONFIG_COMMANDS([genmf_executable],
2719     [chmod a+x ${aros_tools_dir}/genmf.py],
2720     [aros_tools_dir=${aros_tools_dir}]
2723 AC_CONFIG_FILES(
2724     Makefile
2725     config/make.cfg
2726     ${aros_inc_dir}/config.h:config/config.h.in
2727     ${aros_geninc_dir}/config.h:config/config.h.in
2728     ${aros_hostcfg_dir}/host.cfg:config/host.cfg.in
2729     ${aros_targetcfg_dir}/target.cfg:config/target.cfg.in
2730     mmake.config
2731     ${aros_targetcfg_dir}/make.defaults:config/make.defaults.in
2732     ${aros_targetcfg_dir}/specs:config/specs.in
2733     ${aros_targetcfg_dir}/elf-specs:${elf_specs_in}
2734     ${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-aros-cpp:scripts/aros-cpp.in
2735     ${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-aros-gcc:scripts/aros-gcc.in
2736     ${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-aros-g++:scripts/aros-g++.in
2737     ${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-elf-gcc:scripts/elf-gcc.in
2738     ${aros_tools_dir}/${aros_target_cpu}-${aros_target_arch}${aros_target_suffix}-aros-ld:scripts/aros-ld.in
2739     ${aros_tools_dir}/genmf.py:tools/genmf/genmf.py
2740     tools/collect-aros/env.h
2741     ${aros_gendir}/arch/all-android/bootstrap/app/default.properties:arch/all-android/bootstrap/app/default.properties.in
2744 AC_OUTPUT
2746 dnl This is in order to not define SHARED_CFLAGS sometimes
2747 dnl We don't always do aros_shared_ar, aros_shared_cflags
2749 #XXX compatability...
2750 aros_shared_ar="$aros_shared_ld $aros_shared_ldflags -o"
2752 if test -n "$aros_shared_cflags" ; then
2753     echo "SHARED_CFLAGS := $aros_shared_cflags" >> ${aros_hostcfg_dir}/host.cfg
2754     echo "SHARED_AR := $aros_shared_ar" >> ${aros_hostcfg_dir}/host.cfg