1997-07-13 05:39:00 +08:00
|
|
|
/* dlmain.c -- hello test program that uses simulated dynamic linking
|
1998-12-31 19:25:57 +08:00
|
|
|
Copyright (C) 1996-1999 Free Software Foundation, Inc.
|
1997-07-13 05:39:00 +08:00
|
|
|
This file is part of GNU Libtool.
|
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(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
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
USA. */
|
|
|
|
|
|
|
|
#include "foo.h"
|
|
|
|
#include <stdio.h>
|
1999-01-09 17:51:44 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
1997-07-13 05:39:00 +08:00
|
|
|
#include <string.h>
|
1999-01-09 17:51:44 +08:00
|
|
|
#endif
|
1997-07-13 05:39:00 +08:00
|
|
|
|
1999-01-14 05:39:14 +08:00
|
|
|
struct lt_symlist
|
1997-07-13 05:39:00 +08:00
|
|
|
{
|
1999-01-14 05:39:14 +08:00
|
|
|
const char *name;
|
|
|
|
lt_ptr_t address;
|
1997-07-13 05:39:00 +08:00
|
|
|
};
|
|
|
|
|
1999-01-14 05:39:14 +08:00
|
|
|
extern const struct lt_symlist lt_preloaded_symbols[];
|
1997-07-13 05:39:00 +08:00
|
|
|
|
|
|
|
int
|
1997-07-25 03:00:16 +08:00
|
|
|
main (argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
1997-07-13 05:39:00 +08:00
|
|
|
{
|
1999-01-14 05:39:14 +08:00
|
|
|
const struct lt_symlist *s;
|
1997-07-13 05:39:00 +08:00
|
|
|
int (*pfoo)() = 0;
|
|
|
|
int (*phello)() = 0;
|
|
|
|
int *pnothing = 0;
|
|
|
|
|
1997-07-22 01:31:05 +08:00
|
|
|
printf ("Welcome to *modular* GNU Hell!\n");
|
1997-07-13 05:39:00 +08:00
|
|
|
|
1997-07-22 01:31:05 +08:00
|
|
|
/* Look up the symbols we require for this demonstration. */
|
1999-01-14 05:39:14 +08:00
|
|
|
s = lt_preloaded_symbols;
|
1997-07-13 05:39:00 +08:00
|
|
|
while (s->name)
|
|
|
|
{
|
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br>
* ltconfig.in, ltmain.in: updated and fixed the patches below
1998-11-04 Thomas Tanner <tanner@gmx.de>
* mdemo/*: added new demo to demonstrate building of dlopenend
modules
* tests/Makefile.am, tests/mdemo*: added some tests for mdemo
1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk>
* demo/configure.in: added AC_EXEEXT macro so that the tests can
work on cywin32/mingw32 hosts. This requires the current CVS
autoconf
1998-11-04 Thomas Tanner <tanner@gmx.de>
* ltmain.in: New flag -export-symbols; new dlpreopen system
* demo/dlmain.c: removed dld_preloaded_symbol_count
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltmain.in: On installation, don't get confused if the same name
appears more than once in the list of library names.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Add objext and libext variables. Check for object
suffix. Check for mingw32* as well as cygwin32*. Use objext when
testing compiler. Add support for Visual C++ on cygwin32 when not
using gcc. Add objext, libext, and fix_srcfile_path to generated
libtool script.
* ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path
if it is set. Check for .obj as well as for .o, and for .lib as
well as for .a. Use .${libext} rather than .a when creating old
libraries.
* libtoolize.in: Change initial /bin/sh to @SHELL@.
* libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for
AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the
AC_REQUIRE in AC_CHECK_TOOL.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Look in the right directory for libtool.c in
archive_cmds for cygwin32.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Fix cygwin32 support to avoid using a double
extension, to delete the def file, to set version_type to windows,
and to include versuffix in the DLL name.
* ltmain.in: Add support for a version_type of windows.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Add cygwin32 support.
* libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a
cygwin32 host. Pass DLLTOOL and AS to ltconfig.
(AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
|
|
|
if (s->address) {
|
1999-01-21 01:05:29 +08:00
|
|
|
const char *name = s->name;
|
1998-12-02 02:24:08 +08:00
|
|
|
printf ("found symbol: %s\n", name);
|
|
|
|
if (!strcmp ("hello", name))
|
1999-01-21 02:06:47 +08:00
|
|
|
phello = (int(*)())s->address;
|
1998-12-02 02:24:08 +08:00
|
|
|
else if (!strcmp ("foo", name))
|
1999-01-21 02:06:47 +08:00
|
|
|
pfoo = (int(*)())s->address;
|
1998-12-02 02:24:08 +08:00
|
|
|
else if (!strcmp ("nothing", name))
|
1999-02-15 22:23:02 +08:00
|
|
|
#ifndef _WIN32
|
|
|
|
/* In an ideal world we could do this... */
|
1999-01-21 02:06:47 +08:00
|
|
|
pnothing = (int*)s->address;
|
1999-02-15 22:23:02 +08:00
|
|
|
#else /* !_WIN32 */
|
|
|
|
/* In an ideal world a shared lib would be able to export data */
|
|
|
|
pnothing = (int*)¬hing;
|
|
|
|
#endif
|
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br>
* ltconfig.in, ltmain.in: updated and fixed the patches below
1998-11-04 Thomas Tanner <tanner@gmx.de>
* mdemo/*: added new demo to demonstrate building of dlopenend
modules
* tests/Makefile.am, tests/mdemo*: added some tests for mdemo
1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk>
* demo/configure.in: added AC_EXEEXT macro so that the tests can
work on cywin32/mingw32 hosts. This requires the current CVS
autoconf
1998-11-04 Thomas Tanner <tanner@gmx.de>
* ltmain.in: New flag -export-symbols; new dlpreopen system
* demo/dlmain.c: removed dld_preloaded_symbol_count
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltmain.in: On installation, don't get confused if the same name
appears more than once in the list of library names.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Add objext and libext variables. Check for object
suffix. Check for mingw32* as well as cygwin32*. Use objext when
testing compiler. Add support for Visual C++ on cygwin32 when not
using gcc. Add objext, libext, and fix_srcfile_path to generated
libtool script.
* ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path
if it is set. Check for .obj as well as for .o, and for .lib as
well as for .a. Use .${libext} rather than .a when creating old
libraries.
* libtoolize.in: Change initial /bin/sh to @SHELL@.
* libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for
AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the
AC_REQUIRE in AC_CHECK_TOOL.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Look in the right directory for libtool.c in
archive_cmds for cygwin32.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Fix cygwin32 support to avoid using a double
extension, to delete the def file, to set version_type to windows,
and to include versuffix in the DLL name.
* ltmain.in: Add support for a version_type of windows.
1998-11-04 Ian Lance Taylor <ian@cygnus.com>
* ltconfig.in: Add cygwin32 support.
* libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a
cygwin32 host. Pass DLLTOOL and AS to ltconfig.
(AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
|
|
|
} else
|
|
|
|
printf ("found file: %s\n", s->name);
|
1997-07-13 05:39:00 +08:00
|
|
|
s ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try assigning to the nothing variable. */
|
|
|
|
if (pnothing)
|
|
|
|
*pnothing = 1;
|
|
|
|
else
|
|
|
|
fprintf (stderr, "did not find the `nothing' variable\n");
|
|
|
|
|
|
|
|
/* Just call the functions and check return values. */
|
|
|
|
if (pfoo)
|
|
|
|
{
|
|
|
|
if ((*pfoo) () != FOO_RET)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
1997-07-22 01:31:05 +08:00
|
|
|
fprintf (stderr, "did not find the `foo' function\n");
|
1997-07-13 05:39:00 +08:00
|
|
|
|
|
|
|
if (phello)
|
|
|
|
{
|
|
|
|
if ((*phello) () != HELLO_RET)
|
1997-07-20 13:03:16 +08:00
|
|
|
return 3;
|
1997-07-13 05:39:00 +08:00
|
|
|
}
|
|
|
|
else
|
1997-07-22 01:31:05 +08:00
|
|
|
fprintf (stderr, "did not find the `hello' function\n");
|
1997-07-13 05:39:00 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|