(MULTILIB_DEFAULTS): Define.

From-SVN: r10921
This commit is contained in:
Doug Evans 1995-12-31 23:46:10 +00:00
parent 126db1fa32
commit c506d97b98

View File

@ -92,4 +92,19 @@ Boston, MA 02111-1307, USA. */
#endif #endif
/* end of m68k-none.h */ /* Avoid building multilib libraries for the defaults.
t-m68kbare doesn't support -mfpa in the multilib'd libraries, so we don't
either. */
#if (TARGET_DEFAULT & 5) == 5
#if TARGET_DEFAULT & 2
#define MULTILIB_DEFAULTS { "m68020", "m68881" }
#else
#define MULTILIB_DEFAULTS { "m68020", "msoft-float" }
#endif
#else
#if TARGET_DEFAULT & 2
#define MULTILIB_DEFAULTS { "m68000", "m68881" }
#else
#define MULTILIB_DEFAULTS { "m68000", "msoft-float" }
#endif
#endif