diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-08-27 16:20:45 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-08-27 16:20:45 +0000 |
commit | 06c37c965a32bf125f32111fac25707bee54708a (patch) | |
tree | e2fce412e85b16b97075f73dc19c83b703a40a39 /gcc/config.in | |
parent | 9d64df18fd9175749aea2742096b172f59a5ebeb (diff) | |
download | gcc-06c37c965a32bf125f32111fac25707bee54708a.zip gcc-06c37c965a32bf125f32111fac25707bee54708a.tar.gz gcc-06c37c965a32bf125f32111fac25707bee54708a.tar.bz2 |
configure.ac: Add ENABLE_ASSERT_CHECKING control.
* configure.ac: Add ENABLE_ASSERT_CHECKING control.
Add is_release variable, use it for --enable-werror and
--enable-checking defaults.
* system.h (gcc_assert, gcc_unreachable): New.
* doc/install.texi (--enable-checking): Update.
* configure, config.in: Rebuilt.
From-SVN: r86666
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 61f5ec2..a104c67 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -21,6 +21,9 @@ __cxa_atexit in libc. */ #undef DEFAULT_USE_CXA_ATEXIT +/* Define if you want assertions enabled. This is a cheap check. */ +#undef ENABLE_ASSERT_CHECKING + /* Define if you want more run-time sanity checks. This one gets a grab bag of miscellaneous but relatively cheap checks. */ #undef ENABLE_CHECKING |