[llvm-commits] [llvm] r164426 - in /llvm/trunk: autoconf/configure.ac configure include/llvm/Config/config.h.in lib/Support/Unix/Signals.inc

Eric Christopher echristo at gmail.com
Mon Nov 19 11:20:28 PST 2012


On Mon, Nov 19, 2012 at 11:15 AM, Dimitry Andric <dimitry at andric.com> wrote:

> On 2012-09-22 01:03, Eric Christopher wrote:
>
>> Author: echristo
>> Date: Fri Sep 21 18:03:29 2012
>> New Revision: 164426
>>
>> URL: http://llvm.org/viewvc/llvm-**project?rev=164426&view=rev<http://llvm.org/viewvc/llvm-project?rev=164426&view=rev>
>> Log:
>> Add an --enable-backtraces option to configure to determine
>> whether or not we want to print out backtrace information. Useful
>> for libraries that don't need backtrace information on a crash.
>>
> ...
>
>> @@ -678,6 +678,21 @@
>>   AC_DEFINE_UNQUOTED([ENABLE_**TIMESTAMPS],$ENABLE_**TIMESTAMPS,
>>                      [Define if timestamp information (e.g., __DATE__) is
>> allowed])
>>
>> +dnl Enable embedding timestamp information into build.
>> +
>> +AC_ARG_ENABLE(backtraces,
>> +  AS_HELP_STRING([--enable-**backtraces],
>> +                 [Enable embedding backtraces on crash (default is
>> YES)]),,
>> +                 enableval=default)
>> +case "$enableval" in
>> +  yes) AC_SUBST(ENABLE_TIMESTAMPS,[1]**) ;;
>> +  no)  AC_SUBST(ENABLE_TIMESTAMPS,[0]**) ;;
>> +  default) AC_SUBST(ENABLE_TIMESTAMPS,[1]**) ;;
>>
>
> This is a pasto, you probably meant ENABLE_BACKTRACES here?
>

Uh, yep.

Thanks. I'll fix shortly.

-eric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20121119/511f1a4f/attachment.html>


More information about the llvm-commits mailing list