|
From: Nicholas N. <nj...@cs...> - 2005-08-17 02:53:28
|
On Mon, 15 Aug 2005, Neil Youngman wrote: > The problem seems to be that valgrind-3.0.0/VEX/Makefile has CC=gcc, > although it was set to gcc-3.4.4 in the configuration. Changing it in > this Makefile allows valgrind to build. > > This seems to be a deficiency in the configuration script. Yes. Vex has a hand-written Makefile, it does not use the automake/autoconf stuff that the rest of Valgrind does. The two options I can see are: - import CC from the configure script in the way that causes the minimum disturbance (I don't know how to do that, though) - fully automake/autoconf-ify Vex. The latter is made trickier by Vex being an SVN external module. Tom, do you know what would be a good way to fix this problem? N |