Hi, I want to build a debug build with an added target. I have configure -disable-optimized and then followed >> HowTo: Create and register a new back end (a new hardware target), on the wiki Yet, I get the CXXFLAGS set with -DNDEBUGS, which is not what I want. What should I do? /Jonas -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110103/57df712e/attachment.html>
On 2011-01-03 17:08, Jonas Paulsson wrote:> > Hi, > > I want to build a debug build with an added target. I have > > configure -disable-optimized > > and then followed >> HowTo: Create and register a new back end (a new hardware target), on the wiki > > Yet, I get the CXXFLAGS set with -DNDEBUGS, which is not what I want. > > What should I do?--enable-assertions, should be the default if you checked out from SVN or git. Release tarballs default it off for some reason. Best regards, --Edwin