1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Moved stdlib_main.o into the regular lib.c, at least for

the 68k build. The PowerPC build may follow later, provided
  I manage to get the specs file fixed.

- Moved the check for the presence of an FPU into the
  math_init.c code.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14897 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-03-20 17:14:58 +00:00
parent 5eefcf4555
commit 5695784272
5 changed files with 33 additions and 46 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdlib_machine_test.c,v 1.5 2005-03-18 12:38:24 obarthel Exp $
* $Id: stdlib_machine_test.c,v 1.6 2005-03-20 17:14:58 obarthel Exp $
*
* :ts=4
*
@ -59,17 +59,6 @@ __machine_test(void)
}
#endif /* M68020 */
#if defined(M68881_FLOATING_POINT_SUPPORT)
{
if(FLAG_IS_CLEAR(((struct ExecBase *)SysBase)->AttnFlags,AFF_68881))
{
__show_error("This program requires a floating point processor.");
goto out;
}
}
#endif /* M68881_FLOATING_POINT_SUPPORT */
result = OK;
out: