1 |
cebix |
1.1 |
dnl Process this file with autoconf to produce a configure script. |
2 |
|
|
dnl Written in 1999 by Christian Bauer et al. |
3 |
|
|
|
4 |
|
|
AC_INIT(main_unix.cpp) |
5 |
|
|
AC_PREREQ(2.12) |
6 |
|
|
AC_CONFIG_HEADER(config.h) |
7 |
|
|
|
8 |
|
|
dnl Options. |
9 |
cebix |
1.17 |
AC_ARG_ENABLE(xf86-dga, [ --enable-xf86-dga use the XFree86 DGA extension [default=yes]], [WANT_XF86_DGA=$enableval], [WANT_XF86_DGA=yes]) |
10 |
|
|
AC_ARG_ENABLE(xf86-vidmode, [ --enable-xf86-vidmode use the XFree86 VidMode extension [default=yes]], [WANT_XF86_VIDMODE=$enableval], [WANT_XF86_VIDMODE=yes]) |
11 |
|
|
AC_ARG_ENABLE(fbdev-dga, [ --enable-fbdev-dga use direct frame buffer access via /dev/fb [default=yes]], [WANT_FBDEV_DGA=$enableval], [WANT_FBDEV_DGA=yes]) |
12 |
cebix |
1.27 |
AC_ARG_ENABLE(vosf, [ --enable-vosf enable video on SEGV signals [default=no]], [WANT_VOSF=$enableval], [WANT_VOSF=no]) |
13 |
gbeauche |
1.32 |
|
14 |
gbeauche |
1.35 |
dnl FPU emulation core. |
15 |
|
|
AC_ARG_ENABLE(fpe, |
16 |
|
|
[ --enable-fpe=which specify which fpu emulator to use [default=opt]], |
17 |
|
|
[ case "$enableval" in |
18 |
|
|
default) FPE_CORE="default";; dnl fpu_x86.cpp if i386 architecture, fpu_uae.cpp otherwise |
19 |
|
|
uae) FPE_CORE="uae";; |
20 |
|
|
*) AC_MSG_ERROR([--enable-fpe takes only one of the following values: default, uae]);; |
21 |
|
|
esac |
22 |
|
|
], |
23 |
|
|
[ FPE_CORE="default" |
24 |
|
|
]) |
25 |
|
|
|
26 |
gbeauche |
1.32 |
dnl Addressing modes. |
27 |
gbeauche |
1.23 |
AC_ARG_ENABLE(addressing, |
28 |
gbeauche |
1.32 |
[ --enable-addressing=AM specify the addressing mode to use [default=fastest]], |
29 |
gbeauche |
1.23 |
[ case "$enableval" in |
30 |
cebix |
1.24 |
real) ADDRESSING_TEST_ORDER="real";; |
31 |
|
|
direct) ADDRESSING_TEST_ORDER="direct";; |
32 |
|
|
banks) ADDRESSING_TEST_ORDER="banks";; |
33 |
gbeauche |
1.32 |
fastest)ADDRESSING_TEST_ORDER="direct banks";; |
34 |
|
|
*) AC_MSG_ERROR([--enable-addressing takes only one of the following values: fastest, real, direct, banks]);; |
35 |
gbeauche |
1.23 |
esac |
36 |
|
|
], |
37 |
|
|
[ ADDRESSING_TEST_ORDER="direct banks" |
38 |
|
|
]) |
39 |
gbeauche |
1.32 |
|
40 |
|
|
dnl External packages. |
41 |
cebix |
1.17 |
AC_ARG_WITH(esd, [ --with-esd support ESD for sound under Linux/FreeBSD [default=yes]], [WANT_ESD=$withval], [WANT_ESD=yes]) |
42 |
|
|
AC_ARG_WITH(gtk, [ --with-gtk use GTK user interface [default=yes]], [WANT_GTK=$withval], [WANT_GTK=yes]) |
43 |
|
|
AC_ARG_WITH(mon, [ --with-mon use mon as debugger [default=yes]], [WANT_MON=$withval], [WANT_MON=yes]) |
44 |
cebix |
1.1 |
|
45 |
gbeauche |
1.23 |
dnl Canonical system information. |
46 |
|
|
AC_CANONICAL_HOST |
47 |
|
|
AC_CANONICAL_TARGET |
48 |
|
|
|
49 |
|
|
dnl Target OS type (target is host if not cross-compiling). |
50 |
|
|
case "$target_os" in |
51 |
|
|
linux*) OS_TYPE=linux;; |
52 |
|
|
netbsd*) OS_TYPE=netbsd;; |
53 |
|
|
freebsd*) OS_TYPE=freebsd;; |
54 |
|
|
solaris*) OS_TYPE=solaris;; |
55 |
cebix |
1.28 |
*) OS_TYPE=`echo $target_os | sed -e 's/-/_/' | sed -e 's/\./_/'`;; |
56 |
gbeauche |
1.23 |
esac |
57 |
|
|
DEFINES="$DEFINES -DOS_$OS_TYPE" |
58 |
|
|
|
59 |
|
|
dnl Target CPU type. |
60 |
|
|
HAVE_I386=no |
61 |
|
|
HAVE_M68K=no |
62 |
|
|
HAVE_SPARC=no |
63 |
cebix |
1.33 |
HAVE_POWERPC=no |
64 |
gbeauche |
1.23 |
case "$target_cpu" in |
65 |
|
|
i386* | i486* | i586* | i686* | i786* ) CPU_TYPE=i386 HAVE_I386=yes;; |
66 |
|
|
m68k* ) CPU_TYPE=m68k HAVE_M68K=yes;; |
67 |
|
|
sparc* ) CPU_TYPE=sparc HAVE_SPARC=yes;; |
68 |
cebix |
1.33 |
powerpc* ) CPU_TYPE=powerpc HAVE_POWERPC=yes;; |
69 |
gbeauche |
1.23 |
*) CPU_TYPE=`echo $target_cpu | sed -e 's/-/_/'`;; |
70 |
|
|
esac |
71 |
|
|
DEFINES="$DEFINES -DCPU_$CPU_TYPE" |
72 |
|
|
|
73 |
cebix |
1.1 |
dnl Checks for programs. |
74 |
|
|
AC_PROG_CC |
75 |
gbeauche |
1.23 |
AC_PROG_CC_C_O |
76 |
cebix |
1.4 |
AC_PROG_CPP |
77 |
cebix |
1.1 |
AC_PROG_CXX |
78 |
|
|
AC_PROG_MAKE_SET |
79 |
|
|
AC_PROG_INSTALL |
80 |
|
|
|
81 |
cebix |
1.11 |
dnl We use mon if possible. |
82 |
|
|
MONSRCS= |
83 |
cebix |
1.18 |
if [[ "x$WANT_MON" = "xyes" ]]; then |
84 |
|
|
AC_MSG_CHECKING(for mon) |
85 |
cebix |
1.24 |
mon_srcdir=../../../mon/src |
86 |
|
|
if grep mon_init $mon_srcdir/mon.h >/dev/null 2>/dev/null; then |
87 |
cebix |
1.18 |
AC_MSG_RESULT(yes) |
88 |
cebix |
1.19 |
AC_DEFINE(ENABLE_MON) |
89 |
cebix |
1.29 |
MONSRCS="$mon_srcdir/mon.cpp $mon_srcdir/mon_6502.cpp $mon_srcdir/mon_z80.cpp $mon_srcdir/mon_cmd.cpp $mon_srcdir/mon_disass.cpp $mon_srcdir/mon_ppc.cpp $mon_srcdir/disass/floatformat.c $mon_srcdir/disass/i386-dis.c $mon_srcdir/disass/m68k-dis.c $mon_srcdir/disass/m68k-opc.c" |
90 |
cebix |
1.24 |
CXXFLAGS="$CXXFLAGS -I$mon_srcdir -I$mon_srcdir/disass" |
91 |
cebix |
1.18 |
AC_CHECK_LIB(readline, readline) |
92 |
cebix |
1.19 |
AC_CHECK_LIB(termcap, tputs) |
93 |
|
|
AC_CHECK_HEADERS(readline.h history.h readline/readline.h readline/history.h) |
94 |
cebix |
1.18 |
else |
95 |
|
|
AC_MSG_RESULT(no) |
96 |
|
|
AC_MSG_WARN([Could not find mon, ignoring --with-mon.]) |
97 |
|
|
WANT_MON=no |
98 |
|
|
fi |
99 |
cebix |
1.11 |
fi |
100 |
|
|
|
101 |
cebix |
1.1 |
dnl Checks for libraries. |
102 |
cebix |
1.10 |
AC_CHECK_LIB(posix4, sem_init) |
103 |
|
|
|
104 |
|
|
dnl We need X11. |
105 |
cebix |
1.1 |
AC_PATH_XTRA |
106 |
|
|
if [[ "x$no_x" = "xyes" ]]; then |
107 |
|
|
AC_MSG_ERROR([You need X11 to run Basilisk II.]) |
108 |
|
|
fi |
109 |
|
|
CFLAGS="$CFLAGS $X_CFLAGS" |
110 |
|
|
CXXFLAGS="$CXXFLAGS $X_CFLAGS" |
111 |
|
|
LIBS="$LIBS $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS" |
112 |
|
|
|
113 |
cebix |
1.19 |
dnl We want pthreads. Try libpthread first, then libc_r (FreeBSD), then PTL. |
114 |
|
|
HAVE_PTHREADS=yes |
115 |
cebix |
1.10 |
AC_CHECK_LIB(pthread, pthread_create, , [ |
116 |
|
|
AC_CHECK_LIB(c_r, pthread_create, , [ |
117 |
|
|
AC_CHECK_LIB(PTL, pthread_create, , [ |
118 |
cebix |
1.19 |
HAVE_PTHREADS=no |
119 |
cebix |
1.10 |
]) |
120 |
|
|
]) |
121 |
|
|
]) |
122 |
cebix |
1.19 |
if [[ "x$HAVE_PTHREADS" = "xyes" ]]; then |
123 |
|
|
AC_DEFINE(HAVE_PTHREADS) |
124 |
|
|
fi |
125 |
|
|
AC_CHECK_FUNCS(pthread_cancel) |
126 |
cebix |
1.10 |
|
127 |
|
|
dnl If POSIX.4 semaphores are not available, we emulate them with pthread mutexes. |
128 |
cebix |
1.19 |
SEMSRC= |
129 |
cebix |
1.10 |
AC_CHECK_FUNCS(sem_init, , [ |
130 |
cebix |
1.26 |
if test "x$HAVE_PTHREADS" = "xyes"; then |
131 |
cebix |
1.19 |
SEMSRC=posix_sem.cpp |
132 |
|
|
fi |
133 |
cebix |
1.10 |
]) |
134 |
cebix |
1.1 |
|
135 |
cebix |
1.10 |
dnl We use DGA (XFree86 or fbdev) if possible. |
136 |
cebix |
1.8 |
if [[ "x$WANT_XF86_DGA" = "xyes" ]]; then |
137 |
cebix |
1.10 |
AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension, [ |
138 |
cebix |
1.19 |
AC_DEFINE(ENABLE_XF86_DGA) |
139 |
cebix |
1.1 |
LIBS="$LIBS -lXxf86dga" |
140 |
cebix |
1.8 |
if [[ "x$WANT_FBDEV_DGA" = "xyes" ]]; then |
141 |
|
|
AC_MSG_WARN([Cannot have both --enable-xf86-dga and --enable-fbdev-dga, ignoring --enable-fbdev-dga.]) |
142 |
|
|
WANT_FBDEV_DGA=no |
143 |
|
|
fi |
144 |
cebix |
1.10 |
], [ |
145 |
|
|
AC_MSG_WARN([Could not find XFree86 DGA extension, ignoring --enable-xf86-dga.]) |
146 |
cebix |
1.13 |
WANT_XF86_DGA=no |
147 |
cebix |
1.10 |
]) |
148 |
cebix |
1.8 |
fi |
149 |
|
|
if [[ "x$WANT_FBDEV_DGA" = "xyes" ]]; then |
150 |
cebix |
1.19 |
AC_DEFINE(ENABLE_FBDEV_DGA) |
151 |
cebix |
1.1 |
fi |
152 |
|
|
|
153 |
cebix |
1.17 |
dnl We use XFree86 VidMode if possible. |
154 |
|
|
if [[ "x$WANT_XF86_VIDMODE" = "xyes" ]]; then |
155 |
|
|
AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension, [ |
156 |
cebix |
1.19 |
AC_DEFINE(ENABLE_XF86_VIDMODE) |
157 |
cebix |
1.17 |
LIBS="$LIBS -lXxf86vm" |
158 |
|
|
], [ |
159 |
|
|
AC_MSG_WARN([Could not find XFree86 VidMode extension, ignoring --enable-xf86-vidmode.]) |
160 |
|
|
WANT_XF86_VIDMODE=no |
161 |
|
|
]) |
162 |
|
|
fi |
163 |
|
|
|
164 |
cebix |
1.1 |
dnl We use GTK+ if possible. |
165 |
cebix |
1.10 |
UISRCS=../dummy/prefs_editor_dummy.cpp |
166 |
cebix |
1.14 |
if [[ "x$WANT_GTK" = "xyes" ]]; then |
167 |
cebix |
1.10 |
AM_PATH_GTK(1.2.0, [ |
168 |
cebix |
1.19 |
AC_DEFINE(ENABLE_GTK) |
169 |
cebix |
1.10 |
CFLAGS="$CFLAGS $GTK_CFLAGS" |
170 |
|
|
CXXFLAGS="$CXXFLAGS $GTK_CFLAGS" |
171 |
|
|
LIBS="$LIBS $GTK_LIBS" |
172 |
|
|
UISRCS=prefs_editor_gtk.cpp |
173 |
|
|
], [ |
174 |
|
|
AC_MSG_WARN([Could not find GTK+, disabling user interface.]) |
175 |
cebix |
1.14 |
WANT_GTK=no |
176 |
cebix |
1.10 |
]) |
177 |
cebix |
1.1 |
fi |
178 |
|
|
|
179 |
cebix |
1.10 |
dnl We use ESD if possible. |
180 |
|
|
if [[ "x$WANT_ESD" = "xyes" ]]; then |
181 |
|
|
AM_PATH_ESD(0.2.8, [ |
182 |
cebix |
1.19 |
AC_DEFINE(ENABLE_ESD) |
183 |
cebix |
1.10 |
CFLAGS="$CFLAGS $ESD_CFLAGS" |
184 |
|
|
CXXFLAGS="$CXXFLAGS $ESD_CFLAGS" |
185 |
|
|
LIBS="$LIBS $ESD_LIBS" |
186 |
|
|
], [ |
187 |
|
|
AC_MSG_WARN([Could not find ESD, disabling ESD support.]) |
188 |
|
|
WANT_ESD=no |
189 |
|
|
]) |
190 |
cebix |
1.1 |
fi |
191 |
|
|
|
192 |
|
|
dnl Checks for header files. |
193 |
|
|
AC_HEADER_STDC |
194 |
|
|
AC_CHECK_HEADERS(unistd.h fcntl.h sys/time.h) |
195 |
|
|
|
196 |
|
|
dnl Checks for typedefs, structures, and compiler characteristics. |
197 |
|
|
AC_C_BIGENDIAN |
198 |
|
|
AC_C_CONST |
199 |
|
|
AC_C_INLINE |
200 |
|
|
AC_CHECK_SIZEOF(short, 2) |
201 |
|
|
AC_CHECK_SIZEOF(int, 4) |
202 |
|
|
AC_CHECK_SIZEOF(long, 4) |
203 |
|
|
AC_CHECK_SIZEOF(long long, 8) |
204 |
gbeauche |
1.23 |
AC_CHECK_SIZEOF(void *, 4) |
205 |
cebix |
1.1 |
AC_TYPE_OFF_T |
206 |
|
|
AC_CHECK_TYPE(loff_t, off_t) |
207 |
|
|
AC_TYPE_SIZE_T |
208 |
gbeauche |
1.23 |
AC_TYPE_SIGNAL |
209 |
cebix |
1.1 |
AC_HEADER_TIME |
210 |
|
|
AC_STRUCT_TM |
211 |
|
|
|
212 |
|
|
dnl Checks for library functions. |
213 |
|
|
AC_CHECK_FUNCS(strdup cfmakeraw) |
214 |
cebix |
1.21 |
AC_CHECK_FUNCS(clock_gettime timer_create) |
215 |
cebix |
1.1 |
|
216 |
|
|
dnl Select system-dependant source files. |
217 |
cebix |
1.19 |
SERIALSRC=serial_unix.cpp |
218 |
|
|
ETHERSRC=../dummy/ether_dummy.cpp |
219 |
|
|
SCSISRC=../dummy/scsi_dummy.cpp |
220 |
|
|
AUDIOSRC=../dummy/audio_dummy.cpp |
221 |
|
|
EXTRASYSSRCS= |
222 |
cebix |
1.27 |
CAN_NATIVE_M68K=no |
223 |
gbeauche |
1.23 |
case "$target_os" in |
224 |
|
|
linux*) |
225 |
|
|
ETHERSRC=Linux/ether_linux.cpp |
226 |
|
|
SCSISRC=Linux/scsi_linux.cpp |
227 |
|
|
AUDIOSRC=audio_oss_esd.cpp |
228 |
|
|
;; |
229 |
|
|
freebsd*3.*) |
230 |
|
|
AUDIOSRC=audio_oss_esd.cpp |
231 |
|
|
DEFINES="$DEFINES -DBSD_COMP" |
232 |
|
|
dnl Check for the CAM library |
233 |
|
|
AC_CHECK_LIB(cam, cam_open_btl, HAVE_LIBCAM=yes, HAVE_LIBCAM=no) |
234 |
|
|
if [[ "x$HAVE_LIBCAM" = "xno" ]]; then |
235 |
|
|
AC_MSG_WARN([Cannot find libcam for SCSI management, disabling SCSI support.]) |
236 |
|
|
else |
237 |
|
|
dnl Check for the sys kernel includes |
238 |
|
|
AC_CHECK_HEADER(/sys/cam/cam.h) |
239 |
|
|
if [[ "x$ac_cv_header__sys_cam_cam_h" = "xno" ]]; then |
240 |
|
|
dnl In this case I should fix this thing including a "patch" |
241 |
|
|
dnl to access directly to the functions in the kernel :) --Orlando |
242 |
|
|
AC_MSG_WARN([Cannot find kernel includes for CAM library, disabling SCSI support.]) |
243 |
|
|
else |
244 |
|
|
SCSISRC=FreeBSD/scsi_freebsd.cpp |
245 |
|
|
CXXFLAGS="$CXXFLAGS -I/sys" |
246 |
|
|
CFLAGS="$CFLAGS -I/sys" |
247 |
|
|
LIBS="$LIBS -lcam" |
248 |
|
|
DEFINES="$DEFINES -DCAM" |
249 |
|
|
fi |
250 |
|
|
fi |
251 |
|
|
;; |
252 |
|
|
freebsd*) |
253 |
|
|
DEFINES="$DEFINES -DBSD_COMP" |
254 |
|
|
dnl Check for the SCSI library |
255 |
|
|
AC_CHECK_LIB(scsi, scsi_open, HAVE_LIBSCSI=yes, HAVE_LIBSCSI=no) |
256 |
|
|
if [[ "x$HAVE_LIBSCSI" = "xno" ]]; then |
257 |
|
|
AC_MSG_WARN([Cannot find libscsi for SCSI management, disabling SCSI support.]) |
258 |
|
|
else |
259 |
|
|
dnl Check for the sys kernel includes |
260 |
|
|
AC_CHECK_HEADER(scsi.h sys/scsiio.h) |
261 |
|
|
if [[ "x$ac_cv_header_scsi_h" = "xno" ]]; then |
262 |
|
|
AC_MSG_WARN([Cannot find includes for the SCSI library, disabling SCSI support.]) |
263 |
|
|
else |
264 |
|
|
SCSISRC=FreeBSD/scsi_freebsd.cpp |
265 |
|
|
LIBS="$LIBS -lscsi" |
266 |
|
|
fi |
267 |
|
|
fi |
268 |
|
|
;; |
269 |
|
|
netbsd*) |
270 |
cebix |
1.27 |
CAN_NATIVE_M68K=yes |
271 |
gbeauche |
1.23 |
;; |
272 |
|
|
solaris*) |
273 |
|
|
AUDIOSRC=Solaris/audio_solaris.cpp |
274 |
|
|
DEFINES="$DEFINES -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS" |
275 |
|
|
;; |
276 |
|
|
irix*) |
277 |
cebix |
1.30 |
AUDIOSRC=Irix/audio_irix.cpp |
278 |
gbeauche |
1.23 |
EXTRASYSSRCS=Irix/unaligned.c |
279 |
cebix |
1.28 |
dnl IRIX headers work fine, but somehow don't define or use "STDC_HEADERS" |
280 |
|
|
DEFINES="$DEFINES -DCRTSCTS=CNEW_RTSCTS -DB230400=B115200 -DSTDC_HEADERS" |
281 |
cebix |
1.30 |
LIBS="$LIBS -laudio" |
282 |
cebix |
1.37 |
|
283 |
|
|
dnl Check if our compiler supports -Ofast (MIPSPro) |
284 |
|
|
HAVE_OFAST=no |
285 |
|
|
ocflags="$CFLAGS" |
286 |
|
|
CFLAGS=`echo $CFLAGS | sed -e 's/ -g / -Ofast /;s/^-g /-Ofast /;s/-g$/ -Ofast/;s/^-g$/-Ofast/'` |
287 |
|
|
AC_MSG_CHECKING(if "-Ofast" works) |
288 |
|
|
dnl Do a test compile of an empty function |
289 |
|
|
AC_TRY_COMPILE(,, [AC_MSG_RESULT(yes); HAVE_OFAST=yes], AC_MSG_RESULT(no)) |
290 |
|
|
CFLAGS="$ocflags" |
291 |
|
|
|
292 |
gbeauche |
1.23 |
;; |
293 |
|
|
esac |
294 |
|
|
|
295 |
cebix |
1.27 |
dnl Use 68k CPU natively? |
296 |
|
|
WANT_NATIVE_M68K=no |
297 |
|
|
if [[ "x$HAVE_M68K" = "xyes" -a "x$CAN_NATIVE_M68K" = "xyes" ]]; then |
298 |
|
|
AC_DEFINE(ENABLE_NATIVE_M68K) |
299 |
|
|
WANT_NATIVE_M68K=yes |
300 |
|
|
fi |
301 |
|
|
|
302 |
gbeauche |
1.23 |
if [[ "x$HAVE_PTHREADS" = "xno" ]]; then |
303 |
|
|
dnl Serial, ethernet and audio support needs pthreads |
304 |
|
|
AC_MSG_WARN([You don't have pthreads, disabling serial, ethernet and audio support.]) |
305 |
|
|
SERIALSRC=../dummy/serial_dummy.cpp |
306 |
|
|
ETHERSRC=../dummy/ether_dummy.cpp |
307 |
|
|
AUDIOSRC=../dummy/audio_dummy.cpp |
308 |
|
|
fi |
309 |
|
|
SYSSRCS="$SERIALSRC $ETHERSRC $SCSISRC $AUDIOSRC $SEMSRC $UISRCS $MONSRCS $EXTRASYSSRCS" |
310 |
|
|
|
311 |
|
|
dnl Define a macro that translates a yesno-variable into a C macro definition |
312 |
|
|
dnl to be put into the config.h file |
313 |
|
|
dnl $1 -- the macro to define |
314 |
|
|
dnl $2 -- the value to translate |
315 |
|
|
AC_DEFUN(AC_TRANSLATE_DEFINE, [ |
316 |
|
|
if [[ "x$2" = "xyes" ]]; then |
317 |
|
|
AC_DEFINE($1) |
318 |
|
|
fi |
319 |
|
|
]) |
320 |
|
|
|
321 |
|
|
dnl Check if we can mmap 0x2000 bytes from 0x0000 |
322 |
|
|
AC_CACHE_CHECK("whether we can map Low Memory area 0x0000-0x2000", |
323 |
|
|
ac_cv_can_map_lm, [ |
324 |
|
|
AC_LANG_SAVE |
325 |
|
|
AC_LANG_CPLUSPLUS |
326 |
|
|
AC_TRY_RUN([ |
327 |
|
|
#include <unistd.h> |
328 |
|
|
#include <fcntl.h> |
329 |
|
|
#include <sys/mman.h> |
330 |
|
|
|
331 |
|
|
int main() |
332 |
|
|
{ int zero_fd; char * lm; |
333 |
|
|
if ((zero_fd = open("/dev/zero", O_RDWR)) < 0) exit(1); |
334 |
|
|
if ((lm = (char *)mmap((caddr_t)0x0000, 0x2000, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_PRIVATE, zero_fd, 0)) == MAP_FAILED) exit(1); |
335 |
|
|
lm[0] = 0x12; |
336 |
|
|
munmap(lm, 0x2000); |
337 |
|
|
close(zero_fd); |
338 |
|
|
exit(0); |
339 |
|
|
} |
340 |
|
|
], |
341 |
|
|
[ac_cv_can_map_lm=yes], |
342 |
|
|
[ac_cv_can_map_lm=no] |
343 |
|
|
) |
344 |
|
|
AC_LANG_RESTORE |
345 |
|
|
] |
346 |
|
|
) |
347 |
|
|
|
348 |
|
|
dnl Check if extended signals are supported. |
349 |
|
|
AC_CACHE_CHECK("whether your system supports extended signal handlers", |
350 |
|
|
ac_cv_have_extended_signals, [ |
351 |
|
|
AC_LANG_SAVE |
352 |
|
|
AC_LANG_CPLUSPLUS |
353 |
|
|
AC_TRY_RUN([ |
354 |
|
|
#include <unistd.h> |
355 |
cebix |
1.25 |
#include <stdlib.h> |
356 |
gbeauche |
1.23 |
#include <signal.h> |
357 |
|
|
#include <fcntl.h> |
358 |
|
|
#include <sys/mman.h> |
359 |
|
|
|
360 |
|
|
static volatile caddr_t mem = 0; |
361 |
|
|
static int zero_fd = -1; |
362 |
|
|
|
363 |
|
|
static RETSIGTYPE segfault_handler(int, siginfo_t * sip, void *) |
364 |
|
|
{ if ((caddr_t)(sip->si_addr) != mem) exit(1); |
365 |
|
|
munmap(mem, getpagesize()); close(zero_fd); exit(0); } |
366 |
|
|
|
367 |
|
|
int main() |
368 |
|
|
{ if ((zero_fd = open("/dev/zero", O_RDWR)) < 0) exit(1); |
369 |
|
|
if ((mem = (caddr_t)mmap(0, getpagesize(), PROT_READ, MAP_PRIVATE, zero_fd, 0)) == (caddr_t)MAP_FAILED) exit(1); |
370 |
cebix |
1.25 |
struct sigaction sa; sa.sa_sigaction = segfault_handler; sa.sa_flags = SA_SIGINFO; |
371 |
gbeauche |
1.23 |
sigaction(SIGSEGV, &sa, 0); |
372 |
|
|
mem[0] = 0; |
373 |
|
|
exit(1); // should not be reached |
374 |
|
|
} |
375 |
|
|
], |
376 |
|
|
[ac_cv_have_extended_signals=yes], |
377 |
|
|
[ac_cv_have_extended_signals=no] |
378 |
|
|
) |
379 |
|
|
AC_LANG_RESTORE |
380 |
|
|
] |
381 |
|
|
) |
382 |
|
|
AC_TRANSLATE_DEFINE(HAVE_SIGINFO_T, "$ac_cv_have_extended_signals") |
383 |
|
|
|
384 |
|
|
dnl Otherwise, check for subterfuges. |
385 |
|
|
if [[ "x$ac_cv_have_extended_signals" = "xno" ]]; then |
386 |
|
|
case "$target_os" in |
387 |
|
|
linux*) |
388 |
|
|
if [[ "x$HAVE_I386" = "xyes" ]]; then |
389 |
|
|
AC_CACHE_CHECK("whether we then have a subterfuge for your system", |
390 |
|
|
ac_cv_have_sigcontext_hack, [ |
391 |
|
|
AC_LANG_SAVE |
392 |
|
|
AC_LANG_CPLUSPLUS |
393 |
|
|
AC_TRY_RUN([ |
394 |
|
|
#include <unistd.h> |
395 |
|
|
#include <signal.h> |
396 |
|
|
#include <fcntl.h> |
397 |
|
|
#include <sys/mman.h> |
398 |
|
|
|
399 |
|
|
static volatile caddr_t mem = 0; |
400 |
|
|
static int zero_fd = -1; |
401 |
|
|
|
402 |
|
|
static RETSIGTYPE segfault_handler(int, struct sigcontext scs) |
403 |
|
|
{ if ((caddr_t)(scs.cr2) != mem) exit(1); |
404 |
cebix |
1.33 |
munmap(mem, getpagesize()); close(zero_fd); exit(0); } |
405 |
|
|
|
406 |
|
|
int main() |
407 |
|
|
{ if ((zero_fd = open("/dev/zero", O_RDWR)) < 0) exit(1); |
408 |
|
|
if ((mem = (caddr_t)mmap(0, getpagesize(), PROT_READ, MAP_PRIVATE, zero_fd, 0)) == (caddr_t)MAP_FAILED) exit(1); |
409 |
|
|
struct sigaction sa; sa.sa_flags = 0; |
410 |
|
|
sa.sa_handler = (RETSIGTYPE (*)(int))segfault_handler; |
411 |
|
|
sigaction(SIGSEGV, &sa, 0); |
412 |
|
|
mem[0] = 0; |
413 |
|
|
exit(1); // should not be reached |
414 |
|
|
} |
415 |
|
|
], |
416 |
|
|
[ac_cv_have_sigcontext_hack=yes], |
417 |
|
|
[ac_cv_have_sigcontext_hack=no] |
418 |
|
|
) |
419 |
|
|
AC_LANG_RESTORE |
420 |
|
|
]) |
421 |
|
|
AC_TRANSLATE_DEFINE(HAVE_SIGCONTEXT_SUBTERFUGE, $ac_cv_have_sigcontext_hack) |
422 |
|
|
elif [[ "x$HAVE_POWERPC" = "xyes" ]]; then |
423 |
|
|
AC_CACHE_CHECK("whether we then have a subterfuge for your system", |
424 |
|
|
ac_cv_have_sigcontext_hack, [ |
425 |
|
|
AC_LANG_SAVE |
426 |
|
|
AC_LANG_CPLUSPLUS |
427 |
|
|
AC_TRY_RUN([ |
428 |
|
|
#include <unistd.h> |
429 |
|
|
#include <signal.h> |
430 |
|
|
#include <fcntl.h> |
431 |
|
|
#include <sys/mman.h> |
432 |
|
|
|
433 |
|
|
static volatile caddr_t mem = 0; |
434 |
|
|
static int zero_fd = -1; |
435 |
|
|
|
436 |
|
|
static RETSIGTYPE segfault_handler(int, struct sigcontext_struct *scs) |
437 |
|
|
{ if ((caddr_t)(scs->regs->dar) != mem) exit(1); |
438 |
gbeauche |
1.23 |
munmap(mem, getpagesize()); close(zero_fd); exit(0); } |
439 |
|
|
|
440 |
|
|
int main() |
441 |
|
|
{ if ((zero_fd = open("/dev/zero", O_RDWR)) < 0) exit(1); |
442 |
|
|
if ((mem = (caddr_t)mmap(0, getpagesize(), PROT_READ, MAP_PRIVATE, zero_fd, 0)) == (caddr_t)MAP_FAILED) exit(1); |
443 |
|
|
struct sigaction sa; sa.sa_flags = 0; |
444 |
cebix |
1.25 |
sa.sa_handler = (RETSIGTYPE (*)(int))segfault_handler; |
445 |
gbeauche |
1.23 |
sigaction(SIGSEGV, &sa, 0); |
446 |
|
|
mem[0] = 0; |
447 |
|
|
exit(1); // should not be reached |
448 |
|
|
} |
449 |
|
|
], |
450 |
|
|
[ac_cv_have_sigcontext_hack=yes], |
451 |
|
|
[ac_cv_have_sigcontext_hack=no] |
452 |
|
|
) |
453 |
|
|
AC_LANG_RESTORE |
454 |
|
|
]) |
455 |
cebix |
1.25 |
AC_TRANSLATE_DEFINE(HAVE_SIGCONTEXT_SUBTERFUGE, $ac_cv_have_sigcontext_hack) |
456 |
gbeauche |
1.23 |
fi |
457 |
cebix |
1.27 |
;; |
458 |
|
|
netbsd*) |
459 |
|
|
if [[ "x$HAVE_M68K" = "xyes" ]]; then |
460 |
|
|
AC_CACHE_CHECK("whether we then have a subterfuge for your system", |
461 |
|
|
ac_cv_have_sigcontext_hack, [ |
462 |
|
|
AC_LANG_SAVE |
463 |
|
|
AC_LANG_CPLUSPLUS |
464 |
|
|
AC_TRY_RUN([ |
465 |
|
|
#include <unistd.h> |
466 |
|
|
#include <signal.h> |
467 |
|
|
#include <fcntl.h> |
468 |
|
|
#include <sys/mman.h> |
469 |
|
|
|
470 |
|
|
static volatile caddr_t mem = 0; |
471 |
|
|
static int zero_fd = -1; |
472 |
|
|
|
473 |
|
|
static RETSIGTYPE segfault_handler(int, int code) |
474 |
|
|
{ if ((caddr_t)code != mem) exit(1); |
475 |
|
|
munmap(mem, getpagesize()); close(zero_fd); exit(0); } |
476 |
|
|
|
477 |
|
|
int main() |
478 |
|
|
{ if ((zero_fd = open("/dev/zero", O_RDWR)) < 0) exit(1); |
479 |
|
|
if ((mem = (caddr_t)mmap(0, getpagesize(), PROT_READ, MAP_PRIVATE, zero_fd, 0)) == (caddr_t)MAP_FAILED) exit(1); |
480 |
|
|
struct sigaction sa; sa.sa_flags = 0; |
481 |
|
|
sa.sa_handler = (RETSIGTYPE (*)(int))segfault_handler; |
482 |
|
|
sigaction(SIGSEGV, &sa, 0); |
483 |
|
|
mem[0] = 0; |
484 |
|
|
exit(1); // should not be reached |
485 |
|
|
} |
486 |
|
|
], |
487 |
|
|
[ac_cv_have_sigcontext_hack=yes], |
488 |
|
|
[ac_cv_have_sigcontext_hack=no] |
489 |
|
|
) |
490 |
|
|
AC_LANG_RESTORE |
491 |
|
|
]) |
492 |
|
|
AC_TRANSLATE_DEFINE(HAVE_SIGCONTEXT_SUBTERFUGE, $ac_cv_have_sigcontext_hack) |
493 |
|
|
fi |
494 |
cebix |
1.1 |
;; |
495 |
gbeauche |
1.23 |
esac |
496 |
|
|
fi |
497 |
|
|
|
498 |
|
|
dnl Can we do Video on SEGV Signals ? |
499 |
|
|
CAN_VOSF=no |
500 |
|
|
if [[ "$ac_cv_have_extended_signals" = "yes" -o "$ac_cv_have_sigcontext_hack" = "yes" ]]; then |
501 |
|
|
CAN_VOSF=yes |
502 |
|
|
fi |
503 |
|
|
|
504 |
|
|
dnl Determine the addressing mode to use |
505 |
cebix |
1.27 |
if [[ "x$WANT_NATIVE_M68K" = "xyes" ]]; then |
506 |
|
|
ADDRESSING_MODE="real" |
507 |
|
|
else |
508 |
|
|
ADDRESSING_MODE="" |
509 |
|
|
AC_MSG_CHECKING([for the addressing mode to use]) |
510 |
|
|
for am in $ADDRESSING_TEST_ORDER; do |
511 |
|
|
case $am in |
512 |
|
|
real) |
513 |
gbeauche |
1.32 |
dnl Requires ability to mmap() Low Memory globals |
514 |
cebix |
1.27 |
if [[ "x$ac_cv_can_map_lm" = "xno" ]]; then |
515 |
|
|
continue |
516 |
|
|
fi |
517 |
gbeauche |
1.32 |
dnl Requires VOSF screen updates |
518 |
|
|
if [[ "x$CAN_VOSF" = "xno" ]]; then |
519 |
|
|
continue |
520 |
cebix |
1.1 |
fi |
521 |
gbeauche |
1.32 |
dnl Real addressing will probably work. |
522 |
cebix |
1.27 |
ADDRESSING_MODE="real" |
523 |
|
|
WANT_VOSF=yes dnl we can use VOSF and we need it actually |
524 |
|
|
DEFINES="$DEFINES -DREAL_ADDRESSING" |
525 |
|
|
break |
526 |
|
|
;; |
527 |
|
|
direct) |
528 |
gbeauche |
1.32 |
dnl Requires VOSF screen updates |
529 |
cebix |
1.27 |
if [[ "x$CAN_VOSF" = "xyes" ]]; then |
530 |
|
|
ADDRESSING_MODE="direct" |
531 |
|
|
WANT_VOSF=yes dnl we can use VOSF and we need it actually |
532 |
|
|
DEFINES="$DEFINES -DDIRECT_ADDRESSING" |
533 |
|
|
break |
534 |
cebix |
1.1 |
fi |
535 |
cebix |
1.27 |
;; |
536 |
|
|
banks) |
537 |
|
|
dnl Default addressing mode |
538 |
|
|
ADDRESSING_MODE="memory banks" |
539 |
gbeauche |
1.23 |
break |
540 |
cebix |
1.27 |
;; |
541 |
|
|
*) |
542 |
|
|
AC_MSG_ERROR([Internal configure.in script error for $am addressing mode]) |
543 |
|
|
esac |
544 |
|
|
done |
545 |
|
|
AC_MSG_RESULT($ADDRESSING_MODE) |
546 |
|
|
if [[ "x$ADDRESSING_MODE" = "x" ]]; then |
547 |
|
|
AC_MSG_WARN([Sorry, no suitable addressing mode in $ADDRESSING_TEST_ORDER]) |
548 |
gbeauche |
1.23 |
ADDRESSING_MODE="memory banks" |
549 |
cebix |
1.27 |
fi |
550 |
cebix |
1.8 |
fi |
551 |
gbeauche |
1.23 |
|
552 |
gbeauche |
1.32 |
dnl Enable VOSF screen updates with this feature is requested and feasible |
553 |
|
|
if [[ "x$WANT_VOSF" = "xyes" -a "x$CAN_VOSF" = "xyes" ]]; then |
554 |
|
|
AC_DEFINE(ENABLE_VOSF) |
555 |
|
|
else |
556 |
gbeauche |
1.23 |
WANT_VOSF=no |
557 |
cebix |
1.19 |
fi |
558 |
cebix |
1.9 |
|
559 |
cebix |
1.3 |
dnl Check for GAS. |
560 |
cebix |
1.1 |
HAVE_GAS=no |
561 |
|
|
AC_MSG_CHECKING(for GAS .p2align feature) |
562 |
|
|
cat >conftest.S << EOF |
563 |
|
|
.text |
564 |
|
|
.p2align 5 |
565 |
|
|
EOF |
566 |
|
|
if $CC conftest.S -c -o conftest.o >/dev/null 2>&1 ; then HAVE_GAS=yes; fi |
567 |
|
|
AC_MSG_RESULT($HAVE_GAS) |
568 |
|
|
|
569 |
cebix |
1.3 |
dnl Check for GCC 2.7 or higher. |
570 |
cebix |
1.1 |
HAVE_GCC27=no |
571 |
|
|
AC_MSG_CHECKING(for GCC 2.7 or higher) |
572 |
|
|
AC_EGREP_CPP(yes, |
573 |
|
|
[#if __GNUC__ - 1 > 1 || __GNUC_MINOR__ - 1 > 5 |
574 |
|
|
yes |
575 |
|
|
#endif |
576 |
|
|
], [AC_MSG_RESULT(yes); HAVE_GCC27=yes], AC_MSG_RESULT(no)) |
577 |
|
|
|
578 |
cebix |
1.19 |
dnl Set "-fomit-frame-pointer" on i386 GCC 2.7 or higher. |
579 |
|
|
if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_I386" = "xyes" ]]; then |
580 |
cebix |
1.1 |
CFLAGS="$CFLAGS -fomit-frame-pointer" |
581 |
|
|
CXXFLAGS="$CXXFLAGS -fomit-frame-pointer" |
582 |
|
|
fi |
583 |
|
|
|
584 |
cebix |
1.3 |
dnl Select appropriate CPU source and REGPARAM define. |
585 |
gbeauche |
1.23 |
ASM_OPTIMIZATIONS=none |
586 |
cebix |
1.9 |
CPUSRCS="cpuemu1.cpp cpuemu2.cpp cpuemu3.cpp cpuemu4.cpp cpuemu5.cpp cpuemu6.cpp cpuemu7.cpp cpuemu8.cpp" |
587 |
gbeauche |
1.22 |
FPUSRCS="../uae_cpu/fpp.cpp" |
588 |
cebix |
1.1 |
if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_I386" = "xyes" ]]; then |
589 |
cebix |
1.9 |
dnl i386 CPU |
590 |
cebix |
1.1 |
DEFINES="$DEFINES -DREGPARAM=\"__attribute__((regparm(3)))\"" |
591 |
|
|
if [[ "x$HAVE_GAS" = "xyes" ]]; then |
592 |
gbeauche |
1.23 |
ASM_OPTIMIZATIONS=i386 |
593 |
gbeauche |
1.31 |
DEFINES="$DEFINES -DX86_ASSEMBLY -DUNALIGNED_PROFITABLE -DOPTIMIZED_FLAGS" |
594 |
gbeauche |
1.34 |
CPUSRCS="cpufast1.s cpufast2.s cpufast3.s cpufast4.s cpufast5.s cpufast6.s cpufast7.s cpufast8.s" |
595 |
gbeauche |
1.22 |
FPUSRCS="../uae_cpu/fpu_x86.cpp" |
596 |
cebix |
1.1 |
fi |
597 |
cebix |
1.9 |
elif [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_SPARC" = "xyes" -a "x$HAVE_GAS" = "xyes" ]]; then |
598 |
|
|
dnl SPARC CPU |
599 |
gbeauche |
1.23 |
case "$target_os" in |
600 |
|
|
solaris*) |
601 |
cebix |
1.9 |
AC_MSG_CHECKING(SPARC CPU architecture) |
602 |
|
|
SPARC_TYPE=`Solaris/which_sparc` |
603 |
|
|
AC_MSG_RESULT($SPARC_TYPE) |
604 |
|
|
case "$SPARC_TYPE" in |
605 |
|
|
SPARC_V8) |
606 |
cebix |
1.26 |
ASM_OPTIMIZATIONS="SPARC V8 architecture" |
607 |
gbeauche |
1.31 |
DEFINES="$DEFINES -DSPARC_V8_ASSEMBLY" dnl -DOPTIMIZED_FLAGS" |
608 |
cebix |
1.9 |
CFLAGS="$CFLAGS -Wa,-Av8" |
609 |
|
|
CXXFLAGS="$CXXFLAGS -Wa,-Av8" |
610 |
|
|
;; |
611 |
|
|
SPARC_V9) |
612 |
cebix |
1.26 |
ASM_OPTIMIZATIONS="SPARC V9 architecture" |
613 |
gbeauche |
1.31 |
DEFINES="$DEFINES -DSPARC_V9_ASSEMBLY" dnl -DOPTIMIZED_FLAGS" |
614 |
cebix |
1.9 |
CFLAGS="$CFLAGS -Wa,-Av9" |
615 |
|
|
CXXFLAGS="$CXXFLAGS -Wa,-Av9" |
616 |
|
|
;; |
617 |
|
|
esac |
618 |
|
|
;; |
619 |
|
|
esac |
620 |
cebix |
1.27 |
elif [[ "x$WANT_NATIVE_M68K" = "xyes" ]]; then |
621 |
cebix |
1.19 |
dnl Native m68k, no emulation |
622 |
cebix |
1.27 |
CPUINCLUDES="-I../native_cpu" |
623 |
|
|
CPUSRCS="asm_support.s" |
624 |
cebix |
1.1 |
fi |
625 |
cebix |
1.9 |
|
626 |
gbeauche |
1.35 |
dnl Select appropriate FPU source. |
627 |
|
|
dnl 1. Optimized X86 assembly core if target is i386 architecture |
628 |
|
|
SAVED_DEFINES=$DEFINES |
629 |
|
|
if [[ "x$FPE_CORE" = "xdefault" ]]; then |
630 |
|
|
if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_I386" = "xyes" -a "x$HAVE_GAS" = "xyes" ]]; then |
631 |
|
|
DEFINES="$DEFINES -DFPU_X86" |
632 |
|
|
FPE_CORE_STR="i386 optimized core" |
633 |
|
|
FPUSRCS="../uae_cpu/fpu/fpu_x86.cpp" |
634 |
gbeauche |
1.36 |
else |
635 |
|
|
FPE_CORE="uae" |
636 |
gbeauche |
1.35 |
fi |
637 |
|
|
fi |
638 |
|
|
|
639 |
|
|
dnl 2. JIT-FPU only supports IEEE-based implementation. |
640 |
|
|
if [[ "x$WANT_JIT_FPU" = "xyes" -a "x$FPE_CORE" != "xieee" ]]; then |
641 |
|
|
AC_MSG_WARN([Sorry, JIT-FPU supports only the "ieee" FPE implementation]) |
642 |
|
|
FPE_CORE="ieee" |
643 |
|
|
dnl Restore previous variables. FPE_CORE_STR and FPUSRCS are overwritten |
644 |
|
|
DEFINES=$SAVED_DEFINES |
645 |
|
|
fi |
646 |
|
|
|
647 |
|
|
dnl 3. Choose either IEEE-based implementation or the old UAE core |
648 |
|
|
if [[ "x$FPE_CORE" = "xieee" ]]; then |
649 |
|
|
AC_CHECK_HEADERS(fenv.h) |
650 |
|
|
AC_CHECK_FUNCS(feclearexcept fegetexceptflag feraiseexcept fesetexceptflag fetestexcept) |
651 |
|
|
AC_CHECK_FUNCS(fegetround fesetround) |
652 |
|
|
DEFINES="$DEFINES -DFPU_IEEE" |
653 |
|
|
FPE_CORE_STR="ieee-based fpu core" |
654 |
|
|
FPUSRCS="../uae_cpu/fpu/fpu_ieee.cpp" |
655 |
|
|
elif [[ "x$FPE_CORE" = "xuae" ]]; then |
656 |
|
|
DEFINES="$DEFINES -DFPU_UAE" |
657 |
|
|
FPE_CORE_STR="original uae core" |
658 |
|
|
FPUSRCS="../uae_cpu/fpu/fpu_uae.cpp" |
659 |
|
|
fi |
660 |
|
|
|
661 |
|
|
dnl Check for certain math functions |
662 |
|
|
AC_CHECK_FUNCS(atanh) |
663 |
|
|
AC_CHECK_FUNCS(isnan isinf) dnl C99 |
664 |
|
|
AC_CHECK_FUNCS(isnanl isinfl) dnl IEEE ? |
665 |
|
|
|
666 |
cebix |
1.19 |
dnl UAE CPU sources for all non-m68k-native architectures. |
667 |
|
|
if [[ "x$WANT_NATIVE_M68K" = "xno" ]]; then |
668 |
cebix |
1.20 |
CPUINCLUDES="-I../uae_cpu" |
669 |
gbeauche |
1.22 |
CPUSRCS="../uae_cpu/basilisk_glue.cpp ../uae_cpu/memory.cpp ../uae_cpu/newcpu.cpp ../uae_cpu/readcpu.cpp $FPUSRCS cpustbl.cpp cpudefs.cpp $CPUSRCS" |
670 |
cebix |
1.19 |
fi |
671 |
cebix |
1.1 |
|
672 |
gbeauche |
1.23 |
dnl Remove the "-g" option if set for GCC. |
673 |
|
|
if [[ "x$HAVE_GCC27" = "xyes" ]]; then |
674 |
cebix |
1.26 |
dnl gb-- Probably not the cleanest way to take |
675 |
|
|
CFLAGS=`echo $CFLAGS | sed -e 's/ -g / /;s/^-g / /;s/ -g$/ /;s/^-g$//'` |
676 |
|
|
CXXFLAGS=`echo $CXXFLAGS | sed -e 's/ -g / /;s/^-g / /;s/ -g$/ /;s/^-g$//'` |
677 |
cebix |
1.37 |
fi |
678 |
|
|
|
679 |
|
|
dnl Or if we have -Ofast |
680 |
|
|
if [[ "x$HAVE_OFAST" = "xyes" ]]; then |
681 |
|
|
CFLAGS=`echo $CFLAGS | sed -e 's/ -g / -Ofast /;s/^-g /-Ofast /;s/-g$/ -Ofast/;s/^-g$/-Ofast/'` |
682 |
|
|
CXXFLAGS=`echo $CXXFLAGS | sed -e 's/ -g / -Ofast /;s/^-g /-Ofast/;s/ -g$/ -Ofast/;s/^-g$/-Ofast/'` |
683 |
|
|
CXXFLAGS="-LANG:std $CXXFLAGS" |
684 |
|
|
LDFLAGS="$LDFLAGS -Ofast" |
685 |
gbeauche |
1.23 |
fi |
686 |
|
|
|
687 |
cebix |
1.3 |
dnl Generate Makefile. |
688 |
cebix |
1.1 |
AC_SUBST(DEFINES) |
689 |
|
|
AC_SUBST(SYSSRCS) |
690 |
|
|
AC_SUBST(CPUINCLUDES) |
691 |
|
|
AC_SUBST(CPUSRCS) |
692 |
|
|
AC_OUTPUT(Makefile) |
693 |
cebix |
1.12 |
|
694 |
|
|
dnl Print summary. |
695 |
|
|
echo |
696 |
|
|
echo Basilisk II configuration summary: |
697 |
|
|
echo |
698 |
|
|
echo XFree86 DGA support .............. : $WANT_XF86_DGA |
699 |
cebix |
1.17 |
echo XFree86 VidMode support .......... : $WANT_XF86_VIDMODE |
700 |
cebix |
1.12 |
echo fbdev DGA support ................ : $WANT_FBDEV_DGA |
701 |
gbeauche |
1.23 |
echo Enable video on SEGV signals ..... : $WANT_VOSF |
702 |
cebix |
1.12 |
echo ESD sound support ................ : $WANT_ESD |
703 |
cebix |
1.14 |
echo GTK user interface ............... : $WANT_GTK |
704 |
cebix |
1.12 |
echo mon debugger support ............. : $WANT_MON |
705 |
cebix |
1.19 |
echo Running m68k code natively ....... : $WANT_NATIVE_M68K |
706 |
gbeauche |
1.35 |
echo Floating-Point emulation core .... : $FPE_CORE_STR |
707 |
gbeauche |
1.23 |
echo Assembly optimizations ........... : $ASM_OPTIMIZATIONS |
708 |
|
|
echo Addressing mode .................. : $ADDRESSING_MODE |
709 |
cebix |
1.12 |
echo |
710 |
cebix |
1.19 |
echo "Configuration done. Now type \"make\" (or \"gmake\")." |