aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-04-12 02:16:46 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-04-12 02:16:46 +0000
commita37db56bde9874b6f2113164e2a31c5bc12616c8 (patch)
tree743ad4a7d130f0376f5a69b500437fcf54a84cf5 /gcc/config
parentdf0261868594f8e8c8ec2e1a369ca7fe867a2d02 (diff)
downloadgcc-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')
-rw-r--r--gcc/config/alpha/t-crtfm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/alpha/t-crtfm b/gcc/config/alpha/t-crtfm
index 7076b51..5ca8c3f 100644
--- a/gcc/config/alpha/t-crtfm
+++ b/gcc/config/alpha/t-crtfm
@@ -1,4 +1,5 @@
EXTRA_PARTS += crtfastmath.o
crtfastmath.o: $(srcdir)/config/alpha/crtfastmath.c $(GCC_PASSES)
- $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -c -o crtfastmath.o $(srcdir)/config/alpha/crtfastmath.c
+ $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -frandom-seed=gcc-crtfastmath -c \
+ -o crtfastmath.o $(srcdir)/config/alpha/crtfastmath.c