automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Disabling optimization


From: Stepan Kasal
Subject: Re: Disabling optimization
Date: Thu, 18 Nov 2004 08:15:21 +0100
User-agent: Mutt/1.4.1i

Hello,

On Wed, Nov 17, 2004 at 08:01:45PM -0500, Braden McDaniel wrote:
>         if test -n "${CXXFLAGS}"; then
>           user_set_cxxflags=yes
>         fi
>         AC_PROG_CXX
>         if test X$user_set_cxxflags != Xyes; then
>           CXXFLAGS="-g"
>         fi

out of curiosity, what would be wrong with the following?

        if test -n "${CXXFLAGS}"; then
          CXXFLAGS="-g"
        fi
        AC_PROG_CXX

Thanks,
        Stepan Kasal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]