Hello Yiming Chen, * Yiming Chen wrote on Mon, Oct 13, 2008 at 03:47:24AM CEST: > After installing ubuntu8.10 and kdevelop3.5.3, I created a project using > template "simple hello world program". Although "Run automake&friends" > and "Run configure" was successfully executed, "compile file" and "build > project" generated some errors as follows: > > cd '/home/chenym/workspace/test1/debug/src' && WANT_AUTOCONF_2_5="1" > WANT_AUTOMAKE_1_6="1" LC_MESSAGES="C" LC_CTYPE="C" make test1.lo > compiling test1.cpp (g++) > ../libtool: line 832: X--tag=CXX: command not found
You have used a ltmain.sh from Libtool 2.x, but the Libtool macros were used from a 1.5.x version. Make sure aclocal sees the 2.x macros. If your package installs the macro files, say, in a subdir m4/, then make sure they are up to date. Hope that helps. Cheers, Ralf _______________________________________________ http://lists.gnu.org/mailman/listinfo/libtool
