public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Followup to libstdc++ needing lpthread on i586-linux
@ 1997-09-30 15:42 Ross Alexander
  1997-10-02 14:26 ` H.J. Lu
  0 siblings, 1 reply; 2+ messages in thread
From: Ross Alexander @ 1997-09-30 15:42 UTC (permalink / raw)
  To: egcs

stimpy:~$ cat test.cc
#include <iostream.h>
int main()
{
  cout << "Hello World.\n";
}

stimpy:~$ gcc -v
Reading specs from /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/specs
gcc version egcs-2.90.10 970924 (gcc2-970802 experimental)

stimpy:~$ g++ -v test.cc
Reading specs from /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/specs
gcc version egcs-2.90.10 970924 (gcc2-970802 experimental)
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/cpp -lang-c++ -v -undef -D__GNUC__=2 -D__GNUG__=2 -D__cplusplus -D__GNUC_MINOR__=90 -D__ELF__ -Dunix -Dlinux -D__ELF__ -D__unix__ -D__linux__ -D__unix -D__linux -Asystem(posix) -D__EXCEPTIONS -Di386 -Di586 -Asystem(unix) -Acpu(i386) -Amachine(i386) -D__i386__ -D__i586__ -Asystem(unix) -Acpu(i386) -Amachine(i386) test.cc /tmp/cca18906.ii
GNU CPP version egcs-2.90.10 970924 (gcc2-970802 experimental) (i386 Linux/ELF)
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/g++
 /usr/lib/g++-include
 /usr/local/include
 /usr/i586-linux/include
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/include
 /usr/include
End of search list.
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/cc1plus /tmp/cca18906.ii -quiet -dumpbase test.cc -version -o /tmp/cca18906.s
GNU C++ version egcs-2.90.10 970924 (gcc2-970802 experimental) (i586-linux) compiled by GNU C version egcs-2.90.10 970924 (gcc2-970802 experimental).
 as -V -Qy -o /tmp/cca189061.o /tmp/cca18906.s
GNU assembler version 2.8.1 (i686-linux), using BFD version 2.8.1
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/ld -m elf_i386 -dynamic-linker /lib/ld-linux.so.2 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/crtbegin.o -L/usr/lib/gcc-lib/i586-linux/egcs-2.90.10 -L/usr/i586-linux/lib /tmp/cca189061.o -lstdc++ -lm -lgcc -lc -lgcc /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/crtend.o /usr/lib/crtn.o
/usr/lib/libstdc++.so: undefined reference to `_pthread_cleanup_pop_restore'
/usr/lib/libstdc++.so: undefined reference to `_pthread_cleanup_push_defer'
collect2: ld returned 1 exit status

stimpy:~$ g++ -v test.cc -lpthread
Reading specs from /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/specs
gcc version egcs-2.90.10 970924 (gcc2-970802 experimental)
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/cpp -lang-c++ -v -undef -D__GNUC__=2 -D__GNUG__=2 -D__cplusplus -D__GNUC_MINOR__=90 -D__ELF__ -Dunix -Dlinux -D__ELF__ -D__unix__ -D__linux__ -D__unix -D__linux -Asystem(posix) -D__EXCEPTIONS -Di386 -Di586 -Asystem(unix) -Acpu(i386) -Amachine(i386) -D__i386__ -D__i586__ -Asystem(unix) -Acpu(i386) -Amachine(i386) test.cc /tmp/cca18912.ii
GNU CPP version egcs-2.90.10 970924 (gcc2-970802 experimental) (i386 Linux/ELF)
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/g++
 /usr/lib/g++-include
 /usr/local/include
 /usr/i586-linux/include
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/include
 /usr/include
End of search list.
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/cc1plus /tmp/cca18912.ii -quiet -dumpbase test.cc -version -o /tmp/cca18912.s
GNU C++ version egcs-2.90.10 970924 (gcc2-970802 experimental) (i586-linux) compiled by GNU C version egcs-2.90.10 970924 (gcc2-970802 experimental).
 as -V -Qy -o /tmp/cca189121.o /tmp/cca18912.s
GNU assembler version 2.8.1 (i686-linux), using BFD version 2.8.1
 /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/ld -m elf_i386 -dynamic-linker /lib/ld-linux.so.2 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/crtbegin.o -L/usr/lib/gcc-lib/i586-linux/egcs-2.90.10 -L/usr/i586-linux/lib /tmp/cca189121.o -lpthread -lstdc++ -lm -lgcc -lc -lgcc /usr/lib/gcc-lib/i586-linux/egcs-2.90.10/crtend.o /usr/lib/crtn.o
stimpy:~$ uname -a
Linux stimpy 2.0.30 #60 Mon May 12 11:43:10 NZST 1997 i686 unknown
stimpy:~$ 

Sorry about the confusion before.

Ross Alexander

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Followup to libstdc++ needing lpthread on i586-linux
  1997-09-30 15:42 Followup to libstdc++ needing lpthread on i586-linux Ross Alexander
@ 1997-10-02 14:26 ` H.J. Lu
  0 siblings, 0 replies; 2+ messages in thread
From: H.J. Lu @ 1997-10-02 14:26 UTC (permalink / raw)
  To: Ross Alexander; +Cc: egcs

> 
> stimpy:~$ cat test.cc
> #include <iostream.h>
> int main()
> {
>   cout << "Hello World.\n";
> }
> 

Here is a patch.


H.J.
---
--- linuxthreads/sysdeps/pthread/libc-lock.h.orig	Thu Oct  2 13:20:38 1997
+++ linuxthreads/sysdeps/pthread/libc-lock.h	Thu Oct  2 13:22:24 1997
@@ -166,6 +166,11 @@
 /* We need portable names for some functions.  E.g., when they are
    used as argument to __libc_cleanup_region_start.  */
 # define __libc_mutex_unlock __pthread_mutex_unlock
+#else
+# ifdef __ELF__
+#  pragma weak _pthread_cleanup_push_defer
+#  pragma weak _pthread_cleanup_pop_restore
+# endif
 #endif
 
 #endif	/* bits/libc-lock.h */

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1997-10-02 14:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-09-30 15:42 Followup to libstdc++ needing lpthread on i586-linux Ross Alexander
1997-10-02 14:26 ` H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).