Author: adrian Date: Mon Aug 24 19:09:56 2015 New Revision: 287116 URL: https://svnweb.freebsd.org/changeset/base/287116
Log: Enable hardfloat for assembly generation. gcc versions later than 4.2 started erroring out on seeing hardware floating point references when soft-float was enabled. Reviewed by: imp Modified: head/sys/mips/mips/fp.S Modified: head/sys/mips/mips/fp.S ============================================================================== --- head/sys/mips/mips/fp.S Mon Aug 24 18:57:32 2015 (r287115) +++ head/sys/mips/mips/fp.S Mon Aug 24 19:09:56 2015 (r287116) @@ -76,6 +76,8 @@ #define COND_LESS 0x4 #define COND_SIGNAL 0x8 +.set hardfloat + /*---------------------------------------------------------------------------- * * MipsEmulateFP -- _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
