aboutsummaryrefslogtreecommitdiff
path: root/sim/mips/configure.in
blob: 2c6e077225281bcaed74d39a574b6cec1e4c3bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
dnl Process this file with autoconf to produce a configure script.
sinclude(../common/aclocal.m4)
AC_PREREQ(2.5)dnl
AC_INIT(Makefile.in)

SIM_AC_COMMON

dnl Options available in this module
SIM_AC_OPTION_INLINE()
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
SIM_AC_OPTION_HOSTENDIAN
SIM_AC_OPTION_WARNINGS

# DEPRECATED
#
# Instead of defining a `subtarget' macro, code should be checking
# the value of {STATE,CPU}_ARCHITECTURE to identify the architecture
# in question.
#
case "${target}" in
# start-sanitize-vr4xxx
  mips64vr4xxx*-*-*)	SIM_SUBTARGET="-DTARGET_ENABLE_FR=1" ;;
# end-sanitize-vr4xxx
# start-sanitize-tx19
  mips*tx19*)		SIM_SUBTARGET="-DSUBTARGET_R3900=1";;
# end-sanitize-tx19
  mips64vr5xxx*-*-*)	SIM_SUBTARGET="-DTARGET_ENABLE_FR=1" ;;
  mips*tx39*)           SIM_SUBTARGET="-DSUBTARGET_R3900=1";;
  *)                    SIM_SUBTARGET="";;
esac
AC_SUBST(SIM_SUBTARGET)



#
# Select the byte order of the target
#
mips_endian=
default_endian=
case "${target}" in
# start-sanitize-tx19
  mips*tx19*)        default_endian=BIG_ENDIAN ;;
# end-sanitize-tx19
# start-sanitize-r5900
  mips64r59*-*-*)	mips_endian=LITTLE_ENDIAN ;;
# end-sanitize-r5900
  mips64el*-*-*)	mips_endian=LITTLE_ENDIAN ;;
  mips64*-*-*)          default_endian=BIG_ENDIAN ;;
  mips16*-*-*)          default_endian=BIG_ENDIAN ;;
  mips*-*-*)            default_endian=BIG_ENDIAN ;;
  *)                    default_endian=BIG_ENDIAN ;;
esac
SIM_AC_OPTION_ENDIAN($mips_endian,$default_endian)



#
# Select the bitsize of the target
#
mips_addr_bitsize=
case "${target}" in
# start-sanitize-tx19
  mips*tx19*)        mips_bitsize=32 ; mips_msb=31 ;;
# end-sanitize-tx19
# start-sanitize-r5900
  mips64r59*-*-*)	mips_bitsize=64 ; mips_msb=63 ; mips_addr_bitsize=32;;
# end-sanitize-r5900
# start-sanitize-sky
  mips64*-sky*-*)       mips_bitsize=64 ; mips_msb=63 ; mips_addr_bitsize=32;;
# end-sanitize-sky
  mips64*-*-*)          mips_bitsize=64 ; mips_msb=63 ;;
  mips16*-*-*)          mips_bitsize=64 ; mips_msb=63 ;;
  mips*-*-*)            mips_bitsize=32 ; mips_msb=31 ;;
  *)                    mips_bitsize=64 ; mips_msb=63 ;;
esac
SIM_AC_OPTION_BITSIZE($mips_bitsize,$mips_msb,$mips_addr_bitsize)



#
# Select the floating hardware support of the target
#
mips_fpu=HARDWARE_FLOATING_POINT
mips_fpu_bitsize=
case "${target}" in
# start-sanitize-tx19
  mips*tx19*)		mips_fpu=SOFT_FLOATING_POINT ;;
# end-sanitize-tx19
  mips*tx39*)		mips_fpu=HARD_FLOATING_POINT
			mips_fpu_bitsize=32
			;;
# start-sanitize-vr4xxx
  mips64vr4xxx*-*-*)	mips_fpu=HARD_FLOATING_POINT ; mips_fpu_bitsize=64 ;;
# end-sanitize-vr4xxx
# start-sanitize-r5900
  mips64r59*-*-*)       mips_fpu=HARD_FLOATING_POINT ; mips_fpu_bitsize=32 ;;
# end-sanitize-r5900
# start-sanitize-sky
  mips64*-sky*-*)       mips_fpu=HARD_FLOATING_POINT ; mips_fpu_bitsize=32 ;;
# end-sanitize-sky
  mips64*-*-*)          mips_fpu=HARD_FLOATING_POINT ;;
  mips16*-*-*)          mips_fpu=HARD_FLOATING_POINT ;;
  mips*-*-*)            mips_fpu=HARD_FLOATING_POINT ; mips_fpu_bitsize=32 ;;
  *)                    mips_fpu=HARD_FLOATING_POINT ;;
esac
SIM_AC_OPTION_FLOAT($mips_fpu,$mips_fpu_bitsize)



#
# Select the level of SMP support
#
case "${target}" in
# start-sanitize-r5900
  mips64r59*-*-*)       mips_smp=1 ;;
# end-sanitize-r5900
  *)                    mips_smp=0 ;;
esac
SIM_AC_OPTION_SMP($mips_smp)



#
# Select the IGEN architecture
#
sim_gen=IGEN
sim_igen_machine="-M mipsIV"
sim_m16_machine="-M mips16"
sim_igen_filter="32,64,f"
sim_m16_filter="16"
case "${target}" in
# start-sanitize-tx19
  mips*tx19*)		sim_gen=M16
			sim_igen_machine="-M tx19"
			sim_m16_machine="-M tx19"
			sim_igen_filter="32"
			sim_m16_filter="16"
			;;
# end-sanitize-tx19
  mips*tx39*)		sim_gen=IGEN
			sim_igen_filter="32,f"
			sim_igen_machine="-M r3900"
			;;
# start-sanitize-r5900
  mips64r59*-*-*)	sim_gen=IGEN
			sim_igen_machine="-M r5900"
			;;
# end-sanitize-r5900
# start-sanitize-vr4320
  mips64vr4320-*-*)	sim_gen=IGEN
			sim_igen_machine="-M mipsIV,vr4320 -G gen-multi-sim=vr4320"
			;;
# end-sanitize-vr4320
  mips64vr43*-*-*)	sim_gen=IGEN
			sim_igen_machine="-M mipsIV"
# start-sanitize-vr4320
			sim_igen_machine="-M mipsIV,vr4320 -G gen-multi-sim=mipsIV"
# end-sanitize-vr4320
			;;
# start-sanitize-cygnus
  mips64vr54*-*-*)	sim_gen=IGEN
			sim_igen_machine="-M vr5000,vr5400 -G gen-multi-sim=vr5400"
			;;
# end-sanitize-cygnus
  mips64vr5*-*-*)	sim_gen=IGEN
			sim_igen_machine="-M vr5000"
# start-sanitize-cygnus
			sim_igen_machine="-M vr5000,vr5400 -G gen-multi-sim=vr5000"
# end-sanitize-cygnus
			;;
# start-sanitize-vr4xxx
  mips64vr4xxx*-*-*)	sim_gen=HACK
			sim_igen_filter="32,64,f"
			;;
#  mips64vr4xxx*-*-*)	sim_gen=IGEN
#			sim_igen_machine="-M mipsIV,vr4100,vr4121 -G gen-multi-sim=mipsIV"
#                        ;;
#  mips64vr4xxx*-*-*)	sim_gen=M16
#			sim_igen_machine="-M mipsIV,vr4100 -G gen-multi-sim=mipsV"
#			sim_m16_machine="-M vr4100"
#			sim_igen_filter="32,64,f"
#			sim_m16_filter="16"
#                        ;;
# end-sanitize-vr4xxx
  mips64vr41*)		sim_gen=M16
			sim_igen_machine="-M vr4100"
			sim_m16_machine="-M vr4100"
			sim_igen_filter="32,64,f"
			sim_m16_filter="16"
                        ;;
  mips64*-*-*)		sim_igen_filter="32,64,f"
			sim_gen=IGEN
			;;
  mips16*-*-*)		sim_gen=M16
			sim_igen_filter="32,64,f"
			sim_m16_filter="16"
			;;
  mips*lsi*)	        sim_gen=M16
			sim_igen_machine="-M mipsIII,mips16"
			sim_m16_machine="-M mips16,mipsIII"
			sim_igen_filter="32,f"
			sim_m16_filter="16"
                        ;;
  mips*-*-*)		sim_gen=IGEN
			sim_igen_filter="32,f"
			;;
esac
sim_igen_flags="-F ${sim_igen_filter} ${sim_igen_machine} ${sim_igen_smp}"
sim_m16_flags=" -F ${sim_m16_filter}  ${sim_m16_machine}  ${sim_igen_smp}"
AC_SUBST(sim_igen_flags)
AC_SUBST(sim_m16_flags)
AC_SUBST(sim_gen)


#
# Add simulated hardware devices
#
hw_enabled=no
case "${target}" in
  mips*tx39*)
	hw_enabled=yes
	hw_extra_devices="tx3904cpu tx3904irc tx3904tmr tx3904sio" 
	mips_extra_objs="dv-sockser.o"
	SIM_SUBTARGET="$SIM_SUBTARGET -DTARGET_TX3904=1"
	;;
# start-sanitize-sky
  mips64r59*-sky-*)
	mips_extra_objs='$(SIM_SKY_OBJS)' 
	SIM_SUBTARGET="-DTARGET_SKY -DWITH_DEVICES=1 -DDEVICE_INIT=1"
	;;
  mips64*-skyb-*)
	mips_extra_objs='$(SIM_SKY_OBJS)'
        SIM_SUBTARGET="-DTARGET_SKY -DTARGET_SKY_B -DWITH_DEVICES=1 -DDEVICE_INIT=1"
	;;
# end-sanitize-sky
  *)
	mips_extra_objs="" 
	;;
esac
SIM_AC_OPTION_HARDWARE($hw_enabled,$hw_devices,$hw_extra_devices)
AC_SUBST(mips_extra_objs)


# Choose simulator engine
case "${target}" in
# start-sanitize-sky
  mips64r59*-sky-*)
        mips_igen_engine=""
	;;
  mips64*-skyb-*)
        mips_igen_engine=""
	;;
# end-sanitize-sky
  *)    mips_igen_engine="engine.o"
	;;
esac
AC_SUBST(mips_igen_engine)


AC_PATH_X
mips_extra_libs=""
# start-sanitize-sky
# Enable GPU2 library
AC_ARG_WITH(sim-gpu2,
[  --with-sim-gpu2=path			Use GPU2 library under given directory],
[if test -d "${withval}"
then
  SIM_SUBTARGET="${SIM_SUBTARGET} -DSKY_GPU2 -I${withval}/include"
  mips_extra_libs="-L${withval}/lib -lgpu2 -L${x_libraries} -lX11 -lXext"
  WITH_GPU2="yes" ; export WITH_GPU2

  # complex X/etc. detection; stolen shamelessly from tcl/tk/gdb configury.  --angela

  #--------------------------------------------------------------------
  #	Locate the X11 header files and the X11 library archive.  Try
  #	the ac_path_x macro first, but if it doesn't find the X stuff
  #	(e.g. because there's no xmkmf program) then check through
  #	a list of possible directories.  Under some conditions the
  #	autoconf macro will return an include directory that contains
  #	no include files, so double-check its result just to be safe.
  #--------------------------------------------------------------------
  
  AC_PATH_X
  not_really_there=""
  if test "$no_x" = ""; then
      if test "$x_includes" = ""; then
  	AC_TRY_CPP([#include <X11/XIntrinsic.h>], , not_really_there="yes")
      else
  	if test ! -r $x_includes/X11/Intrinsic.h; then
  	    not_really_there="yes"
  	fi
      fi
  fi
  if test "$no_x" = "yes" -o "$not_really_there" = "yes"; then
      AC_MSG_CHECKING(for X11 header files)
      XINCLUDES="# no special path needed"
      AC_TRY_CPP([#include <X11/Intrinsic.h>], , XINCLUDES="nope")
      if test "$XINCLUDES" = nope; then
          dirs="/usr/unsupported/include /usr/local/include /usr/X386/include /usr/X11R6/include /usr/X11R5/include /usr/include/X11R5 /usr/include/X11R4 /usr/openwin/include /usr/X11/include /usr/sww/include"
          for i in $dirs ; do
  	    if test -r $i/X11/Intrinsic.h; then
  		AC_MSG_RESULT($i)
  	        XINCLUDES=" -I$i"
  		break
  	    fi
          done
      fi
  else
      if test "$x_includes" != ""; then
  	XINCLUDES=-I$x_includes
      else
  	XINCLUDES="# no special path needed"
      fi
  fi
  if test "$XINCLUDES" = nope; then
      AC_MSG_RESULT(couldn't find any!)
      XINCLUDES="# no include files found"
  fi
  
  if test "$no_x" = yes; then
      AC_MSG_CHECKING(for X11 libraries)
      XLIBSW=nope
      dirs="/usr/unsupported/lib /usr/local/lib /usr/X386/lib /usr/X11R6/lib /usr/X11R5/lib /usr/lib/X11R5 /usr/lib/X11R4 /usr/lib/X11 /usr/openwin/lib /usr/X11/lib /usr/sww/X11/lib"
      for i in $dirs ; do
  	if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.sl; then
  	    AC_MSG_RESULT($i)
  	    XLIBSW="-L$i -lX11"
  	    x_libraries="$i"
  	    break
  	fi
      done
  else
      if test "$x_libraries" = ""; then
  	XLIBSW=-lX11
      else
  	XLIBSW="-L$x_libraries -lX11"
      fi
  fi
  if test "$XLIBSW" = nope ; then
      AC_CHECK_LIB(Xwindow, XCreateWindow, XLIBSW=-lXwindow)
  fi
  if test "$XLIBSW" = nope ; then
      AC_MSG_RESULT(couldn't find any!  Using -lX11.)
      XLIBSW=-lX11
  fi
  
  #--------------------------------------------------------------------
  #	Various manipulations on the search path used at runtime to
  #	find shared libraries:
  #	1. If the X library binaries are in a non-standard directory,
  #	   add the X library location into that search path.
  #	2. On systems such as AIX and Ultrix that use "-L" as the
  #	   search path option, colons cannot be used to separate
  #	   directories from each other. Change colons to " -L".
  #	3. Create two sets of search flags, one for use in cc lines
  #	   and the other for when the linker is invoked directly.  In
  #	   the second case, '-Wl,' must be stripped off and commas must
  #	   be replaced by spaces.
  #--------------------------------------------------------------------
  
  #
  # CYGNUS LOCAL:  statically link on Solaris, HPUX & SunOS so that
  #                we don't have problems with people not having libraries
  #                installed or not having LD_LIBRARY_PATH set.
  #
  
      case "$host" in
  #
  # gdb linked statically w/ Solaris iff GCC and GNU ld are used,
  # otherwise dynamic
  #
          sparc-sun-solaris2*)
  	    sol_xlibsw=
              if test "x$GCC" = "xyes" ; then
  	       # This is probably the simplest way to test for GNU ld.
  	       # It only works with relatively recent versions of GNU
  	       # ld.
  	       gld_text=`$CC -Wl,--version 2>&1 | sed 1q`
  	       case "$gld_text" in
  		GNU* | *BFD*)
  		   # Why do we link against libX11 twice?  Because the
  		   # Openwin X11 and Xext libraries are seriously broken.
  		   sol_xlibsw="-Wl,-Bstatic $XLIBSW -lXext -lX11 -Wl,-Bdynamic"
  		   ;;
  	       esac
              fi
  	    if test -z "$sol_xlibsw"; then
  	      if test "x$x_libraries" != "x"; then
  		XLIBSW="$XLIBSW -R$x_libraries"
  	      fi
  	    else
  	       XLIBSW=$sol_xlibsw
  	       suppress_enable_shared=yes
  	    fi
  	    ;;
  #
  # gdb linked statically w/ SunOS or HPUX
  #
          m68k-hp-hpux*|hppa*-hp-hpux*|sparc-sun-sunos*)
              if test "x$x_libraries" != "x" ;
              then
  	       XLIBSW="$x_libraries/libX11.a"
              else
  	       XLIBSW="/usr/lib/libX11.a"
              fi
  	    suppress_enable_shared=yes
  	    ;;
  #
  # default is to link dynamically
  #
          *)
  	   ;;
      esac
  #
  # END CYGNUS LOCAL
  
  
  #--------------------------------------------------------------------
  #	Check for the existence of various libraries.  The order here
  #	is important, so that then end up in the right order in the
  #	command line generated by make.  The -lsocket and -lnsl libraries
  #	require a couple of special tricks:
  #	1. Use "connect" and "accept" to check for -lsocket, and
  #	   "gethostbyname" to check for -lnsl.
  #	2. Use each function name only once:  can't redo a check because
  #	   autoconf caches the results of the last check and won't redo it.
  #	3. Use -lnsl and -lsocket only if they supply procedures that
  #	   aren't already present in the normal libraries.  This is because
  #	   IRIX 5.2 has libraries, but they aren't needed and they're
  #	   bogus:  they goof up name resolution if used.
  #	4. On some SVR4 systems, can't use -lsocket without -lnsl too.
  #	   To get around this problem, check for both libraries together
  #	   if -lsocket doesn't work by itself.
  #--------------------------------------------------------------------
  
  AC_CHECK_LIB(Xbsd, main, [SOCKLIBSW="$SOCKLIBSW -lXbsd"])
  
  # CYGNUS LOCAL: Store any socket library(ies) in the cache, and don't
  # mess up the cache values of the functions we check for.
  AC_CACHE_CHECK([for socket libraries], sim_cv_lib_sockets,
   [sim_cv_lib_sockets=
    sim_checkBoth=0
    unset ac_cv_func_connect
    AC_CHECK_FUNC(connect, sim_checkSocket=0, sim_checkSocket=1)
    if test "$sim_checkSocket" = 1; then
        unset ac_cv_func_connect
        AC_CHECK_LIB(socket, main, sim_cv_lib_sockets="-lsocket",
  		   sim_checkBoth=1)
    fi
    if test "$sim_checkBoth" = 1; then
        sim_oldLibs=$SOCKLIBSW
        SOCKLIBSW="$SOCKLIBSW -lsocket -lnsl"
        unset ac_cv_func_accept
        AC_CHECK_FUNC(accept,
  		    [sim_checkNsl=0
  		     sim_cv_lib_sockets="-lsocket -lnsl"])
        unset ac_cv_func_accept
        SOCKLIBSW=$sim_oldLibs
    fi
    unset ac_cv_func_gethostbyname
    sim_oldLibs=$SOCKLIBSW
    SOCKLIBSW="$SOCKLIBSW $sim_cv_lib_sockets"
    AC_CHECK_FUNC(gethostbyname, ,
  		[AC_CHECK_LIB(nsl, main,
  			      [sim_cv_lib_sockets="$sim_cv_lib_sockets -lnsl"])])
    unset ac_cv_func_gethostbyname
    SOCKLIBSW=$sim_oldSOCKLIBSW
  ])
  test -z "$sim_cv_lib_sockets" || SOCKLIBSW="$SOCKLIBSW $sim_cv_lib_sockets"
  
  mips_extra_libs="-L${withval}/lib -lgpu2 -lm $XLIBSW $SOCKLIBSW"
  cat > simConfig.sh << --EOF--
mips_extra_libs="$mips_extra_libs"
--EOF--

else
  AC_MSG_ERROR("Directory ${withval} does not exist.");
fi])dnl


# Enable target accurate FP library
AC_ARG_WITH(sim-funit,
[  --with-sim-funit=path		Use target FP library under given directory],
[if test -d "${withval}"
then
  SIM_SUBTARGET="${SIM_SUBTARGET} -DSKY_FUNIT -I${withval}/include"
  mips_extra_libs="${mips_extra_libs} -L${withval}/lib -lfunit"
else
  AC_MSG_ERROR("Directory ${withval} does not exist.");
fi])dnl
# end-sanitize-sky
AC_SUBST(mips_extra_libs)

AC_CHECK_HEADERS(string.h strings.h stdlib.h stdlib.h)
AC_CHECK_LIB(m, fabs)
AC_CHECK_FUNCS(aint anint sqrt)

SIM_AC_OUTPUT