From: "Laurynas Biveinis" Date: Thu, 5 Jul 2001 00:21:54 +0200 To: djgpp AT delorie DOT com Subject: Re: Need help with MSS Message-ID: <20010705002154.A323@lauras.lt> References: <9hvp4j$e3kc$1 AT reader03 DOT wxs DOT nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9hvp4j$e3kc$1@reader03.wxs.nl> User-Agent: Mutt/1.3.18i Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > I am looking for some debug tools that help me to track a nasty bug in a > graphic program. Any tips of what I might use? > > In the distant past I used MMS 1.2, but this works poorly with newer > versions of GCC. It seems to have problems with one of standard header > files. Are there any experiences with GCC/G++ 2.95.3 in combination with MSS > 1.2? Yes, it does not build with G++ headers from 2.95.x, because MSS mostly defines new and delete as a preprocessor symbols. This does not work well with operator overloading in affected headers. A crude but working workaround is to add #ifndef MSS guards there. Otherwise it works OK. Laurynas