diff options
author | imp <imp@FreeBSD.org> | 2010-01-08 23:37:30 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-01-08 23:37:30 +0000 |
commit | a8210f6c6c9ae7bb8d577e0b51224ffb55980713 (patch) | |
tree | 659b55b9dd13d40fd9908e57284a2014ccb36494 /contrib/gcc | |
parent | d5b12d86851032bf56c2f7e0a02e4c4a67fc3054 (diff) | |
download | FreeBSD-src-a8210f6c6c9ae7bb8d577e0b51224ffb55980713.zip FreeBSD-src-a8210f6c6c9ae7bb8d577e0b51224ffb55980713.tar.gz |
Merge r194519 from projects/mips to head by hand:
r194519 | gonzo | 2009-06-19 17:28:26 -0600 (Fri, 19 Jun 2009) | 3 lines
- set -mabicalls and -msoft-float as a default in order to
simplify building ports
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/config/mips/freebsd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/gcc/config/mips/freebsd.h b/contrib/gcc/config/mips/freebsd.h index f4b1cf5..b53dae6 100644 --- a/contrib/gcc/config/mips/freebsd.h +++ b/contrib/gcc/config/mips/freebsd.h @@ -97,6 +97,9 @@ Boston, MA 02110-1301, USA. */ Needs to agree with <machine/ansi.h>. GCC defaults come from c-decl.c, c-common.c, and config/<arch>/<arch>.h. */ +#undef TARGET_DEFAULT +#define TARGET_DEFAULT (MASK_ABICALLS | MASK_SOFT_FLOAT) + #if TARGET_ENDIAN_DEFAULT != 0 #define TARGET_VERSION fprintf (stderr, " (FreeBSD/mips)"); #else |