|
From: Dirk M. <dm...@gm...> - 2003-02-26 00:14:33
|
On Die, 25 Feb 2003, Julian Seward wrote: > So I wonder if, in valgrind/memcheck/tests/Makefile.am, > the renaming of CXXFLAGS to AM_CXXFLAGS didn't have the desired > effect? Thats correct. $(AM_CXXFLAGS) is _before_ CXXFLAGS, so a later flags (like CXXFLAGS) overwrites it. Sorry, this was introduced by me then. However, CXXFLAGS is not really supposed to get set in a makefile, its a "user flag" (something that the user should set, i.e. by doing CXXFLAGS="-march=pentium42" make ) However in this case it is desired to not compile with -O2. something is fishy here. have to look into it. -- Dirk (received 274 mails today) |