On Wed, Jun 1, 2011 at 1:44 AM, Axel Freyn <axel-freyn@xxxxxx> wrote: > Hi > > On Wed, Jun 01, 2011 at 01:03:03AM +0000, Her, Il wrote: >> Yes, it is compiled well with gcc 3.4.6, >> but it doesn't work with gcc 4.1.2 > > Strange -- I just tried with 3.4.6 on x86_64, configured as > ../gcc-3.4.6/configure --prefix=/tmp/gcc_test/install --disable-multilib > Thread model: posix > gcc version 3.4.6 > > your testcase gives (after removing the erroneous ";" in sub.cpp ) > > /tmp/ccGJf1zv.o: In function `main': > /tmp/gcc_test/main.cpp:9: undefined reference to `Base<TEST>::dump(TEST&)' > /tmp/gcc_test/main.cpp:10: undefined reference to `Base<TEST>::fn(int, int)' > collect2: ld returned 1 exit status I just did the same thing on x86_64-unknown-linux-gnu, with the same results. Looking at the code, I don't see how the results could be anything else. You need to force the template expansion to occur as described on the web page referenced earlier on the thread. Also looking at the code, it did not compile, due to the extra semicolon, and I had to change main.cpp to #include "test.h" rather than "TEST.h". So I don't think you tested the exact code you showed us with gcc 3.4.6. Ian