Resolved: multi-language-branch: --tag=CXX not specified

2000-09-16 Thread Robert Boehne
Actually I was calling AC_LIBTOOL_CXX from configure.in, the documentation seems to suggest that I should: ... To enable C++ support in libtool, use the `AC_LIBTOOL_CXX' macro in your `configure.in' file. I commented out that call, but it didn't help.

Re: Resolved: multi-language-branch: --tag=CXX not specified

2000-09-16 Thread Alexandre Oliva
On Sep 16, 2000, Robert Boehne [EMAIL PROTECTED] wrote: I'm no M4 guru, but it looks right to me. Any ideas? It might be related with the behavioral differences of AC_REQUIRE between autoconf 2.13 and CVS autoconf. It works for me, with autoconf 2.13, but AC_REQUIRE is known to be broken in

Re: multi-language-branch: --tag=CXX not specified

2000-09-15 Thread Alexandre Oliva
On Sep 14, 2000, Robert Boehne [EMAIL PROTECTED] wrote: /bin/sh ../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I../.. [snip] libtool: compile: unable to infer tagged configuration libtool: compile: specify a tag with `--tag' libtool.m4, that should be part of aclocal.m4, hooks

Re: multi-language-branch: --tag=CXX not specified

2000-09-15 Thread Ossama Othman
Hi Robert, On Fri, Sep 15, 2000 at 03:37:37PM -0500, Robert Boehne wrote: I can now run "make" from the top level and the library will be built. Perhaps there is some confustion using libtool with CXX and CC for files in the same Makefile? This should be transparent. A couple of months ago

Re: multi-language-branch: --tag=CXX not specified

2000-09-15 Thread Ossama Othman
Hi Robert, I only noticed the following after I posted my last message: On Fri, Sep 15, 2000 at 03:37:37PM -0500, Robert Boehne wrote: libtool: compile: unable to infer tagged configuration libtool: compile: specify a tag with `--tag' Are you using a C++ compiler different (even if only by

Re: multi-language-branch: --tag=CXX not specified

2000-09-15 Thread Ossama Othman
Hi Alexandre, On Fri, Sep 15, 2000 at 06:58:02PM -0300, Alexandre Oliva wrote: On Sep 15, 2000, Robert Boehne [EMAIL PROTECTED] wrote: % ../../libtool --tag=CXX --config | grep '^CC=' | tail -1 CC="cc" That's the problem. It should be 'g++', in the CXX configuration. Remove the

Re: multi-language-branch: --tag=CXX not specified

2000-09-15 Thread Alexandre Oliva
On Sep 15, 2000, Ossama Othman [EMAIL PROTECTED] wrote: Robert sent me his generated libtool script. Part of the CXX configuration is listed below. It appears that ltconfig wasn't invoked properly. Then I'll re-iterate the question of what version of the libtool scripts and libtool.m4 he's

multi-language-branch: --tag=CXX not specified

2000-09-14 Thread Robert Boehne
I'm using the latest multi-language-branch of libtool, with a deeply nested directory structure, top/ top/src/ top/src/TKernel I have Makefile.am's in each, (oh yeah, and the latest automake) When I had only one Makefile.am in the top level that made this library, it worked. I then moved it