2010-12-16 Joel Sherrill <joel.sherrill@oarcorp.com>

* math/Makefile.am, math/init.c: Init task has to be floating point and
	there is no point in using optional manager stubs since libio needs
	semaphores.
This commit is contained in:
Joel Sherrill
2010-12-16 21:33:31 +00:00
parent 1ae36f59b9
commit 9f8115f90a
3 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2010-12-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* math/Makefile.am, math/init.c: Init task has to be floating point and
there is no point in using optional manager stubs since libio needs
semaphores.
2010-12-01 Ralf Corsépius <ralf.corsepius@rtems.org> 2010-12-01 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Check for complex.h. * configure.ac: Check for complex.h.

View File

@@ -34,7 +34,7 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am include $(top_srcdir)/../automake/leaf.am
math_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel) -lm math_LDADD = -lm
LINK_OBJS = $(math_OBJECTS) $(math_LDADD) LINK_OBJS = $(math_OBJECTS) $(math_LDADD)
LINK_LIBS = $(math_LDLIBS) LINK_LIBS = $(math_LDLIBS)

View File

@@ -55,6 +55,8 @@ int main( void )
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1 #define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM #define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE #define CONFIGURE_RTEMS_INIT_TASKS_TABLE