Module Name: src
Committed By: matt
Date: Sat Jun 11 00:59:44 UTC 2011
Modified Files:
src/gnu/usr.bin/gcc4/arch/powerpc: configargs.h
Log Message:
If compiled with -msoft-float, make the compiler emit soft float code
by default.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/gnu/usr.bin/gcc4/arch/powerpc/configargs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/gnu/usr.bin/gcc4/arch/powerpc/configargs.h
diff -u src/gnu/usr.bin/gcc4/arch/powerpc/configargs.h:1.12 src/gnu/usr.bin/gcc4/arch/powerpc/configargs.h:1.13
--- src/gnu/usr.bin/gcc4/arch/powerpc/configargs.h:1.12 Sat May 8 03:00:13 2010
+++ src/gnu/usr.bin/gcc4/arch/powerpc/configargs.h Sat Jun 11 00:59:44 2011
@@ -1,11 +1,20 @@
/* This file is automatically generated. DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi Exp */
+/* Generated from: NetBSD: mknative-gcc,v 1.23 2008/02/08 18:06:48 skrll Exp */
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
/* Generated automatically. */
+#ifdef _SOFT_FLOAT
+static const char configuration_arguments[] = "/usr/src/tools/gcc/../../gnu/dist/gcc4/configure --target=powerpc--netbsd --enable-long-long --enable-threads --enable-__cxa_atexit --disable-multilib --disable-symvers --build=x86_64-unknown-netbsd5.0. --host=powerpc--netbsd --with-float=soft";
+static const char thread_model[] = "posix";
+
+static const struct {
+ const char *name, *value;
+} configure_default_options[] = { { "float", "soft" } };
+#else
static const char configuration_arguments[] = "/usr/src/tools/gcc/../../gnu/dist/gcc4/configure --target=powerpc--netbsd --enable-long-long --enable-threads --enable-__cxa_atexit --disable-multilib --disable-symvers --build=x86_64-unknown-netbsd5.0. --host=powerpc--netbsd";
static const char thread_model[] = "posix";
static const struct {
const char *name, *value;
} configure_default_options[] = { { NULL, NULL} };
+#endif