/[gxemul]/trunk/configure
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 22 by dpavlin, Mon Oct 8 16:19:37 2007 UTC revision 42 by dpavlin, Mon Oct 8 16:22:32 2007 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/sh
2  ###############################################################################  ###############################################################################
3  #  #
4  #  Copyright (C) 2003-2006  Anders Gavare.  All rights reserved.  #  Copyright (C) 2003-2007  Anders Gavare.  All rights reserved.
5  #  #
6  #  Redistribution and use in source and binary forms, with or without  #  Redistribution and use in source and binary forms, with or without
7  #  modification, are permitted provided that the following conditions are met:  #  modification, are permitted provided that the following conditions are met:
# Line 27  Line 27 
27  #  SUCH DAMAGE.  #  SUCH DAMAGE.
28  #  #
29  #  #
30  #  $Id: configure,v 1.198 2006/02/18 13:15:20 debug Exp $  #  $Id: configure,v 1.270 2007/06/15 17:13:40 debug Exp $
31  #  #
32  #  This is a minimal configure script, hardcoded for GXemul. This script  #  This is a minimal configure script, hardcoded for GXemul. This script
33  #  figures out which compiler flags will work, and creates Makefiles in  #  figures out which compiler flags will work, and creates Makefiles in
# Line 47  Line 47 
47  #    o)  special hacks for some OSes  #    o)  special hacks for some OSes
48  #    o)  which compiler to use  (overridden by setting CC)  #    o)  which compiler to use  (overridden by setting CC)
49  #    o)  which compiler flags to use  (overridden by setting CFLAGS)  #    o)  which compiler flags to use  (overridden by setting CFLAGS)
50  #    o)  X11 flags and libraries  (TODO: should be possible to override)  #    o)  X11 flags and libraries  (TODO: should be possible to override
51  #    o)  binary translation (on supported platforms)  #        via command line options?)
52  #  #
53  #  TODO:  #  The general philosophy regarding command line switches is that anything
54  #    o)  X11 libs and includes via command line options?  #  which can be incorporated into the program as a runtime command line option
55    #  should be, instead of requiring a recompile.
56  #  #
57  ###############################################################################  ###############################################################################
58    
59  #  Figure out if this is a stable version (0.x.x).  #  Figure out if this is a stable version (0.x.x).
60  X=`basename \`pwd\`|cut -d \- -f 2-|cut -c1-2`  X=`basename \`pwd\`|cut -d \- -f 2-|cut -c1-2`
61  if [ z"$X" = z0. ]; then  if [ z"$X" = z0. ]; then
62          #  Stable:          #  Stable.
63          ENABLEARM=YES          :
         ENABLEMIPS=YES  
         ENABLEPPC=YES  
64  else  else
65          #  Development:          #  Development.
66          UNSTABLE=YES          UNSTABLE=YES
         DYNTRANSBACKEND=NO #YES  
         ENABLEALPHA=YES  
         ENABLEARM=YES  
         ENABLEAVR=YES  
         ENABLEHPPA=YES  
         ENABLEI960=YES  
         ENABLEIA64=YES  
         ENABLEM68K=YES  
         ENABLEMIPS=YES  
         NEWMIPS=NO  
         ENABLEPPC=YES  
         ENABLESH=YES  
         ENABLESPARC=YES  
         ENABLEX86=YES  
 fi  
   
 if [ z"$UNSTABLE" = zYES ]; then  
         printf "###  DEVELOPMENT (UNSTABLE)\n\n"  
67  fi  fi
68    
69  if [ z"$*" != z ]; then  if [ z"$*" != z ]; then
# Line 90  if [ z"$*" != z ]; then Line 71  if [ z"$*" != z ]; then
71          for a in $*; do          for a in $*; do
72                  if [ z$a = z--disable-x ]; then                  if [ z$a = z--disable-x ]; then
73                          NOX11=YES                          NOX11=YES
74                  else if [ z$a = z--always32 ]; then                  else if [ z$a = z--debug ]; then
75                          ALWAYS32=YES                          DEBUG=YES
                 else if [ z$a = z--tracenull ]; then  
                         TRACENULL=YES  
                 else if [ z$a = z--disable-bintrans ]; then  
                         NOBINTRANS=YES  
                 else if [ z$a = z--enable-bintrans ]; then  
                         NOBINTRANS=NO  
                 else if [ z$a = z--disable-mips16 ]; then  
                         MIPS16=NO  
                 else if [ z$a = z--enable-mips16 ]; then  
                         MIPS16=YES  
                 else if [ z$a = z--disable-dyntransbackend ]; then  
                         DYNTRANSBACKEND=NO  
                 else if [ z$a = z--enable-dyntransbackend ]; then  
                         DYNTRANSBACKEND=YES  
                 else if [ z$a = z--disable-delays ]; then  
                         DELAYS=NO  
                 else if [ z$a = z--enable-delays ]; then  
                         DELAYS=YES  
                 else if [ z$a = z--disable-caches ]; then  
                         CACHES=NO  
                 else if [ z$a = z--enable-caches ]; then  
                         CACHES=YES  
                 else if [ z$a = z--disable-newmips ]; then  
                         NEWMIPS=NO  
                 else if [ z$a = z--enable-newmips ]; then  
                         NEWMIPS=YES  
                 else if [ z$a = z--disable-1k-pages ]; then  
                         ONEKPAGE=NO  
                 else if [ z$a = z--enable-1k-pages ]; then  
                         ONEKPAGE=YES  
76                  else if [ z$a = z--help ]; then                  else if [ z$a = z--help ]; then
77                          echo "usage: $0 [options]"                          printf "usage: $0 [options]\n\n"
78                            echo "  --disable-x         don't include X11 support,"\
79                          printf "\nGeneral options:\n\n"                              "even if the host supports it"
80                            if [ z"$UNSTABLE" = zYES ]; then
81                          echo "  --disable-bintrans  configure without the" \                                  echo "  --debug             configure" \
82                              "old binary translation subsystem,"                                          "for a debug build"
                         echo "                      even if the host" \  
                             "supports it"  
                         echo "  --disable-x         don't include X11 support"  
   
                         printf "\nDevelopment (debug) options:\n\n"  
   
                         echo "  --always32         enable ALWAYS_SIGNEXTEND_32"\  
                             "(for hunting down 32-bit bugs)"  
                         printf "  --enable-caches    enable cache emulation"  
                         printf " (BUGGY)\n"  
                         echo "  --enable-delays    enable instruction" \  
                             "latency/delay emulation"  
   
                         if [ z$DYNTRANSBACKEND = zYES ]; then  
                                 printf "  --disable-dyntransbackend  disable "  
                         else  
                                 printf "  --enable-dyntransbackend  enable"  
83                          fi                          fi
84                          printf "dyntrans backend\n"                          echo
   
                         echo "  --enable-mips16    enable MIPS16 support"  
                         echo "  --enable-newmips   use new MIPS dyntrans code"  
                         #printf "  --enable-1k-pages  allow 1KB dyntrans pages"  
                         #printf " (default: 4KB)\n"  
   
                         printf "\n(Pretty much all of these options are only"  
                         printf " meaningful during the development of\nthe"  
                         printf " emulator, and should not be used when "  
                         printf "compiling a stable version.)\n"  
85                          exit                          exit
86                  else                  else
87                          echo "Invalid option: $a"                          echo "Invalid option: $a"
88                          echo "Run  $0 --help  to get a list of" \                          echo "Run  $0 --help  to get a list of" \
89                              "available options."                              "available options."
90                          exit                          exit
91                  fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi                  fi; fi; fi
                 fi; fi  
92          done          done
93  fi  fi
94    
# Line 195  else Line 118  else
118  fi  fi
119    
120    
121  ZZ=`echo compiled on \`uname\`/\`uname -m\`, \`date\``  if [ z"$UNSTABLE" = zYES ]; then
122  printf "#define COMPILE_DATE \"$ZZ\"\n" >> config.h          printf "#define UNSTABLE_DEVEL\n" >> config.h
123    else
124            CFLAGS="-DNDEBUG $CFLAGS"
125    fi
126    
127    
128  #  Support for various CPU types:  ZZ=`echo compiled on \`uname\`/\`uname -m\`, \`date\``
129  if [ z$MIPS16 = zYES ]; then  printf "#define COMPILE_DATE \"$ZZ\"\n" >> config.h
         printf 'Enabling MIPS16 support.  '  
         printf 'NOTE: MIPS16 support is not really working yet.\n'  
         printf "#define ENABLE_MIPS16\n" >> config.h  
 fi  
 if [ z$ENABLEALPHA = zYES ]; then  
         printf "#define ENABLE_ALPHA\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_alpha.o cpu_alpha_palcode.o"  
         CPU_TOOLS="$CPU_TOOLS generate_alpha_misc"  
 fi  
 if [ z$ENABLEARM = zYES ]; then  
         printf "#define ENABLE_ARM\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_arm.o cpu_arm_coproc.o memory_arm.o "  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_dpi.o tmp_arm_loadstore.o tmp_arm_r.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_r0.o tmp_arm_r1.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_r2.o tmp_arm_r3.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_r4.o tmp_arm_r5.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_r6.o tmp_arm_r7.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_r8.o tmp_arm_r9.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_ra.o tmp_arm_rb.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_rc.o tmp_arm_rd.o"  
         CPU_ARCHS="$CPU_ARCHS tmp_arm_re.o tmp_arm_rf.o tmp_arm_multi.o"  
         CPU_TOOLS="$CPU_TOOLS generate_arm_dpi generate_arm_r"  
         CPU_TOOLS="$CPU_TOOLS generate_arm_loadstore generate_arm_multi"  
 fi  
 if [ z$ENABLEAVR = zYES ]; then  
         printf "#define ENABLE_AVR\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_avr.o"  
 fi  
 if [ z$ENABLEHPPA = zYES ]; then  
         printf "#define ENABLE_HPPA\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_hppa.o"  
 fi  
 if [ z$ENABLEI960 = zYES ]; then  
         printf "#define ENABLE_I960\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_i960.o"  
 fi  
 if [ z$ENABLEIA64 = zYES ]; then  
         printf "#define ENABLE_IA64\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_ia64.o"  
 fi  
 if [ z$ENABLEM68K = zYES ]; then  
         printf "#define ENABLE_M68K\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_m68k.o"  
 fi  
 if [ z$ENABLEMIPS = zYES ]; then  
         printf "#define ENABLE_MIPS\n" >> config.h  
         if [ z$NEWMIPS = zYES ]; then  
                 echo 'Enabling the _EXPERIMENTAL_ MIPS dyntrans code.'  
                 printf "#define EXPERIMENTAL_NEWMIPS\n" >> config.h  
         fi  
 fi  
 if [ z$ENABLEPPC = zYES ]; then  
         printf "#define ENABLE_PPC\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_ppc.o"  
         CPU_TOOLS="$CPU_TOOLS generate_ppc_loadstore"  
 fi  
 if [ z$ENABLESH = zYES ]; then  
         printf "#define ENABLE_SH\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_sh.o"  
 fi  
 if [ z$ENABLESPARC = zYES ]; then  
         printf "#define ENABLE_SPARC\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_sparc.o"  
 fi  
 if [ z$ENABLEX86 = zYES ]; then  
         printf "#define ENABLE_X86\n" >> config.h  
         CPU_ARCHS="$CPU_ARCHS cpu_x86.o"  
 fi  
   
   
 #  Instruction delay/latency emulation:  
 if [ z$DELAYS = zYES ]; then  
         echo 'Enabling Instruction delay/latency emulation.'  
         printf "#define ENABLE_INSTRUCTION_DELAYS\n" >> config.h  
 fi  
   
   
 #  Development option: ALWAYS_SIGNEXTEND_32  
 if [ z$ALWAYS32 = zYES ]; then  
         echo 'Enabling ALWAYS_SIGNEXTEND_32. (NOTE:' \  
             'This slows down everything.)'  
         printf "#define ALWAYS_SIGNEXTEND_32\n" >> config.h  
 fi  
   
   
 #  1KB page emulation:  
 if [ z$ONEKPAGE = zYES ]; then  
         echo '1 KB pages: not yet.'  
         exit  
         echo 'Enabling 1 KB page dyntrans support. (NOTE:' \  
             'This slows down everything.)'  
         printf "#define ONEKPAGE\n" >> config.h  
 fi  
130    
131    
132  #  Cache emulation:  #  Include support for all CPU types:
133  if [ z$CACHES = zYES ]; then  printf "#define ADD_ALL_CPU_FAMILIES    " >> config.h
         echo 'Enabling Cache emulation. (EXPERIMENTAL and BUGGY)'  
         printf "#define ENABLE_CACHE_EMULATION\n" >> config.h  
134    
135          if [ z$DELAYS != zYES ]; then  #  Alpha
136                  printf 'WARNING: Cache emulation without instruction '  printf " add_cpu_family(alpha_cpu_family_init, ARCH_ALPHA);" >> config.h
137                  printf 'delay/latency emulation\n'  CPU_ARCHS="$CPU_ARCHS cpu_alpha.o cpu_alpha_palcode.o memory_alpha.o"
138                  printf '         (--delays) will not produce correct '  CPU_TOOLS="$CPU_TOOLS generate_alpha_misc"
139                  printf 'cache miss penalties and such.\n'  
140          fi  #  ARM
141    printf " add_cpu_family(arm_cpu_family_init, ARCH_ARM);" >> config.h
142    CPU_ARCHS="$CPU_ARCHS cpu_arm.o cpu_arm_coproc.o memory_arm.o "
143    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore.o"
144    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p0_u0_w0.o"
145    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p0_u0_w1.o"
146    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p0_u1_w0.o"
147    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p0_u1_w1.o"
148    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p1_u0_w0.o"
149    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p1_u0_w1.o"
150    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p1_u1_w0.o"
151    CPU_ARCHS="$CPU_ARCHS tmp_arm_loadstore_p1_u1_w1.o"
152    CPU_ARCHS="$CPU_ARCHS tmp_arm_dpi.o tmp_arm_r.o"
153    CPU_ARCHS="$CPU_ARCHS tmp_arm_r0.o tmp_arm_r1.o"
154    CPU_ARCHS="$CPU_ARCHS tmp_arm_r2.o tmp_arm_r3.o"
155    CPU_ARCHS="$CPU_ARCHS tmp_arm_r4.o tmp_arm_r5.o"
156    CPU_ARCHS="$CPU_ARCHS tmp_arm_r6.o tmp_arm_r7.o"
157    CPU_ARCHS="$CPU_ARCHS tmp_arm_r8.o tmp_arm_r9.o"
158    CPU_ARCHS="$CPU_ARCHS tmp_arm_ra.o tmp_arm_rb.o"
159    CPU_ARCHS="$CPU_ARCHS tmp_arm_rc.o tmp_arm_rd.o"
160    CPU_ARCHS="$CPU_ARCHS tmp_arm_re.o tmp_arm_rf.o tmp_arm_multi.o"
161    CPU_TOOLS="$CPU_TOOLS generate_arm_dpi generate_arm_r"
162    CPU_TOOLS="$CPU_TOOLS generate_arm_loadstore generate_arm_multi"
163    
164    #  M88K
165    printf " add_cpu_family(m88k_cpu_family_init, ARCH_M88K);" >> config.h
166    CPU_ARCHS="$CPU_ARCHS cpu_m88k.o memory_m88k.o"
167    CPU_TOOLS="$CPU_TOOLS generate_m88k_bcnd"
168    CPU_TOOLS="$CPU_TOOLS generate_m88k_loadstore"
169    
170    #  MIPS
171    printf " add_cpu_family(mips_cpu_family_init, ARCH_MIPS);" >> config.h
172    CPU_ARCHS="$CPU_ARCHS cpu_mips.o cpu_mips_coproc.o "
173    CPU_ARCHS="$CPU_ARCHS cpu_mips_instr_unaligned.o"
174    CPU_TOOLS="$CPU_TOOLS generate_mips_loadstore"
175    CPU_TOOLS="$CPU_TOOLS generate_mips_loadstore_multi"
176    
177    #  POWER/PowerPC
178    printf " add_cpu_family(ppc_cpu_family_init, ARCH_PPC);" >> config.h
179    CPU_ARCHS="$CPU_ARCHS cpu_ppc.o"
180    CPU_TOOLS="$CPU_TOOLS generate_ppc_loadstore"
181    
182    #  SuperH
183    printf " add_cpu_family(sh_cpu_family_init, ARCH_SH);" >> config.h
184    CPU_ARCHS="$CPU_ARCHS cpu_sh.o memory_sh.o"
185    
186    #  SPARC
187    printf " add_cpu_family(sparc_cpu_family_init, ARCH_SPARC);" >> config.h
188    CPU_ARCHS="$CPU_ARCHS cpu_sparc.o memory_sparc.o"
189    CPU_TOOLS="$CPU_TOOLS generate_sparc_loadstore"
190    
191          printf "\nNOTE: Cache emulation enabled, but right now it triggers "  printf "\n" >> config.h
         printf "weird bugs in the\n      emulator. You have been warned.\n\n"  
 fi  
192    
193    
194  ###############################################################################  ###############################################################################
# Line 358  printf "# Line 235  printf "#
235  #\n\n" >> _Makefile.header  #\n\n" >> _Makefile.header
236    
237    
238  echo 'int main(int argc, char *argv[]) { return 0; }' > _testprog.c  #  Try with the simplest possible test program. Actually, test static variables
239    #  as well, because GXemul uses things like NULL-initialized global pointers,
240    #  and it is important that they work. (GCC on Solaris is known to be completely
241    #  broken, for instance.)
242    
243    echo '#include <stdio.h>
244    
245    int main(int argc, char *argv[])
246    {
247            static int x = 0;
248            static int y = 1;
249            printf("%i,%i", x, y);
250            return 0;
251    }
252    ' > _testprog.c
253    
254    
255  #  Try to detect which C compiler to use, if CC is not set:  #  Try to detect which C compiler to use, if CC is not set:
256  printf "checking which C compiler to use... "  printf "checking which C compiler to use... "
257    rm -f _testprog
258  if [ z"$CC" = z ]; then  if [ z"$CC" = z ]; then
         CC=cc  
   
259          #  Try gcc first:          #  Try gcc first:
260          printf "#!/bin/sh\ngcc _testprog.c -o _testprog >" > _test.sh          printf "#!/bin/sh\ngcc $CFLAGS _testprog.c -o _testprog >" > _test.sh
261          printf " /dev/null 2> /dev/null\n" >> _test.sh          printf " /dev/null 2> /dev/null\n" >> _test.sh
262          chmod 755 _test.sh          chmod 755 _test.sh
263          ./_test.sh > /dev/null 2> /dev/null          ./_test.sh > /dev/null 2> /dev/null
264          if [ -x _testprog ]; then          if [ -x _testprog ]; then
265                  CC=gcc                  if [ z`./_testprog` = z0,1 ]; then
266                            CC=gcc
267                    else
268                            printf "broken gcc detected\n"
269                            printf "The test program:\n\n"
270                            cat _testprog.c
271                            printf "\nshould have resulted in 0,1, but the"
272                            printf " result was: "
273                            ./_testprog
274                            printf "\n\nchecking for other C compilers... "
275                    fi
276          fi          fi
277          rm -f _testprog          rm -f _testprog
278    
279          #  If both gcc and cc exist, then cc might be a vendor specific          #  If both gcc and cc exist, then cc might be a vendor specific
280          #  compiler which produces faster code than gcc (eg on Solaris):          #  compiler which produces faster code than gcc (eg on Solaris):
281          printf "#!/bin/sh\ncc _testprog.c -o _testprog >" > _test.sh          printf "#!/bin/sh\ncc $CFLAGS _testprog.c -o _testprog >" > _test.sh
282          printf " /dev/null 2> /dev/null\n" >> _test.sh          printf " /dev/null 2> /dev/null\n" >> _test.sh
283          chmod 755 _test.sh          chmod 755 _test.sh
284          ./_test.sh > /dev/null 2> /dev/null          ./_test.sh > /dev/null 2> /dev/null
285          if [ -x _testprog ]; then          if [ -x _testprog ]; then
286                  CC=cc                  if [ z`./_testprog` = z0,1 ]; then
287                            CC=cc
288                    else
289                            printf "broken cc detected\n"
290                            printf "checking for other C compilers... "
291                    fi
292          fi          fi
293          rm -f _testprog          rm -f _testprog
294    
295    #  Actually, don't try ccc on Alpha. ccc generates broken code :(
296    
297  #       #  Try ccc (FreeBSD/Alpha):  #       #  Try ccc (FreeBSD/Alpha):
298  #       printf "#!/bin/sh\nccc _testprog.c -o _testprog >" > _test.sh  #       printf "#!/bin/sh\nccc $CFLAGS _testprog.c -o _testprog >" > _test.sh
299  #       printf " /dev/null 2> /dev/null\n" >> _test.sh  #       printf " /dev/null 2> /dev/null\n" >> _test.sh
300  #       chmod 755 _test.sh  #       chmod 755 _test.sh
301  #       ./_test.sh > /dev/null 2> /dev/null  #       ./_test.sh > /dev/null 2> /dev/null
# Line 403  fi Line 309  fi
309    
310    
311  rm -f _testprog  rm -f _testprog
312    
313    if [ z$CC = z ]; then
314            printf "no working compiler detected\n"
315            printf "\nPlease set the CC environment variable to a working C "
316            printf "compiler before running\nthe configure script, and make"
317            printf " sure that the CFLAGS environment variable is\nalso valid"
318            printf " for that compiler.\n"
319            exit
320    fi
321    
322  printf "$CC $CFLAGS"  printf "$CC $CFLAGS"
323    
324    
# Line 458  if [ z$NOX11 = z ]; then Line 374  if [ z$NOX11 = z ]; then
374    
375          rm -f _test_x11 _test_x11.o          rm -f _test_x11 _test_x11.o
376    
377            #  Special case for some 64-bit Linux/x86_64 systems:
378            if [ z$XOK = z0 ]; then
379                    $CC $CFLAGS _test_x11.c -c -o _test_x11.o \
380                        $XINCLUDE 2> /dev/null
381    
382                    XLIB="-L/usr/X11R6/lib64 -lX11"
383                    $CC $CFLAGS _test_x11.o -o _test_x11 $XLIB 2> /dev/null
384    
385                    if [ -x _test_x11 ]; then
386                            XOK=1
387                    fi
388            fi
389            rm -f _test_x11 _test_x11.o
390    
391          if [ z$XOK = z0 ]; then          if [ z$XOK = z0 ]; then
392                  XINCLUDE=""                  XINCLUDE=""
393                  $CC $CFLAGS _test_x11.c -c -o _test_x11.o \                  $CC $CFLAGS _test_x11.c -c -o _test_x11.o \
# Line 668  fi Line 598  fi
598  rm -f _testprog  rm -f _testprog
599    
600    
601    #  -Wstrict-aliasing
602    if [ ! z"$DEBUG" = zYES ]; then
603            printf "checking whether -Wstrict-aliasing can be used... "
604            $CC $CFLAGS -Wstrict-aliasing _testprog.c -o \
605                _testprog 1> _testprog.stdout 2>&1
606            cat _testprog.stdout >> _testprog.error
607            if grep frame _testprog.error > /dev/null 2>&1; then
608                    printf "no\n"
609            else
610                    if [ -x _testprog ]; then
611                            CWARNINGS="-Wstrict-aliasing $CWARNINGS"
612                            printf "yes\n"
613                    else
614                            printf "no\n"
615                    fi
616            fi
617            rm -f _testprog _testprog.error _testprog.stdout
618    fi
619    
620    
621  if [ z"$COMPAQCC" = zYES ]; then  if [ z"$COMPAQCC" = zYES ]; then
622          #  -O4 is possible, but sometimes -O3 is better?          #  -O4 is possible, but sometimes -O3 is better?
623          CFLAGS="-O4 $CFLAGS"          if [ ! z"$DEBUG" = zYES ]; then
624                    CFLAGS="-O4 $CFLAGS"
625            fi
626  else  else
627          if [ z"`uname`" = zSunOS ]; then          if [ z"`uname`" = zSunOS ]; then
628                  #  "cc", the system's default compiler:                  #  "cc", the system's default compiler:
629                  if [ z"$SUNCC" = zYES ]; then                  if [ ! z"$DEBUG" = zYES ]; then
630                          CFLAGS="-xO5 -xdepend $CFLAGS"                          if [ z"$SUNCC" = zYES ]; then
631                                    CFLAGS="-xO5 -xdepend $CFLAGS"
632                            fi
633                  fi                  fi
634                  printf "#define SOLARIS\n" >> config.h                  printf "#define SOLARIS\n" >> config.h
635                  OTHERLIBS="-lsocket $OTHERLIBS"                  OTHERLIBS="-lsocket $OTHERLIBS"
636          else          else
637                  #  gcc or something else:                  #  gcc or something else:
638                  $CC $CFLAGS _testprog.c -o _testprog -O 2> /dev/null                  if [ ! z"$DEBUG" = zYES ]; then
639                  if [ -x _testprog ]; then                          $CC $CFLAGS _testprog.c -o _testprog -O 2> /dev/null
                         rm -f _testprog  
                         $CC $CFLAGS _testprog.c -o _testprog -O3 2> /dev/null  
640                          if [ -x _testprog ]; then                          if [ -x _testprog ]; then
641                                  CFLAGS="-O3 $CFLAGS"                                  rm -f _testprog
642                          else                                  $CC $CFLAGS _testprog.c -o _testprog    \
643                                  CFLAGS="-O $CFLAGS"                                          -O3 2> /dev/null
644                                    if [ -x _testprog ]; then
645                                            CFLAGS="-O3 $CFLAGS"
646                                    else
647                                            CFLAGS="-O $CFLAGS"
648                                    fi
649                          fi                          fi
650                  fi                  fi
651          fi          fi
# Line 698  rm -f _testprog Line 655  rm -f _testprog
655    
656  #  -fschedule-insns causes bugs on i386 with gcc,  #  -fschedule-insns causes bugs on i386 with gcc,
657  #  but works OK on my alpha with ccc (compaq's cc).  #  but works OK on my alpha with ccc (compaq's cc).
658  if [ z"$COMPAQCC" = zYES ]; then  if [ ! z"$DEBUG" = zYES ]; then
659        if [ z"$COMPAQCC" = zYES ]; then
660          printf "checking whether -fschedule-insns2 can be used... "          printf "checking whether -fschedule-insns2 can be used... "
661          $CC $CFLAGS _testprog.c -o _testprog -fschedule-insns2 2> /dev/null          $CC $CFLAGS _testprog.c -o _testprog -fschedule-insns2 2> /dev/null
662          if [ -x _testprog ]; then          if [ -x _testprog ]; then
# Line 719  if [ z"$COMPAQCC" = zYES ]; then Line 677  if [ z"$COMPAQCC" = zYES ]; then
677          fi          fi
678          rm -f _testprog          rm -f _testprog
679    
680  #       #  -intrinsics          #  -intrinsics
681  #       $CC $CFLAGS _testprog.c -o _testprog -intrinsics 2> /dev/null          printf "checking whether -intrinsics can be used... "
682  #       if [ -x _testprog ]; then          $CC $CFLAGS _testprog.c -o _testprog -intrinsics 2> /dev/null
683  #               CFLAGS="-intrinsics $CFLAGS"          if [ -x _testprog ]; then
684  #       fi                  CFLAGS="-intrinsics $CFLAGS"
685  #       rm -f _testprog                  printf "yes\n"
686            else
687                    printf "no\n"
688            fi
689            rm -f _testprog
690    
691          #  -fast          #  -fast
692          printf "checking whether -fast can be used... "          printf "checking whether -fast can be used... "
# Line 736  if [ z"$COMPAQCC" = zYES ]; then Line 698  if [ z"$COMPAQCC" = zYES ]; then
698                  printf "no\n"                  printf "no\n"
699          fi          fi
700          rm -f _testprog          rm -f _testprog
701  fi  fi; fi
702    
703    
704  #  -fpeephole  #  -fpeephole
705  printf "checking whether -fpeephole can be used... "  if [ ! z"$DEBUG" = zYES ]; then
706  $CC $CFLAGS -fpeephole _testprog.c -o _testprog > _testprog.stdout 2>&1          printf "checking whether -fpeephole can be used... "
707  cat _testprog.stdout >> _testprog.error          $CC $CFLAGS -fpeephole _testprog.c -o _testprog > _testprog.stdout 2>&1
708  if grep peephole _testprog.error > /dev/null 2>&1; then          cat _testprog.stdout >> _testprog.error
709          printf "no\n"          if grep peephole _testprog.error > /dev/null 2>&1; then
 else  
         if [ -x _testprog ]; then  
                 CFLAGS="-fpeephole $CFLAGS"  
                 printf "yes\n"  
         else  
710                  printf "no\n"                  printf "no\n"
711            else
712                    if [ -x _testprog ]; then
713                            CFLAGS="-fpeephole $CFLAGS"
714                            printf "yes\n"
715                    else
716                            printf "no\n"
717                    fi
718          fi          fi
719            rm -f _testprog _testprog.error _testprog.stdout
720  fi  fi
 rm -f _testprog _testprog.error _testprog.stdout  
721    
722    
723  #  -fomit-frame-pointer  #  -fomit-frame-pointer
724  printf "checking whether -fomit-frame-pointer can be used... "  if [ ! z"$DEBUG" = zYES ]; then
725  $CC $CFLAGS -fomit-frame-pointer _testprog.c -o \          printf "checking whether -fomit-frame-pointer can be used... "
726      _testprog 1> _testprog.stdout 2>&1          $CC $CFLAGS -fomit-frame-pointer _testprog.c -o \
727  cat _testprog.stdout >> _testprog.error              _testprog 1> _testprog.stdout 2>&1
728  if grep frame _testprog.error > /dev/null 2>&1; then          cat _testprog.stdout >> _testprog.error
729          printf "no\n"          if grep frame _testprog.error > /dev/null 2>&1; then
 else  
         if [ -x _testprog ]; then  
                 CFLAGS="-fomit-frame-pointer $CFLAGS"  
                 printf "yes\n"  
         else  
730                  printf "no\n"                  printf "no\n"
731            else
732                    if [ -x _testprog ]; then
733                            CFLAGS="-fomit-frame-pointer $CFLAGS"
734                            printf "yes\n"
735                    else
736                            printf "no\n"
737                    fi
738          fi          fi
739            rm -f _testprog _testprog.error _testprog.stdout
740  fi  fi
 rm -f _testprog _testprog.error _testprog.stdout  
741    
742    
743  #  -g  #  -fstrict-aliasing
744  printf "checking whether -g can be used... "  if [ ! z"$DEBUG" = zYES ]; then
745  if [ z"$COMPAQCC" = zYES ]; then          printf "checking whether -fstrict-aliasing can be used... "
746          printf "skipping\n"          $CC $CFLAGS -fstrict-aliasing _testprog.c -o \
747  else              _testprog 1> _testprog.stdout 2>&1
         $CC $CFLAGS -g _testprog.c -o _testprog > _testprog.stdout 2>&1  
748          cat _testprog.stdout >> _testprog.error          cat _testprog.stdout >> _testprog.error
749          if [ -x _testprog ]; then          if grep frame _testprog.error > /dev/null 2>&1; then
                 CFLAGS="-g $CFLAGS"  
                 printf "yes\n"  
         else  
750                  printf "no\n"                  printf "no\n"
751            else
752                    if [ -x _testprog ]; then
753                            CFLAGS="-fstrict-aliasing $CFLAGS"
754                            printf "yes\n"
755                    else
756                            printf "no\n"
757                    fi
758          fi          fi
759            rm -f _testprog _testprog.error _testprog.stdout
760    fi
761    
762    
763    #  -g, for development builds
764    if [ z"$UNSTABLE" = zYES ]; then
765            printf "checking whether -g can be used... "
766            if [ z"$COMPAQCC" = zYES ]; then
767                    $CC $CFLAGS -g3 _testprog.c -o _testprog > _testprog.stdout 2>&1
768                    cat _testprog.stdout >> _testprog.error
769                    if [ -x _testprog ]; then
770                            CFLAGS="-g3 $CFLAGS"
771                            printf "yes (-g3)\n"
772                    else
773                            printf "no\n"
774                    fi
775            else
776                    $CC $CFLAGS -g _testprog.c -o _testprog > _testprog.stdout 2>&1
777                    cat _testprog.stdout >> _testprog.error
778                    if [ -x _testprog ]; then
779                            CFLAGS="-g $CFLAGS"
780                            printf "yes\n"
781                    else
782                            printf "no\n"
783                    fi
784            fi
785            rm -f _testprog _testprog.error _testprog.stdout
786  fi  fi
 rm -f _testprog _testprog.error _testprog.stdout  
787    
788    
789  #  -lrt for nanosleep?  #  -lrt for nanosleep?
# Line 844  rm -f _testr.[co] _testr Line 839  rm -f _testr.[co] _testr
839  #  -lm?  #  -lm?
840  printf "checking for math libs..."  printf "checking for math libs..."
841  printf "#include <math.h>\nint main(int argc, char *argv[]) { " > _testr.c  printf "#include <math.h>\nint main(int argc, char *argv[]) { " > _testr.c
842  printf "double x = sqrt((double)argc); return (int)x; }\n" >> _testr.c  printf "double x = sqrt(sin((double)argc)); return (int)x; }\n" >> _testr.c
843  $CC $CFLAGS _testr.c -o _testr 2> /dev/null  $CC $CFLAGS _testr.c -o _testr 2> /dev/null
844  if [ ! -x _testr ]; then  if [ ! -x _testr ]; then
845          $CC $CFLAGS _testr.c -lm -o _testr 2> /dev/null          $CC $CFLAGS _testr.c -lm -o _testr 2> /dev/null
# Line 925  printf "#include <stdlib.h> Line 920  printf "#include <stdlib.h>
920  #include <stdio.h>  #include <stdio.h>
921  #include <sys/types.h>  #include <sys/types.h>
922  int main(int argc, char *argv[]) { fseeko(NULL, 0, 0); return 0;}\n" > _tests.c  int main(int argc, char *argv[]) { fseeko(NULL, 0, 0); return 0;}\n" > _tests.c
923  $CC $CFLAGS _tests.c -o _tests 2> /dev/null  $CC $CFLAGS $CWARNINGS _tests.c -o _tests 2> /dev/null
924  if [ ! -x _tests ]; then  if [ ! -x _tests ]; then
925          printf "missing\n"          # Try with _LARGEFILE_SOURCE (hack to make fseeko
926          printf "WARNING! fseeko missing from libc. Using a hack, "          # work on 64-bit Linux):
927          printf "which probably doesn't work.\n"          $CC $CFLAGS -D_LARGEFILE_SOURCE $CWARNINGS _tests.c -o _tests 2> /dev/null
928          printf "#define HACK_FSEEKO\n" >> config.h          if [ ! -x _tests ]; then
929                    printf "missing\n"
930                    printf "WARNING! fseeko missing from libc. Using a hack, "
931                    printf "which probably doesn't work.\n"
932                    printf "#define HACK_FSEEKO\n" >> config.h
933            else
934                    printf "using -D_LARGEFILE_SOURCE hack\n"
935                    CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE"
936            fi
937  else  else
938          printf "found\n"          printf "found\n"
939  fi  fi
# Line 987  fi Line 990  fi
990  rm -f _tests.[co] _tests  rm -f _tests.[co] _tests
991    
992    
993    #  Check for PRIx64 in inttypes.h:
994    printf "checking for PRIx64 in inttypes.h... "
995    printf "#include <inttypes.h>\nint main(int argc, char *argv[])\n
996    {\n#ifdef PRIx64\nreturn 0;\n#else\nreturn 1;\n#endif\n}\n" > _testpri.c
997    $CC $CFLAGS _testpri.c -o _testpri 2> /dev/null
998    if [ ! -x _testpri ]; then
999            printf "\nERROR! COULD NOT COMPILE PRIx64 TEST PROGRAM AT ALL!\n"
1000            exit
1001    else
1002            if ./_testpri; then
1003                    printf "yes\n"
1004            else
1005                    printf "no, using an ugly hack instead, "
1006                    printf "#define NO_C99_PRINTF_DEFINES\n" >> config.h
1007    
1008                    # Try llx first:
1009                    printf "#include <stdio.h>\n#include <inttypes.h>\nint main(int argc, char *argv[]){
1010                        printf(\"%%llx\\\n\", (int64_t)128);return 0;}\n" > _testpri.c
1011                    rm -f _testpri
1012                    $CC $CFLAGS $CWARNINGS _testpri.c -o _testpri 2> /dev/null
1013                    if [ z`./_testpri` = z80 ]; then
1014                            printf "PRIx64=llx\n"
1015                            printf "#define NO_C99_64BIT_LONGLONG\n" >> config.h
1016                    else
1017                            # Try lx too:
1018                            printf "#include <stdio.h>\n#include <inttypes.h>\nint main(int argc, char *argv[]){
1019                                printf(\"%%lx\\\n\", (int64_t)128);return 0;}\n" > _testpri.c
1020                            rm -f _testpri
1021                            $CC $CFLAGS $CWARNINGS _testpri.c -o _testpri 2> _testpri.result
1022                            if [ z`./_testpri` = z80 ]; then
1023                                    printf "PRIx64=lx\n"
1024                            else
1025                                    printf "\nFailed, neither lx nor llx worked!\n"
1026                                    exit
1027                            fi
1028                    fi
1029            fi
1030    fi
1031    rm -f _testpri.c _testpri _testpri.result
1032    
1033    
1034  #  Check for 64-bit off_t:  #  Check for 64-bit off_t:
1035  printf "checking for 64-bit off_t... "  printf "checking for 64-bit off_t... "
1036  printf "#include <stdio.h>\n#include <inttypes.h>\n#include <sys/types.h>\n  printf "#include <stdio.h>\n#include <inttypes.h>\n#include <sys/types.h>\n
# Line 1074  if [ ! -x _testuint ]; then Line 1118  if [ ! -x _testuint ]; then
1118  else  else
1119          printf "yes\n"          printf "yes\n"
1120  fi  fi
1121  rm -f _testuint.c _testuint  rm -f _testuint*
1122    
1123    printf "checking for __FUNCTION__... "
1124  ###############################################################################  printf "#include <stdio.h>\n\nint main(int argc, char *argv[]) {
1125  #    if (__FUNCTION__) printf(__FUNCTION__);\n  return 0;\n}\n" > _testfunction.c
1126  #  OLD binary translation (BINTRANS):  $CC $CFLAGS _testfunction.c -o _testfunction 2> /dev/null
1127  #  if [ ! -x _testfunction ]; then
1128  ###############################################################################          printf "no\n"
1129    else
1130  printf "checking for bintrans backend... "          if [ z`./_testfunction` = zmain ]; then
1131                    printf "yes\n"
1132  BINTRANS=NO                  printf "#define HAVE___FUNCTION__\n" >> config.h
1133            else
1134  if [ z$ENABLEMIPS = zNO ]; then                  printf "no\n"
         printf "NO!\nTEMPORARY HACK/PROBLEM: Disabling bintrans for now,\n"  
         printf "until things have stabilized.\n"  
         NOBINTRANS=YES  
 fi  
   
 if [ z$NOBINTRANS = zYES ]; then  
         printf "disabled\n"  
 else  
         #  Alpha:  
         if [ z"`uname -m`" = zalpha ]; then  
                 printf "#define ALPHA\n" >> config.h  
                 printf "#define BINTRANS\n" >> config.h  
                 printf "Alpha\n"  
                 BINTRANS=YES  
         fi  
   
         #  x86:  
         if `uname -m|grep -v 64|grep -q 86`; then  
                 printf "#define I386\n" >> config.h  
                 printf "#define BINTRANS\n" >> config.h  
                 printf "i386\n"  
                 BINTRANS=YES  
         fi  
   
 # MIPS not yet  
 #       #  MIPS:  
 #       if [ z"`uname -m`" = zmips ]; then  
 #               printf "#define MIPS\n" >> config.h  
 #               printf "#define BINTRANS\n" >> config.h  
 #               printf "MIPS\n"  
 #               BINTRANS=YES  
 #       fi  
   
 #       #  UltraSPARC:  
 #       if [ z"`uname -m`" = zsun4u ]; then  
 #               printf "#define SPARCV9\n" >> config.h  
 #               printf "#define BINTRANS\n" >> config.h  
 #               printf "SPARC V9\n"  
 #               BINTRANS=YES  
 #       else  
 #               if [ z"`uname -m`" = zsparc64 ]; then  
 #                       printf "#define SPARCV9\n" >> config.h  
 #                       printf "#define BINTRANS\n" >> config.h  
 #                       printf "SPARC V9\n"  
 #                       BINTRANS=YES  
 #               fi  
 #       fi  
   
         if [ z$BINTRANS = zNO ]; then  
                 printf "not supported yet on this arch\n"  
         fi  
 fi  
   
   
 ###############################################################################  
 #  
 #  Dyntrans recompilation (native backend) support:  
 #  
 ###############################################################################  
   
 if [ z$DYNTRANSBACKEND = zYES ]; then  
         printf "Dyntrans: Not yet.\n"  
         exit  
   
         printf "checking for dyntrans backend... "  
         DBFOUND=NO  
   
         #  Alpha:  
         if [ z"`uname -m`" = zalpha ]; then  
                 printf "#define DYNTRANS_BACKEND_ALPHA\n" >> config.h  
                 printf "Alpha\n"  
                 CPU_BACKENDS="$CPU_BACKENDS backend_alpha.o"  
                 DBFOUND=YES  
         fi  
   
         #  AMD64:  
         #  TODO  
   
 #       #  UltraSPARC:  
 #       if [ z"`uname -m`" = zsun4u ]; then  
 #               printf "#define DYNTRANS_BACKEND_SPARC64\n" >> config.h  
 #               printf "UltraSPARC\n"  
 #               CPU_BACKENDS="$CPU_BACKENDS backend_sparc.o"  
 #               DBFOUND=YES  
 #       fi  
 #       if [ z"`uname -m`" = zsparc64 ]; then  
 #               printf "#define DYNTRANS_BACKEND_SPARC64\n" >> config.h  
 #               printf "UltraSPARC\n"  
 #               CPU_BACKENDS="$CPU_BACKENDS backend_sparc.o"  
 #               DBFOUND=YES  
 #       fi  
   
         #  x86:  
         if `uname -m|grep -q -v 64|grep -q 86`; then  
                 printf "#define DYNTRANS_BACKEND_I386\n" >> config.h  
                 printf "i386\n"  
                 CPU_BACKENDS="$CPU_BACKENDS backend_i386.o"  
                 DBFOUND=YES  
         fi  
   
         if [ z$DBFOUND = zYES ]; then  
                 printf "#define DYNTRANS_BACKEND\n" >> config.h  
         else  
                 printf "not supported yet on this arch ("  
                 printf `uname -m`  
                 printf ")\n"  
1135          fi          fi
1136  fi  fi
1137    rm -f _testfunction*
1138    
1139    
1140  ###############################################################################  ###############################################################################
# Line 1223  else Line 1162  else
1162  fi  fi
1163  rm -f _test_end*  rm -f _test_end*
1164    
1165    
1166  ###############################################################################  ###############################################################################
1167    
1168  INCLUDE=-Iinclude/  INCLUDE=-Iinclude/
# Line 1239  echo "DINCLUDE=$DINCLUDE" >> _Makefile.h Line 1179  echo "DINCLUDE=$DINCLUDE" >> _Makefile.h
1179  echo "CC=$CC" >> _Makefile.header  echo "CC=$CC" >> _Makefile.header
1180  echo "OTHERLIBS=$OTHERLIBS" >> _Makefile.header  echo "OTHERLIBS=$OTHERLIBS" >> _Makefile.header
1181  echo "CPU_ARCHS=$CPU_ARCHS" >> _Makefile.header  echo "CPU_ARCHS=$CPU_ARCHS" >> _Makefile.header
 echo "CPU_BACKENDS=$CPU_BACKENDS" >> _Makefile.header  
1182  echo "CPU_TOOLS=$CPU_TOOLS" >> _Makefile.header  echo "CPU_TOOLS=$CPU_TOOLS" >> _Makefile.header
1183  echo "" >> _Makefile.header  echo "" >> _Makefile.header
1184    
1185    
1186  #  Create the Makefiles:  #  Create the Makefiles:
1187  D=". src src/include src/cpus src/devices src/devices/fonts"  D=". src src/include src/cpus src/debugger src/devices src/devices/fonts"
1188  D="$D src/machines src/promemul"  D="$D src/disk src/file src/machines src/native src/net src/promemul"
1189    D="$D src/useremul"
1190  for a in $D; do  for a in $D; do
1191          echo "creating $a/Makefile"          echo "creating $a/Makefile"
1192          touch $a/Makefile          touch $a/Makefile
# Line 1261  printf "\n#endif  /*  CONFIG_H  */\n" >> Line 1201  printf "\n#endif  /*  CONFIG_H  */\n" >>
1201  rm -f _Makefile.header  rm -f _Makefile.header
1202    
1203  echo Configured. You may now run make to build gxemul.  echo Configured. You may now run make to build gxemul.
1204    

Legend:
Removed from v.22  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26