On Wednesday 16 July 2003 13:37, Erik Rydgren wrote:
> Just feed the linker the required libraries and these errors should go
> away.

I fear that the problem might be more complicated than it
seems: What the linker complains about are missing template
instantiations. Depending in the compiler/linker, it might be
impossible to automatically instantiate (and compile) the
missing templates at link time.

The OP might be lucky and his compiler comes with a libC.so
which already contains instantiations of standard templates
for "usual" types (whatever "usual" might mean in this case,
for instance std::istream<char, std::char_traits<char> >) or
the compiler performs some magic to automatically compile
the missing instantiations *with the same compiler flags* as
the libxalan.

But probably his only chance is to create a source file with
all missing template instantiations and link the resulting
object with the rest of his work.

Kind regards
    Ingolf
-- 

Ingolf Steinbach                       Jena-Optronik GmbH
[EMAIL PROTECTED]       ++49 3641 200-147
PGP: 0x7B3B5661  213C 828E 0C92 16B5  05D0 4D5B A324 EC04


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to