]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/configure.ac
Fix creation of stamp-h by gdb's configure script
[thirdparty/binutils-gdb.git] / gdb / gdbserver / configure.ac
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
42a4f53d 2dnl Copyright (C) 2000-2019 Free Software Foundation, Inc.
d6e9fb05
JK
3dnl
4dnl This file is part of GDB.
5dnl
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
5a0e3bd0 8dnl the Free Software Foundation; either version 3 of the License, or
d6e9fb05
JK
9dnl (at your option) any later version.
10dnl
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU General Public License
5a0e3bd0 17dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
d6e9fb05
JK
18
19dnl Process this file with autoconf to produce a configure script.
20
21AC_INIT(server.c)
c5adaa19 22AC_CONFIG_HEADERS(config.h:config.in, [echo > stamp-h])
c9a1864a
YQ
23
24AM_MAINTAINER_MODE
84563040
DJ
25
26AC_PROG_CC
3bc3d82a 27AC_PROG_CXX
fd462a61 28AC_GNU_SOURCE
589bc927 29AC_SYS_LARGEFILE
d6e9fb05
JK
30
31AC_CANONICAL_SYSTEM
84563040 32
d6e9fb05 33AC_PROG_INSTALL
e1d2394b 34AC_CHECK_TOOL(AR, ar)
c971b7fa 35AC_PROG_RANLIB
c906108c 36
dcdb98d2
DJ
37AC_ARG_PROGRAM
38
0bcda685
PA
39# We require a C++11 compiler. Check if one is available, and if
40# necessary, set CXX_DIALECT to some -std=xxx switch.
41AX_CXX_COMPILE_STDCXX(11, , mandatory)
42
ee6e2b82 43AC_HEADER_STDC
84563040 44
17ef446e 45# Set the 'development' global.
270c9937 46. $srcdir/../../bfd/development.sh
17ef446e 47
8ecfd7bd 48GDB_AC_SELFTEST([
268a13a5 49 srv_selftest_objs="gdbsupport/selftest.o"
8ecfd7bd 50])
6d580b63 51
bd885420
YQ
52ACX_NONCANONICAL_TARGET
53ACX_NONCANONICAL_HOST
54
61c125b9
TT
55# Dependency checking.
56ZW_CREATE_DEPDIR
60d6cfc9
YQ
57
58# Create sub-directories for objects and dependencies.
268a13a5 59CONFIG_SRC_SUBDIR="arch gdbsupport"
60d6cfc9
YQ
60AC_SUBST(CONFIG_SRC_SUBDIR)
61
62AC_CONFIG_COMMANDS([gdbdepdir],[
63 for subdir in ${CONFIG_SRC_SUBDIR}
64 do
65 $SHELL $ac_aux_dir/mkinstalldirs $subdir/$DEPDIR
66 done],
67 [ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR CONFIG_SRC_SUBDIR="$CONFIG_SRC_SUBDIR"])
68
61c125b9
TT
69ZW_PROG_COMPILER_DEPENDENCIES([CC])
70
648d586d
JB
71gnulib_extra_configure_args=
72# If large-file support is disabled, make sure gnulib does the same.
73if test "$enable_largefile" = no; then
74gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
75fi
76
c971b7fa
PA
77# Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
78# to find the the source subdir to be configured directly under
79# gdbserver/. We need to build gnulib under some other directory not
80# "gnulib", to avoid the problem of both GDB and GDBserver wanting to
81# build it in the same directory, when building in the source dir.
73cc7272 82ACX_CONFIGURE_DIR(["../../gnulib"], ["build-gnulib-gdbserver"],
648d586d 83 ["$gnulib_extra_configure_args"])
c971b7fa 84
0b04e523
TT
85ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
86
726e1356 87AC_CHECK_HEADERS(termios.h sys/reg.h string.h dnl
1bd2f0ba 88 proc_service.h sys/procfs.h linux/elf.h dnl
9c232dda 89 fcntl.h signal.h sys/file.h dnl
80e24d09 90 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
1bd2f0ba 91 netinet/tcp.h arpa/inet.h)
eb0edac8 92AC_FUNC_FORK
4b8b5e72 93AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
84563040 94
3266f10b
TT
95GDB_AC_COMMON
96
eb7aa561
PA
97# Check the return and argument types of ptrace.
98GDB_AC_PTRACE
99
0fb4aa4b
PA
100# Check for UST
101ustlibs=""
102ustinc=""
103
104AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
105 Equivalent to --with-ust-include=PATH/include
106 plus --with-ust-lib=PATH/lib])
107AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
108AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
109
110case $with_ust in
111 no)
112 ustlibs=
113 ustinc=
114 ;;
115 "" | yes)
116 ustlibs=" -lust "
117 ustinc=""
118 ;;
119 *)
120 ustlibs="-L$with_ust/lib -lust"
121 ustinc="-I$with_ust/include "
122 ;;
123esac
124if test "x$with_ust_include" != x; then
125 ustinc="-I$with_ust_include "
126fi
127if test "x$with_ust_lib" != x; then
128 ustlibs="-L$with_ust_lib -lust"
129fi
130
131if test "x$with_ust" != "xno"; then
132 saved_CFLAGS="$CFLAGS"
133 CFLAGS="$CFLAGS $ustinc"
134 AC_MSG_CHECKING([for ust])
135 AC_TRY_COMPILE([
136#define CONFIG_UST_GDB_INTEGRATION
137#include <ust/ust.h>
138 ],[],
139 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
140 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
141 CFLAGS="$saved_CFLAGS"
142fi
143
144# Flags needed for UST
145AC_SUBST(ustlibs)
146AC_SUBST(ustinc)
147
8f13a3ce 148AM_GDB_WARNINGS
3bc3d82a 149
10e86dd7
DE
150dnl dladdr is glibc-specific. It is used by thread-db.c but only for
151dnl debugging messages. It lives in -ldl which is handled below so we don't
152dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
153dnl augment LIBS.
154old_LIBS="$LIBS"
155LIBS="$LIBS -ldl"
156AC_CHECK_FUNCS(dladdr)
157LIBS="$old_LIBS"
158
07697489
PA
159libiberty_INIT
160
1bd2f0ba 161AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 162
791c0056
GB
163AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
164
239b6d10
WT
165# See if <sys/user.h> supports the %fs_base and %gs_bas amd64 segment registers.
166# Older amd64 Linux's don't have the fs_base and gs_base members of
167# `struct user_regs_struct'.
168AC_CHECK_MEMBERS([struct user_regs_struct.fs_base, struct user_regs_struct.gs_base],
f517c180
EA
169 [], [], [#include <sys/types.h>
170#include <sys/user.h>])
239b6d10
WT
171
172
ccbd4912
MK
173AC_CHECK_TYPES(socklen_t, [], [],
174[#include <sys/types.h>
175#include <sys/socket.h>
176])
fb1e4ffc 177
64da5dd5
JB
178case "${target}" in
179 *-android*)
180 # Starting with NDK version 9, <elf.h> actually includes definitions
181 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
182 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
183 # leading to conflicts with the defintions from <linux/elf.h>.
184 # This makes it impossible for us to include both <elf.h> and
185 # <linux/elf.h>, which means that, in practice, we do not have
186 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
187 # Therefore, do not try to auto-detect availability, as it would
188 # get it wrong on this platform.
189 ;;
190 *)
191 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
192 #include <elf.h>
193 )
194esac
8365dcf5 195
c16158bc
JM
196ACX_PKGVERSION([GDB])
197ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
198AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
199AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
200
8838b45e
NS
201# Check for various supplementary target information (beyond the
202# triplet) which might affect the choices in configure.srv.
203case "${target}" in
204changequote(,)dnl
205 i[34567]86-*-linux*)
206changequote([,])dnl
207 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
208 [save_CPPFLAGS="$CPPFLAGS"
209 CPPFLAGS="$CPPFLAGS $CFLAGS"
210 AC_EGREP_CPP([got it], [
211#if __x86_64__
212got it
213#endif
214 ], [gdb_cv_i386_is_x86_64=yes],
215 [gdb_cv_i386_is_x86_64=no])
216 CPPFLAGS="$save_CPPFLAGS"])
217 ;;
201506da
PA
218
219 x86_64-*-linux*)
220 AC_CACHE_CHECK([if building for x32], [gdb_cv_x86_is_x32],
221 [save_CPPFLAGS="$CPPFLAGS"
222 CPPFLAGS="$CPPFLAGS $CFLAGS"
223 AC_EGREP_CPP([got it], [
224#if __x86_64__ && __ILP32__
225got it
226#endif
227 ], [gdb_cv_x86_is_x32=yes],
228 [gdb_cv_x86_is_x32=no])
229 CPPFLAGS="$save_CPPFLAGS"])
230 ;;
231
9ac544ce
MK
232 m68k-*-*)
233 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
234 [save_CPPFLAGS="$CPPFLAGS"
235 CPPFLAGS="$CPPFLAGS $CFLAGS"
236 AC_EGREP_CPP([got it], [
237#ifdef __mcoldfire__
238got it
239#endif
240 ], [gdb_cv_m68k_is_coldfire=yes],
241 [gdb_cv_m68k_is_coldfire=no])
242 CPPFLAGS="$save_CPPFLAGS"])
243 ;;
8838b45e
NS
244esac
245
7ea81414 246. ${srcdir}/configure.srv
c906108c 247
fb23d554 248# Add in the common host objects.
268a13a5 249. ${srcdir}/../gdbsupport/common.host
fb23d554
SDJ
250srv_host_obs="$common_host_obs"
251
68070c10
PA
252if test "${srv_mingwce}" = "yes"; then
253 LIBS="$LIBS -lws2"
254elif test "${srv_mingw}" = "yes"; then
12ea4b69 255 LIBS="$LIBS -lws2_32"
ac8c974e
AR
256elif test "${srv_qnx}" = "yes"; then
257 LIBS="$LIBS -lsocket"
8ed54b31
JB
258elif test "${srv_lynxos}" = "yes"; then
259 LIBS="$LIBS -lnetinet"
68070c10
PA
260fi
261
262if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
263 AC_DEFINE(USE_WIN32API, 1,
264 [Define if we should use the Windows API, instead of the
265 POSIX API. On Windows, we use the Windows API when
266 building for MinGW, but the POSIX API when building
267 for Cygwin.])
268fi
269
58caa3dc 270if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
271 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
272 [Define if the target supports PTRACE_PEEKUSR for register ]
273 [access.])
58caa3dc
DJ
274fi
275
276if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
277 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
278 [Define if the target supports register sets.])
279
58caa3dc
DJ
280 AC_MSG_CHECKING(for PTRACE_GETREGS)
281 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
282 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
283 [PTRACE_GETREGS;],
284 [gdbsrv_cv_have_ptrace_getregs=yes],
285 [gdbsrv_cv_have_ptrace_getregs=no])])
286 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
287 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 288 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
289 [Define if the target supports PTRACE_GETREGS for register ]
290 [access.])
58caa3dc
DJ
291 fi
292
293 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
294 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
295 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
296 [PTRACE_GETFPXREGS;],
297 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
298 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
299 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
300 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
301 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
302 [Define if the target supports PTRACE_GETFPXREGS for extended ]
303 [register access.])
58caa3dc
DJ
304 fi
305fi
306
9accd112
MM
307if test "${srv_linux_btrace}" = "yes"; then
308 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
309 [Define if the target supports branch tracing.])
310fi
311
0d62e5e8
DJ
312if test "$ac_cv_header_sys_procfs_h" = yes; then
313 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
314 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
315 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
1041a03c 316 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
0d62e5e8
DJ
317 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
318fi
319
18f5fd81
TJB
320dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
321if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
322 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
323fi
324
325dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
326if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
327 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
328fi
329
193f13e6
MK
330dnl Check for libdl, but do not add it to LIBS as only gdbserver
331dnl needs it (and gdbreplay doesn't).
332old_LIBS="$LIBS"
333AC_CHECK_LIB(dl, dlopen)
334LIBS="$old_LIBS"
335
0d62e5e8
DJ
336srv_thread_depfiles=
337srv_libs=
0d62e5e8
DJ
338
339if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
340 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
341 srv_libs="-ldl"
f6528abd 342 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 343 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
344 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
345 # supported there.
346 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
347 LDFLAGS="$LDFLAGS $RDYNAMIC"
348 AC_TRY_LINK([], [],
349 [found="-Wl,--dynamic-list"
350 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
351 [RDYNAMIC="-rdynamic"
352 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
353 AC_TRY_LINK([], [],
354 [found="-rdynamic"],
355 [found="no"
356 RDYNAMIC=""])])
193f13e6
MK
357 AC_SUBST(RDYNAMIC)
358 LDFLAGS="$old_LDFLAGS"
f6528abd 359 AC_MSG_RESULT($found)
193f13e6
MK
360 else
361 srv_libs="-lthread_db"
362 fi
0d62e5e8 363
0d62e5e8 364 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 365 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
366 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
367 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
368 [gdbsrv_cv_have_td_version=yes],
369 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
370 if test $gdbsrv_cv_have_td_version = yes; then
371 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
372 fi
0d62e5e8
DJ
373fi
374
96f15937
PP
375AC_ARG_WITH(libthread-db,
376AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
377[srv_libthread_db_path="${withval}"
96f15937
PP
378 srv_libs="$srv_libthread_db_path"
379])
380
193f13e6
MK
381if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
382 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
383fi
384
9b4b61c8 385if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
386 srv_xmlbuiltin="xml-builtin.o"
387 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
388
389 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 390 srv_xmlfiles=""
fb1e4ffc
DJ
391 for f in $tmp_xmlfiles; do
392 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
393 done
394fi
395
605fd3c6 396GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs $srv_selftest_objs"
0d62e5e8 397GDBSERVER_LIBS="$srv_libs"
c906108c 398
fa593d66
PA
399dnl Check whether the target supports __sync_*_compare_and_swap.
400AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
401 gdbsrv_cv_have_sync_builtins, [
402AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
403 gdbsrv_cv_have_sync_builtins=yes,
404 gdbsrv_cv_have_sync_builtins=no)])
405if test $gdbsrv_cv_have_sync_builtins = yes; then
406 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
407 [Define to 1 if the target supports __sync_*_compare_and_swap])
408fi
409
410dnl Check for -fvisibility=hidden support in the compiler.
411saved_cflags="$CFLAGS"
412CFLAGS="$CFLAGS -fvisibility=hidden"
d0ac1c44 413AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
fa593d66
PA
414 [gdbsrv_cv_have_visibility_hidden=yes],
415 [gdbsrv_cv_have_visibility_hidden=no])
416CFLAGS="$saved_cflags"
417
03583c20
UW
418dnl Check if we can disable the virtual address space randomization.
419dnl The functionality of setarch -R.
420AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
421define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
422# if !HAVE_DECL_ADDR_NO_RANDOMIZE
423# define ADDR_NO_RANDOMIZE 0x0040000
424# endif
425 /* Test the flag could be set and stays set. */
426 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
427 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
428 return 1])])
429AC_RUN_IFELSE([PERSONALITY_TEST],
430 [gdbsrv_cv_have_personality=true],
431 [gdbsrv_cv_have_personality=false],
432 [AC_LINK_IFELSE([PERSONALITY_TEST],
433 [gdbsrv_cv_have_personality=true],
434 [gdbsrv_cv_have_personality=false])])
435if $gdbsrv_cv_have_personality
436then
437 AC_DEFINE([HAVE_PERSONALITY], 1,
438 [Define if you support the personality syscall.])
439fi
440
c2a66c29 441
fa593d66 442IPA_DEPFILES=""
c2a66c29 443extra_libraries=""
fa593d66 444
c2a66c29 445# check whether to enable the inprocess agent
fa593d66
PA
446if test "$ipa_obj" != "" \
447 -a "$gdbsrv_cv_have_sync_builtins" = yes \
448 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
449 have_ipa=true
450else
451 have_ipa=false
452fi
453
454AC_ARG_ENABLE(inprocess-agent,
455AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
456[case "$enableval" in
457 yes) want_ipa=true ;;
458 no) want_ipa=false ;;
459 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
460esac],
461[want_ipa=$have_ipa])
462
463if $want_ipa ; then
464 if $have_ipa ; then
465 IPA_DEPFILES="$ipa_obj"
466 extra_libraries="$extra_libraries libinproctrace.so"
467 else
468 AC_MSG_ERROR([inprocess agent not supported for this target])
469 fi
fa593d66
PA
470fi
471
7ea81414 472AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 473AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
474AC_SUBST(srv_xmlbuiltin)
475AC_SUBST(srv_xmlfiles)
fa593d66
PA
476AC_SUBST(IPA_DEPFILES)
477AC_SUBST(extra_libraries)
c906108c 478
c971b7fa 479GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
480
481GNULIB_STDINT_H=
482if test x"$STDINT_H" != x; then
c971b7fa 483 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
484fi
485AC_SUBST(GNULIB_STDINT_H)
486
c5adaa19 487AC_CONFIG_FILES([Makefile])
1e94266c
SM
488
489AC_OUTPUT