2002-09-27 01:46:04 +08:00
|
|
|
/* Main function for CLI gdb.
|
2014-01-01 11:54:24 +08:00
|
|
|
Copyright (C) 2002-2014 Free Software Foundation, Inc.
|
2002-09-27 01:46:04 +08:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-24 02:08:50 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-09-27 01:46:04 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-24 02:08:50 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2002-09-27 01:46:04 +08:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "main.h"
|
2003-02-14 02:07:24 +08:00
|
|
|
#include "interps.h"
|
2002-09-27 01:46:04 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct captured_main_args args;
|
2010-05-15 04:17:37 +08:00
|
|
|
|
2002-09-27 01:46:04 +08:00
|
|
|
memset (&args, 0, sizeof args);
|
|
|
|
args.argc = argc;
|
|
|
|
args.argv = argv;
|
2012-01-02 21:29:57 +08:00
|
|
|
args.interpreter_p = INTERP_CONSOLE;
|
2010-12-29 18:18:51 +08:00
|
|
|
return gdb_main (&args);
|
2002-09-27 01:46:04 +08:00
|
|
|
}
|