diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-04-12 02:16:46 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-04-12 02:16:46 +0000 |
commit | a37db56bde9874b6f2113164e2a31c5bc12616c8 (patch) | |
tree | 743ad4a7d130f0376f5a69b500437fcf54a84cf5 /gcc/config.in | |
parent | df0261868594f8e8c8ec2e1a369ca7fe867a2d02 (diff) | |
download | gcc-a37db56bde9874b6f2113164e2a31c5bc12616c8.zip gcc-a37db56bde9874b6f2113164e2a31c5bc12616c8.tar.gz gcc-a37db56bde9874b6f2113164e2a31c5bc12616c8.tar.bz2 |
re PR c++/9393 (Anonymous namespaces and compiling the same file twice)
PR c++/9393
* doc/invoke.texi (Debugging Options): Document -frandom-seed.
* configure.in: Check for gettimeofday.
* tree.c (flag_random_seed): Define.
(default_flag_random_seed): New.
(append_random_chars): Use flag_random_seed rather than trying
to acquire randomness here.
* tree.h (default_flag_random_seed): Declare.
* toplev.c (display_help): Add -frandom-seed and -fstack-limit-*
descriptions.
(decode_f_option): Handle -frandom-seed.
(print_switch_values): Call default_flag_random_seed.
* flags.h (flag_random_seed): Declare.
* configure: Regenerate.
* config.in: Regenerate.
* config/alpha/t-crtfm: Use -frandom-seed.
From-SVN: r65500
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config.in b/gcc/config.in index f0d4c3c..1f190e2 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1,4 +1,4 @@ -/* config.in. Generated automatically from configure.in by autoheader 2.13. */ +/* config.in. Generated automatically from configure.in by autoheader. */ /* Define if using alloca.c. */ #undef C_ALLOCA @@ -150,6 +150,9 @@ /* Define if you have the getrusage function. */ #undef HAVE_GETRUSAGE +/* Define if you have the gettimeofday function. */ +#undef HAVE_GETTIMEOFDAY + /* Define if you have the getuid function. */ #undef HAVE_GETUID |