From: Ian Lance Taylor Date: Tue, 27 Sep 1994 22:25:04 +0000 (+0000) Subject: * Makefile.in (CC): Define. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=262c876349e7b12a4c8fbd6d283cd190e7970a24;p=binutils-gdb.git * Makefile.in (CC): Define. (CXX): Move definition, change from g++ to gcc. (EXPECT, RUNTEST): Copy definitions from top level Makefile.in. (RUNTEST_CC, RUNTEST_CFLAGS): Remove. (RUNTEST_CXX, RUNTEST_CXXFLAGS): Remove. (CC_FOR_TARGET, CXX_FOR_TARGET): Copy from top level Makefile.in. (.cc.o): Comment out. (testdir): Remove. (site.exp): Don't create testdir or set tmpdir. (check): Run checks even if not running native. Use CC_FOR_TARGET instead of RUNTEST_CC, and likewise for CXX. (cdtest targets): Comment out. * config/solaris2.mh (HOSTING_LIBS): Only mention crtend.o once. * cdtest-bar.cc, cdtest-foo.cc, cdtest-foo.h: Remove. * cdtest-main.cc, cdtest.exp: Remove. --- diff --git a/ld/.Sanitize b/ld/.Sanitize index 14c302e49db..3ef50a7812b 100644 --- a/ld/.Sanitize +++ b/ld/.Sanitize @@ -36,11 +36,6 @@ Makefile.in NEWS README TODO -cdtest-foo.cc -cdtest-foo.h -cdtest-bar.cc -cdtest-main.cc -cdtest.exp config config.h configure.bat diff --git a/ld/ChangeLog b/ld/ChangeLog index d8138f7705c..d9da83c5c4c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,33 @@ +Tue Sep 27 14:56:20 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + + * Makefile.in (CC): Define. + (CXX): Move definition, change from g++ to gcc. + (EXPECT, RUNTEST): Copy definitions from top level Makefile.in. + (RUNTEST_CC, RUNTEST_CFLAGS): Remove. + (RUNTEST_CXX, RUNTEST_CXXFLAGS): Remove. + (CC_FOR_TARGET, CXX_FOR_TARGET): Copy from top level Makefile.in. + (.cc.o): Comment out. + (testdir): Remove. + (site.exp): Don't create testdir or set tmpdir. + (check): Run checks even if not running native. Use CC_FOR_TARGET + instead of RUNTEST_CC, and likewise for CXX. + (cdtest targets): Comment out. + * config/solaris2.mh (HOSTING_LIBS): Only mention crtend.o once. + * cdtest-bar.cc, cdtest-foo.cc, cdtest-foo.h: Remove. + * cdtest-main.cc, cdtest.exp: Remove. + Mon Sep 26 11:40:30 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + * emulparams/elf32bmip.sh: Rename from elf32mipb.sh to avoid DOS + file naming problems. + * emulparams/elf32lmip.sh: Rename from elf32mipl.sh. + * Makefile.in (ALL_EMULATIONS): Rename eelf32mipb.o to + eelf32bmip.o and eelf32mipl.o to eelf32lmip.o. + (eelf32bmip.c): Rename from eelf32mipb.c. Use elf32bmip.sh. + (eelf32lmip.c): Rename from eelf32mipl.c. Use elf32lmip.sh. + * config/mipsb-elf32.mt (EMUL): Use elf32bmip, not elf32mipb. + * config/mipsl-elf32.mt (EMUL): Use elf32lmip, not elf32mipl. + * genscripts.sh: Always search /usr/local/TARGET/lib. * scripttempl/elf.sc: If -N is set, force DATA_ADDR to be ".". diff --git a/ld/cdtest-bar.cc b/ld/cdtest-bar.cc deleted file mode 100644 index 79000e33954..00000000000 --- a/ld/cdtest-bar.cc +++ /dev/null @@ -1,17 +0,0 @@ -// test program for Class Foo - -#include "cdtest-foo.h" - -static Foo static_foo( "static_foo"); - -Foo f() -{ - Foo x; - return x; -} - -void g() -{ - Foo other_foo1 = Foo( "other_foo1"), other_foo2 = Foo( "other_foo2"); - other_foo2 = other_foo1; -} diff --git a/ld/cdtest-foo.cc b/ld/cdtest-foo.cc deleted file mode 100644 index 615e33cea78..00000000000 --- a/ld/cdtest-foo.cc +++ /dev/null @@ -1,89 +0,0 @@ -// Class Foo -#pragma implementation - - -// We don't use header files, since we only want to see, whether the -// compiler is installed properly. -// -#if (__GNUG__ == 2) -typedef __SIZE_TYPE__ size_t; -#else -typedef unsigned int size_t; -#endif - -extern "C" { - char *strncpy (char* dest, const char* dest, size_t len); - int printf (const char*, ...); -}; - -#include "cdtest-foo.h" - -int Foo::foos = 0; - -void Foo::init_foo () -{ - printf ("BROKENLY calling Foo::init_foo from __init_start; size_of(Foo) = %d\n", sizeof(Foo)); - foos = FOOLISH_NUMBER; -} - - -Foo::Foo () -{ - i = ++foos; - strncpy (message, "default-foo", len); -#ifdef WITH_ADDR - printf ("Constructing Foo(%d) \"default-foo\" at %08x\n", i, this); -#else - printf ("Constructing Foo(%d) \"default-foo\"\n", i); -#endif -} - -Foo::Foo (char* msg) -{ - i = ++foos; - strncpy( message, msg, len); -#ifdef WITH_ADDR - printf ( "Constructing Foo(%d) \"%s\" at %08x\n", i, message, this); -#else - printf ( "Constructing Foo(%d) \"%s\"\n", i, message); -#endif -} - - -Foo::Foo (const Foo& foo) -{ - i = ++foos; -#ifdef WITH_ADDR - printf ("Initializing Foo(%d) \"%s\" at %08x with Foo(%d) %08x\n", - i, foo.message, this, foo.i, &foo); -#else - printf ("Initializing Foo(%d) \"%s\" with Foo(%d)\n",i, foo.message, foo.i); -#endif - for ( int k = 0; k < FOO_MSG_LEN; k++) message[k] = foo.message[k]; -} - - -Foo& Foo::operator= (const Foo& foo) -{ -#ifdef WITH_ADDR - printf ("Copying Foo(%d) \"%s\" at %08x to Foo(%d) %08x\n", - foo.i, foo.message, &foo, i, this); -#else - printf ("Copying Foo(%d) \"%s\" to Foo(%d)\n", foo.i, foo.message, i); -#endif - for ( int k = 0; k < FOO_MSG_LEN; k++) message[k] = foo.message[k]; - return *this; -} - - -Foo::~Foo () -{ - foos--; -#ifdef WITH_ADDR - printf ("Destructing Foo(%d) \"%s\" at %08x (remaining foos: %d)\n", - i, message, this, foos); -#else - printf ("Destructing Foo(%d) \"%s\" (remaining foos: %d)\n", - i, message, foos); -#endif -} diff --git a/ld/cdtest-foo.h b/ld/cdtest-foo.h deleted file mode 100644 index 0ba2d37b272..00000000000 --- a/ld/cdtest-foo.h +++ /dev/null @@ -1,24 +0,0 @@ -// Class Foo - -#pragma interface - -#define FOOLISH_NUMBER -4711 - -#ifndef FOO_MSG_LEN -#define FOO_MSG_LEN 80 -#endif - -class Foo { - static int foos; - int i; - const len = FOO_MSG_LEN; - char message[len]; -public: - static void init_foo (); - static int nb_foos() { return foos; } - Foo(); - Foo( char* message); - Foo(const Foo&); - Foo & operator= (const Foo&); - ~Foo (); -}; diff --git a/ld/cdtest-main.cc b/ld/cdtest-main.cc deleted file mode 100644 index 4b99b5c5f0f..00000000000 --- a/ld/cdtest-main.cc +++ /dev/null @@ -1,40 +0,0 @@ -// main program for Class Foo - -extern "C" { -// Some implementations (e.g. SUNOS 4.1) are broken, -// in that they require . But, if gcc/g++ is installed -// correctly, you should get gcc's assert.h. -// If the compile fails, it means the wrong include files are in use! -#include -}; -#include "cdtest-foo.h" - -extern "C" void __init_start(); - -extern Foo f(void); -extern void g(void); - -/* This function should *not* be called by the environment. There is - no way in C++ to ``run something after the initializers but before main()''. - The library that depends on this (NIHCL) is broken. -- John Gilmore - We leave this here to test that future changes to the compiler - do not re-introduce this losing ``feature''. */ -void -__init_start() -{ - Foo::init_foo(); -} - -static Foo static_foo( "static_foo"); - -main() -{ - assert (Foo::nb_foos() == 2); - Foo automatic_foo( "automatic_foo"); - Foo bla_foo = f(); - assert (Foo::nb_foos() == 4); - g(); - assert (Foo::nb_foos() == 4); - // `automatic_foo' and `bla_foo' are destructed here -} - diff --git a/ld/cdtest.exp b/ld/cdtest.exp deleted file mode 100644 index 39be0dbc2c7..00000000000 --- a/ld/cdtest.exp +++ /dev/null @@ -1,15 +0,0 @@ -Constructing Foo(1) "static_foo" -Constructing Foo(2) "static_foo" -Constructing Foo(3) "automatic_foo" -Constructing Foo(4) "default-foo" -Initializing Foo(5) "default-foo" with Foo(4) -Destructing Foo(4) "default-foo" (remaining foos: 4) -Constructing Foo(5) "other_foo1" -Constructing Foo(6) "other_foo2" -Copying Foo(5) "other_foo1" to Foo(6) -Destructing Foo(6) "other_foo1" (remaining foos: 5) -Destructing Foo(5) "other_foo1" (remaining foos: 4) -Destructing Foo(5) "default-foo" (remaining foos: 3) -Destructing Foo(3) "automatic_foo" (remaining foos: 2) -Destructing Foo(2) "static_foo" (remaining foos: 1) -Destructing Foo(1) "static_foo" (remaining foos: 0) diff --git a/ld/config/solaris2.mh b/ld/config/solaris2.mh index dba34132a40..042c2ed30f6 100644 --- a/ld/config/solaris2.mh +++ b/ld/config/solaris2.mh @@ -1,4 +1,4 @@ # Hosting files for Solaris HOSTING_CRT0=`if [ -f ../gcc/crt1.o ]; then echo ../gcc/crt1.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crt1.o/'; fi` `if [ -f ../gcc/crti.o ]; then echo ../gcc/crti.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crti.o/'; fi` /usr/ccs/lib/values-Xa.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtbegin.o/'; fi` -HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -lc `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; fi` `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtend.o/'; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtn.o/'; fi` +HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -lc `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtend.o/'; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtn.o/'; fi` NATIVE_LIB_DIRS=/usr/ccs/lib