This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
grokking ld output on freebsd, -frepo
- To: egcs at cygnus dot com
- Subject: grokking ld output on freebsd, -frepo
- From: Jay Sachs <sachs at bull dot cs dot williams dot edu>
- Date: Sat, 01 Nov 1997 12:53:54 -0500
I'm trying to patch tlink.c so that it can correctly recompile & link
using the repository (-frepo) under FreeBSD2.2.5. It mostly works,
but there are some symbols printed by ld that still can't be found,
all of the form
::_t5RCPtr1ZC9StructRep
or
vt::t11SymbolTable1ZPC9Signature
These differ from all the other symbols because they don't have a
leading underscore but instead they have the "::" or "vt::" in front.
How do I massage these symbols so I can do a symbol_hash_lookup() call
that will succeed?
(yes, I know I can install gnu-ld, or configure for elf, but I'd like
to get this working nonetheless).
-Jay