/[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 12 by dpavlin, Mon Oct 8 16:18:38 2007 UTC revision 28 by dpavlin, Mon Oct 8 16:20:26 2007 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/sh
2  ###############################################################################  ###############################################################################
3  #  #
4  #  Copyright (C) 2003-2005  Anders Gavare.  All rights reserved.  #  Copyright (C) 2003-2006  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.155 2005/08/16 05:37:08 debug Exp $  #  $Id: configure,v 1.226 2006/07/20 21:52:59 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  #    o)  prefetch capability  (TODO: this is assumed on Alpha, but not all  #
53  #                              Alphas have it...)  #
54  #  #  The general philosophy regarding command line switches is that anything
55  #  TODO:  #  which can be incorporated into the program as a runtime command line option
56  #    o)  do not enable prefetch on Alpha ev4 or ev5, only on pca56 and newer  #  should be, instead of requiring a recompile.
 #    o)  X11 libs and includes via command line options?  
57  #  #
58  ###############################################################################  ###############################################################################
59    
# Line 62  Line 61 
61  X=`basename \`pwd\`|cut -d \- -f 2-|cut -c1-2`  X=`basename \`pwd\`|cut -d \- -f 2-|cut -c1-2`
62  if [ z"$X" = z0. ]; then  if [ z"$X" = z0. ]; then
63          #  Stable:          #  Stable:
64            ENABLEALPHA=YES
65            ENABLEARM=YES
66          ENABLEMIPS=YES          ENABLEMIPS=YES
67            ENABLEPPC=YES
68  else  else
69          #  Development:          #  Development:
70            UNSTABLE=YES
71          ENABLEALPHA=YES          ENABLEALPHA=YES
72          ENABLEARM=YES          ENABLEARM=YES
73            ENABLEAVR=YES
74            ENABLEHPPA=YES
75            ENABLEI960=YES
76          ENABLEIA64=YES          ENABLEIA64=YES
77          ENABLEM68K=YES          ENABLEM68K=YES
78          ENABLEMIPS=YES          ENABLEMIPS=YES
79          ENABLEPPC=YES          ENABLEPPC=YES
80            ENABLESH=YES
81          ENABLESPARC=YES          ENABLESPARC=YES
82            ENABLETRANSPUTER=YES
83          ENABLEX86=YES          ENABLEX86=YES
84  fi  fi
85    
86    if [ z"$UNSTABLE" = zYES ]; then
87            printf "###\n###  DEVELOPMENT (UNSTABLE)\n###\n\n"
88    fi
89    
90  if [ z"$*" != z ]; then  if [ z"$*" != z ]; then
91          #  Parse command line options:          #  Parse command line options:
92          for a in $*; do          for a in $*; do
93                  if [ z$a = z--disable-x ]; then                  if [ z$a = z--disable-x ]; then
94                          NOX11=YES                          NOX11=YES
                 else if [ z$a = z--always32 ]; then  
                         ALWAYS32=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-alpha ]; then  
                         ENABLEALPHA=NO  
                 else if [ z$a = z--enable-alpha ]; then  
                         ENABLEALPHA=YES  
                 else if [ z$a = z--disable-arm ]; then  
                         ENABLEARM=NO  
                 else if [ z$a = z--enable-arm ]; then  
                         ENABLEARM=YES  
                 else if [ z$a = z--disable-ia64 ]; then  
                         ENABLEIA64=NO  
                 else if [ z$a = z--enable-ia64 ]; then  
                         ENABLEIA64=YES  
                 else if [ z$a = z--disable-m68k ]; then  
                         ENABLEM68K=NO  
                 else if [ z$a = z--enable-m68k ]; then  
                         ENABLEM86K=YES  
                 else if [ z$a = z--disable-mips ]; then  
                         ENABLEMIPS=NO  
                 else if [ z$a = z--enable-mips ]; then  
                         ENABLEMIPS=YES  
                 else if [ z$a = z--disable-ppc ]; then  
                         ENABLEPPC=NO  
                 else if [ z$a = z--enable-ppc ]; then  
                         ENABLEPPC=YES  
                 else if [ z$a = z--disable-sparc ]; then  
                         ENABLESPARC=NO  
                 else if [ z$a = z--enable-sparc ]; then  
                         ENABLESPARC=YES  
                 else if [ z$a = z--disable-x86 ]; then  
                         ENABLEX86=NO  
                 else if [ z$a = z--enable-x86 ]; then  
                         ENABLEX86=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  
95                  else if [ z$a = z--help ]; then                  else if [ z$a = z--help ]; then
96                          echo "usage: $0 [options]"                          printf "usage: $0 [options]\n\n"
97                            echo "  --disable-x         don't include X11 support,"\
98                          printf "\nGeneral options:\n\n"                              "even if the host supports it"
99                            echo
                         echo "  --disable-bintrans  configure without the" \  
                             "old binary translation subsystem,"  
                         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)"  
                         echo "  --tracenull        enable" \  
                             "TRACE_NULL_CRASHES (for bug hunting)"  
                         printf "  --enable-caches    enable cache emulation"  
                         printf " (BUGGY)\n"  
                         echo "  --enable-delays    enable instruction" \  
                             "latency/delay emulation"  
   
                         if [ z$ENABLEALPHA = zYES ]; then  
                                 printf "  --disable-alpha    disable "  
                         else  
                                 printf "  --enable-alpha     enable "  
                         fi  
                         printf "Alpha CPU emulation\n"  
   
                         if [ z$ENABLEARM = zYES ]; then  
                                 printf "  --disable-arm      disable "  
                         else  
                                 printf "  --enable-arm       enable "  
                         fi  
                         printf "ARM CPU emulation\n"  
   
                         if [ z$ENABLEIA64 = zYES ]; then  
                                 printf "  --disable-ia64     disable "  
                         else  
                                 printf "  --enable-ia64      enable "  
                         fi  
                         printf "IA64 CPU emulation\n"  
   
                         if [ z$ENABLEM68K = zYES ]; then  
                                 printf "  --disable-m68k     disable "  
                         else  
                                 printf "  --enable-m68k      enable "  
                         fi  
                         printf "M68K CPU emulation\n"  
   
                         if [ z$ENABLEMIPS = zYES ]; then  
                                 printf "  --disable-mips     disable "  
                         else  
                                 printf "  --enable-mips      enable "  
                         fi  
                         printf "MIPS CPU emulation\n"  
   
                         if [ z$ENABLEPPC = zYES ]; then  
                                 printf "  --disable-ppc      disable "  
                         else  
                                 printf "  --enable-ppc       enable "  
                         fi  
                         printf "POWER/PPC CPU emulation\n"  
   
                         if [ z$ENABLESPARC = zYES ]; then  
                                 printf "  --disable-sparc    disable "  
                         else  
                                 printf "  --enable-sparc     enable "  
                         fi  
                         printf "SPARC CPU emulation\n"  
   
                         if [ z$ENABLEX86 = zYES ]; then  
                                 printf "  --disable-x86      disable "  
                         else  
                                 printf "  --enable-x86       enable "  
                         fi  
                         printf "x86 CPU emulation\n"  
   
                         echo "  --enable-mips16    enable MIPS16 support"  
   
                         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"  
100                          exit                          exit
101                  else                  else
102                          echo "Invalid option: $a"                          echo "Invalid option: $a"
103                          echo "Run  $0 --help  to get a list of" \                          echo "Run  $0 --help  to get a list of" \
104                              "available options."                              "available options."
105                          exit                          exit
106                  fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi                  fi; fi
                 fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi; fi  
107          done          done
108  fi  fi
109    
# Line 253  else Line 133  else
133  fi  fi
134    
135    
136    if [ z"$UNSTABLE" = zYES ]; then
137            printf "#define UNSTABLE_DEVEL\n" >> config.h
138    fi
139    
140    
141  ZZ=`echo compiled on \`uname\`/\`uname -m\`, \`date\``  ZZ=`echo compiled on \`uname\`/\`uname -m\`, \`date\``
142  printf "#define COMPILE_DATE \"$ZZ\"\n" >> config.h  printf "#define COMPILE_DATE \"$ZZ\"\n" >> config.h
143    
144    
145    
146  #  Support for various CPU types:  #  Support for various CPU types:
 if [ z$MIPS16 = zYES ]; then  
         printf 'Enabling MIPS16 support.  '  
         printf 'NOTE: MIPS16 support is not really working yet.\n'  
         printf "#define ENABLE_MIPS16\n" >> config.h  
 fi  
147  if [ z$ENABLEALPHA = zYES ]; then  if [ z$ENABLEALPHA = zYES ]; then
148          printf "#define ENABLE_ALPHA\n" >> config.h          printf "#define ENABLE_ALPHA\n" >> config.h
149          CPU_ARCHS="$CPU_ARCHS cpu_alpha.o cpu_alpha_palcode.o"          CPU_ARCHS="$CPU_ARCHS cpu_alpha.o cpu_alpha_palcode.o memory_alpha.o"
150            CPU_TOOLS="$CPU_TOOLS generate_alpha_misc"
151  fi  fi
152  if [ z$ENABLEARM = zYES ]; then  if [ z$ENABLEARM = zYES ]; then
153          printf "#define ENABLE_ARM\n" >> config.h          printf "#define ENABLE_ARM\n" >> config.h
154          CPU_ARCHS="$CPU_ARCHS cpu_arm.o"          CPU_ARCHS="$CPU_ARCHS cpu_arm.o cpu_arm_coproc.o memory_arm.o "
155            CPU_ARCHS="$CPU_ARCHS tmp_arm_dpi.o tmp_arm_loadstore.o tmp_arm_r.o"
156            CPU_ARCHS="$CPU_ARCHS tmp_arm_r0.o tmp_arm_r1.o"
157            CPU_ARCHS="$CPU_ARCHS tmp_arm_r2.o tmp_arm_r3.o"
158            CPU_ARCHS="$CPU_ARCHS tmp_arm_r4.o tmp_arm_r5.o"
159            CPU_ARCHS="$CPU_ARCHS tmp_arm_r6.o tmp_arm_r7.o"
160            CPU_ARCHS="$CPU_ARCHS tmp_arm_r8.o tmp_arm_r9.o"
161            CPU_ARCHS="$CPU_ARCHS tmp_arm_ra.o tmp_arm_rb.o"
162            CPU_ARCHS="$CPU_ARCHS tmp_arm_rc.o tmp_arm_rd.o"
163            CPU_ARCHS="$CPU_ARCHS tmp_arm_re.o tmp_arm_rf.o tmp_arm_multi.o"
164            CPU_TOOLS="$CPU_TOOLS generate_arm_dpi generate_arm_r"
165            CPU_TOOLS="$CPU_TOOLS generate_arm_loadstore generate_arm_multi"
166    fi
167    if [ z$ENABLEAVR = zYES ]; then
168            printf "#define ENABLE_AVR\n" >> config.h
169            CPU_ARCHS="$CPU_ARCHS cpu_avr.o"
170    fi
171    if [ z$ENABLEHPPA = zYES ]; then
172            printf "#define ENABLE_HPPA\n" >> config.h
173            CPU_ARCHS="$CPU_ARCHS cpu_hppa.o"
174    fi
175    if [ z$ENABLEI960 = zYES ]; then
176            printf "#define ENABLE_I960\n" >> config.h
177            CPU_ARCHS="$CPU_ARCHS cpu_i960.o"
178  fi  fi
179  if [ z$ENABLEIA64 = zYES ]; then  if [ z$ENABLEIA64 = zYES ]; then
180          printf "#define ENABLE_IA64\n" >> config.h          printf "#define ENABLE_IA64\n" >> config.h
# Line 282  if [ z$ENABLEM68K = zYES ]; then Line 186  if [ z$ENABLEM68K = zYES ]; then
186  fi  fi
187  if [ z$ENABLEMIPS = zYES ]; then  if [ z$ENABLEMIPS = zYES ]; then
188          printf "#define ENABLE_MIPS\n" >> config.h          printf "#define ENABLE_MIPS\n" >> config.h
189            CPU_ARCHS="$CPU_ARCHS cpu_mips.o cpu_mips_coproc.o "
190            CPU_ARCHS="$CPU_ARCHS cpu_mips_instr_unaligned.o"
191            CPU_TOOLS="$CPU_TOOLS generate_mips_loadstore"
192  fi  fi
193  if [ z$ENABLEPPC = zYES ]; then  if [ z$ENABLEPPC = zYES ]; then
194          printf "#define ENABLE_PPC\n" >> config.h          printf "#define ENABLE_PPC\n" >> config.h
195          CPU_ARCHS="$CPU_ARCHS cpu_ppc.o"          CPU_ARCHS="$CPU_ARCHS cpu_ppc.o"
196            CPU_TOOLS="$CPU_TOOLS generate_ppc_loadstore"
197    fi
198    if [ z$ENABLESH = zYES ]; then
199            printf "#define ENABLE_SH\n" >> config.h
200            CPU_ARCHS="$CPU_ARCHS cpu_sh.o"
201  fi  fi
202  if [ z$ENABLESPARC = zYES ]; then  if [ z$ENABLESPARC = zYES ]; then
203          printf "#define ENABLE_SPARC\n" >> config.h          printf "#define ENABLE_SPARC\n" >> config.h
204          CPU_ARCHS="$CPU_ARCHS cpu_sparc.o"          CPU_ARCHS="$CPU_ARCHS cpu_sparc.o"
205            CPU_TOOLS="$CPU_TOOLS generate_sparc_loadstore"
206    fi
207    if [ z$ENABLETRANSPUTER = zYES ]; then
208            printf "#define ENABLE_TRANSPUTER\n" >> config.h
209            CPU_ARCHS="$CPU_ARCHS cpu_transputer.o"
210  fi  fi
211  if [ z$ENABLEX86 = zYES ]; then  if [ z$ENABLEX86 = zYES ]; then
212          printf "#define ENABLE_X86\n" >> config.h          printf "#define ENABLE_X86\n" >> config.h
# Line 297  if [ z$ENABLEX86 = zYES ]; then Line 214  if [ z$ENABLEX86 = zYES ]; then
214  fi  fi
215    
216    
 #  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  
   
   
 #  Development option: TRACE_NULL_CRASHES  
 if [ z$TRACENULL = zYES ]; then  
         echo 'Enabling TRACE_NULL_CRASHES. (NOTE:' \  
             'This slows down the emulator.)'  
         printf "#define TRACE_NULL_CRASHES\n" >> config.h  
 fi  
   
   
217  #  Cache emulation:  #  Cache emulation:
218  if [ z$CACHES = zYES ]; then  if [ z$CACHES = zYES ]; then
219          echo 'Enabling Cache emulation. (EXPERIMENTAL)'          echo 'Enabling Cache emulation. (EXPERIMENTAL and BUGGY)'
220          printf "#define ENABLE_CACHE_EMULATION\n" >> config.h          printf "#define ENABLE_CACHE_EMULATION\n" >> config.h
221    
         if [ z$DELAYS != zYES ]; then  
                 printf 'WARNING: Cache emulation without instruction '  
                 printf 'delay/latency emulation\n'  
                 printf '         (--delays) will not produce correct '  
                 printf 'cache miss penalties and such.\n'  
         fi  
   
222          printf "\nNOTE: Cache emulation enabled, but right now it triggers "          printf "\nNOTE: Cache emulation enabled, but right now it triggers "
223          printf "weird bugs in the\n      emulator. You have been warned.\n\n"          printf "weird bugs in the\n      emulator. You have been warned.\n\n"
224  fi  fi
# Line 411  if [ z"$CC" = z ]; then Line 298  if [ z"$CC" = z ]; then
298          fi          fi
299          rm -f _testprog          rm -f _testprog
300    
301          #  Try ccc (FreeBSD/Alpha):  #       #  Try ccc (FreeBSD/Alpha):
302          printf "#!/bin/sh\nccc _testprog.c -o _testprog >" > _test.sh  #       printf "#!/bin/sh\nccc _testprog.c -o _testprog >" > _test.sh
303          printf " /dev/null 2> /dev/null\n" >> _test.sh  #       printf " /dev/null 2> /dev/null\n" >> _test.sh
304          chmod 755 _test.sh  #       chmod 755 _test.sh
305          ./_test.sh > /dev/null 2> /dev/null  #       ./_test.sh > /dev/null 2> /dev/null
306          if [ -x _testprog ]; then  #       if [ -x _testprog ]; then
307                  CC="ccc"  #               CC="ccc"
308          fi  #       fi
309          rm -f _testprog  #       rm -f _testprog
310    
311          rm -f _test.sh          rm -f _test.sh
312  fi  fi
# Line 673  if [ -x _testprog ]; then Line 560  if [ -x _testprog ]; then
560          if [ z"$COMPAQCC" = zYES ]; then          if [ z"$COMPAQCC" = zYES ]; then
561                  CWARNINGS="$CWARNINGS -msg_disable longlongtype,unusedtop"                  CWARNINGS="$CWARNINGS -msg_disable longlongtype,unusedtop"
562          fi          fi
563    
564            if [ z"$UNSTABLE" = zYES ]; then
565                    printf "checking whether -Werror can be used... "
566                    rm -f _testprog
567                    $CC $CFLAGS $CWARNINGS _testprog.c -o _testprog -Werror 2> /dev/null
568                    if [ -x _testprog ]; then
569                            printf "yes\n"
570                            CWARNINGS="$CWARNINGS -Werror"
571                    else
572                            printf "no\n"
573                    fi
574            fi
575  else  else
576          printf "no\n"          printf "no\n"
577  fi  fi
# Line 680  rm -f _testprog Line 579  rm -f _testprog
579    
580    
581  if [ z"$COMPAQCC" = zYES ]; then  if [ z"$COMPAQCC" = zYES ]; then
582          #  -O4 is possible, but is -O3 better?          #  -O4 is possible, but sometimes -O3 is better?
583          CFLAGS="-O4 $CFLAGS"          CFLAGS="-O4 $CFLAGS"
584  else  else
585          if [ z"`uname`" = zSunOS ]; then          if [ z"`uname`" = zSunOS ]; then
# Line 695  else Line 594  else
594                  $CC $CFLAGS _testprog.c -o _testprog -O 2> /dev/null                  $CC $CFLAGS _testprog.c -o _testprog -O 2> /dev/null
595                  if [ -x _testprog ]; then                  if [ -x _testprog ]; then
596                          rm -f _testprog                          rm -f _testprog
597                          $CC $CFLAGS _testprog.c -o _testprog -O2 2> /dev/null                          $CC $CFLAGS _testprog.c -o _testprog -O3 2> /dev/null
598                          if [ -x _testprog ]; then                          if [ -x _testprog ]; then
599                                  CFLAGS="-O2 $CFLAGS"                                  CFLAGS="-O3 $CFLAGS"
600                          else                          else
601                                  CFLAGS="-O $CFLAGS"                                  CFLAGS="-O $CFLAGS"
602                          fi                          fi
# Line 785  fi Line 684  fi
684  rm -f _testprog _testprog.error _testprog.stdout  rm -f _testprog _testprog.error _testprog.stdout
685    
686    
687    #  -g
688    printf "checking whether -g can be used... "
689    if [ z"$COMPAQCC" = zYES ]; then
690            printf "skipping\n"
691    else
692            $CC $CFLAGS -g _testprog.c -o _testprog > _testprog.stdout 2>&1
693            cat _testprog.stdout >> _testprog.error
694            if [ -x _testprog ]; then
695                    CFLAGS="-g $CFLAGS"
696                    printf "yes\n"
697            else
698                    printf "no\n"
699            fi
700    fi
701    rm -f _testprog _testprog.error _testprog.stdout
702    
703    
704  #  -lrt for nanosleep?  #  -lrt for nanosleep?
705  printf "checking whether -lrt is required for nanosleep... "  printf "checking whether -lrt is required for nanosleep... "
706  printf "#include <time.h>\n#include <stdio.h>  printf "#include <time.h>\n#include <stdio.h>
# Line 919  printf "#include <stdlib.h> Line 835  printf "#include <stdlib.h>
835  #include <stdio.h>  #include <stdio.h>
836  #include <sys/types.h>  #include <sys/types.h>
837  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
838  $CC $CFLAGS _tests.c -o _tests 2> /dev/null  $CC $CFLAGS $CWARNINGS _tests.c -o _tests 2> /dev/null
839  if [ ! -x _tests ]; then  if [ ! -x _tests ]; then
840          printf "missing\n"          # Try with _LARGEFILE_SOURCE (hack to make fseeko
841          printf "WARNING! fseeko missing from libc. Using a hack, "          # work on 64-bit Linux):
842          printf "which probably doesn't work.\n"          $CC $CFLAGS -D_LARGEFILE_SOURCE $CWARNINGS _tests.c -o _tests 2> /dev/null
843          printf "#define HACK_FSEEKO\n" >> config.h          if [ ! -x _tests ]; then
844                    printf "missing\n"
845                    printf "WARNING! fseeko missing from libc. Using a hack, "
846                    printf "which probably doesn't work.\n"
847                    printf "#define HACK_FSEEKO\n" >> config.h
848            else
849                    printf "using -D_LARGEFILE_SOURCE hack\n"
850                    CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE"
851            fi
852  else  else
853          printf "found\n"          printf "found\n"
854  fi  fi
# Line 981  fi Line 905  fi
905  rm -f _tests.[co] _tests  rm -f _tests.[co] _tests
906    
907    
908    #  Check for PRIx64 in inttypes.h:
909    printf "checking for PRIx64 in inttypes.h... "
910    printf "#include <inttypes.h>\nint main(int argc, char *argv[])\n
911    {\n#ifdef PRIx64\nreturn 0;\n#else\nreturn 1;\n#endif\n}\n" > _testpri.c
912    $CC $CFLAGS _testpri.c -o _testpri 2> /dev/null
913    if [ ! -x _testpri ]; then
914            printf "\nERROR! COULD NOT COMPILE PRIx64 TEST PROGRAM AT ALL!\n"
915            exit
916    else
917            if ./_testpri; then
918                    printf "yes\n"
919            else
920                    printf "no, using an ugly hack instead, "
921                    printf "#define NO_C99_PRINTF_DEFINES\n" >> config.h
922    
923                    # Try llx first:
924                    printf "#include <stdio.h>\n#include <inttypes.h>\nint main(int argc, char *argv[]){
925                        printf(\"%%llx\\\n\", (int64_t)128);return 0;}\n" > _testpri.c
926                    rm -f _testpri
927                    $CC $CFLAGS $CWARNINGS _testpri.c -o _testpri 2> /dev/null
928                    if [ z`./_testpri` = z80 ]; then
929                            printf "PRIx64=llx\n"
930                            printf "#define NO_C99_64BIT_LONGLONG\n" >> config.h
931                    else
932                            # Try lx too:
933                            printf "#include <stdio.h>\n#include <inttypes.h>\nint main(int argc, char *argv[]){
934                                printf(\"%%lx\\\n\", (int64_t)128);return 0;}\n" > _testpri.c
935                            rm -f _testpri
936                            $CC $CFLAGS $CWARNINGS _testpri.c -o _testpri 2> /dev/null
937                            if [ z`./_testpri` = z80 ]; then
938                                    printf "PRIx64=lx\n"
939                            else
940                                    printf "\nFailed, neither lx nor llx worked!\n"
941                                    exit
942                            fi
943                    fi
944            fi
945    fi
946    rm -f _testpri.c _testpri
947    
948    
949  #  Check for 64-bit off_t:  #  Check for 64-bit off_t:
950  printf "checking for 64-bit off_t... "  printf "checking for 64-bit off_t... "
951  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 1016  rm -f _testoff.c _testoff Line 981  rm -f _testoff.c _testoff
981    
982    
983  #  Check for u_int8_t etc:  #  Check for u_int8_t etc:
984    #  These are needed because some header files in src/include/ use u_int*
985    #  instead of uint*, and I don't have time to rewrite them all.
986  printf "checking for u_int8_t... "  printf "checking for u_int8_t... "
987  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
988  int main(int argc, char *argv[]){printf(\"%%i\\\n\",  int main(int argc, char *argv[]){printf(\"%%i\\\n\",
# Line 1037  if [ ! -x _testuint ]; then Line 1004  if [ ! -x _testuint ]; then
1004          printf "typedef uint8_t u_int8_t;\n" >> config.h          printf "typedef uint8_t u_int8_t;\n" >> config.h
1005          printf "typedef uint16_t u_int16_t;\n" >> config.h          printf "typedef uint16_t u_int16_t;\n" >> config.h
1006          printf "typedef uint32_t u_int32_t;\n" >> config.h          printf "typedef uint32_t u_int32_t;\n" >> config.h
         printf "typedef uint64_t u_int64_t;\n" >> config.h  
1007          printf "uint8_t\n"          printf "uint8_t\n"
1008  else  else
1009          printf "yes\n"          printf "yes\n"
1010  fi  fi
1011  rm -f _testuint.c _testuint  rm -f _testuint.c _testuint
1012    
1013    printf "checking for u_int64_t... "
1014  ###############################################################################  printf "#include <stdio.h>\n#include <inttypes.h>\n#include <sys/types.h>\n
1015  #  int main(int argc, char *argv[]){printf(\"%%i\\\n\",
1016  #  Dynamic binary translation (BINTRANS):   (int)sizeof(u_int64_t));return 0;}\n" > _testuint.c
1017  #  $CC $CFLAGS _testuint.c -o _testuint 2> /dev/null
1018  ###############################################################################  if [ ! -x _testuint ]; then
1019            rm -f _testuint*
1020  printf "checking for bintrans backend... "          printf "#include <stdio.h>\n#include <inttypes.h>
1021            \n#include <sys/types.h>\nint main(int argc, char *argv[])
1022  BINTRANS=NO          {printf(\"%%i\\\n\", (int)sizeof(uint64_t));return 0;}\n" > _testuint.c
1023            $CC $CFLAGS _testuint.c -o _testuint 2> /dev/null
1024  if [ z$ENABLEMIPS = zNO ]; then          if [ ! -x _testuint ]; then
1025          printf "NO!\nTEMPORARY HACK/PROBLEM: Disabling bintrans for now,\n"                  printf "no\n\nERROR: No u_int64_t or uint64_t. Aborting\n"
1026          printf "until things have stabilized.\n"                  #  TODO: Automagically detect using various combinations
1027          NOBINTRANS=YES                  #  of char, int, short, long etc.
1028  fi                  exit
   
 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:  (all machines ending in "86" are treated as i386)  
         if [ z"`uname -m|rev|cut -c1-2`" = z68 ]; 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"  
1029          fi          fi
1030    
1031            printf "typedef uint64_t u_int64_t;\n" >> config.h
1032            printf "uint64_t\n"
1033    else
1034            printf "yes\n"
1035  fi  fi
1036    rm -f _testuint.c _testuint
1037    
1038    
1039  ###############################################################################  ###############################################################################
# Line 1137  rm -f _test_end* Line 1063  rm -f _test_end*
1063    
1064  ###############################################################################  ###############################################################################
1065    
 #  Prefetch support?  
 printf "checking for asm prefetch support... "  
 if [ z"`uname -m`" = zalpha ]; then  
         rm -f _alpha_asm_test.c _alpha_asm_test  
         printf 'int main(int argc, char *argv[])  
          { int x; int *y = &x; asm ("ldl $31,0(%%0)" : : "g" (y));  
           return 0; }\n' > _alpha_asm_test.c  
         $CC $CFLAGS -O2 _alpha_asm_test.c -o _alpha_asm_test \  
             > /dev/null 2> /dev/null  
         if [ -x _alpha_asm_test ]; then  
 #               printf "#define HAVE_PREFETCH\n" >> config.h  
                 printf "#define PREFETCH(x) asm(\"ldl" >> config.h  
                 printf " \$31,0(%%0)\" : : \"g\" (x))\n" >> config.h  
                 echo "yes"  
                 PREFSUP=YES  
         fi  
         rm -f _alpha_asm_test.c _alpha_asm_test  
 fi  
 if [ z$PREFSUP = z ]; then  
         printf "#define PREFETCH(x) { }\n" >> config.h  
         echo "no"  
 fi  
   
   
 ###############################################################################  
   
1066  INCLUDE=-Iinclude/  INCLUDE=-Iinclude/
1067  DINCLUDE=-I../include/  DINCLUDE=-I../include/
1068    
# Line 1177  echo "DINCLUDE=$DINCLUDE" >> _Makefile.h Line 1077  echo "DINCLUDE=$DINCLUDE" >> _Makefile.h
1077  echo "CC=$CC" >> _Makefile.header  echo "CC=$CC" >> _Makefile.header
1078  echo "OTHERLIBS=$OTHERLIBS" >> _Makefile.header  echo "OTHERLIBS=$OTHERLIBS" >> _Makefile.header
1079  echo "CPU_ARCHS=$CPU_ARCHS" >> _Makefile.header  echo "CPU_ARCHS=$CPU_ARCHS" >> _Makefile.header
1080    echo "CPU_TOOLS=$CPU_TOOLS" >> _Makefile.header
1081  echo "" >> _Makefile.header  echo "" >> _Makefile.header
1082    
1083    
1084  #  Create the Makefiles:  #  Create the Makefiles:
1085    D=". src src/include src/cpus src/debugger src/devices src/devices/fonts"
1086  for a in . src src/devices src/devices/fonts; do  D="$D src/machines src/promemul doc"
1087    for a in $D; do
1088          echo "creating $a/Makefile"          echo "creating $a/Makefile"
1089          touch $a/Makefile          touch $a/Makefile
1090          cat _Makefile.header > $a/Makefile          cat _Makefile.header > $a/Makefile

Legend:
Removed from v.12  
changed lines
  Added in v.28

  ViewVC Help
Powered by ViewVC 1.1.26