Changeset 0f9e7f96 in rtems
- Timestamp:
- 01/03/03 22:51:40 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7ab11c0
- Parents:
- e1fe652
- Location:
- c/src/ada-tests
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/ChangeLog
re1fe652 r0f9e7f96 1 2003-01-03 Joel Sherrill <joel@OARcorp.com> 2 3 * ada.am, samples/ticker/Makefile.am, sptests/sp01/Makefile.am, 4 sptests/sp01/config.h, sptests/sp04/Makefile.am, 5 sptests/sp04/config.h, support/init.c: Modified build rules slightly 6 so gnat_main is used as the Ada main entry point. Modified 7 sp01 and sp04 Makefile.am's to compile and link with init.o. 8 The test config.h's specified the Ada application requirements -- not 9 the Classic API ones. 10 1 11 2003-01-03 Joel Sherrill <joel@OARcorp.com> 2 12 -
c/src/ada-tests/ada.am
re1fe652 r0f9e7f96 8 8 9 9 GNATCOMPILE = $(GNATMAKE) \ 10 -bargs -Mgnat_main \ 10 11 -margs $(AM_ADAFLAGS) $(ADAFLAGS) \ 11 12 -cargs $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \ 12 13 -largs $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \ 13 $(AM_LDFLAGS) $(LDFLAGS) 14 $(AM_LDFLAGS) $(LDFLAGS) init.o 14 15 15 16 CLEANFILES = *.ali *.o b~*.adb b~*.ads 16 17 18 %.o: %.c 19 $(CC) $(CFLAGS) -I@srcdir@ -c $< -o $@ -
c/src/ada-tests/samples/ticker/Makefile.am
re1fe652 r0f9e7f96 1 1 ## $Id$ 2 3 VPATH = @srcdir@:@srcdir@/../../support 2 4 3 5 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg … … 6 8 include $(top_srcdir)/ada.am 7 9 8 ticker$(EXEEXT): ticker.adb 10 ticker$(EXEEXT): ticker.adb init.o 9 11 $(GNATCOMPILE) -margs -a $< -o $@ 10 12 -
c/src/ada-tests/sptests/sp01/Makefile.am
re1fe652 r0f9e7f96 1 1 ## $Id$ 2 3 VPATH = @srcdir@:@srcdir@/../../support 2 4 3 5 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg … … 10 12 sp01_SOURCES = sp01.adb config.h sptest.adb sptest.ads 11 13 12 sp01$(EXEEXT): sp01.adb 14 sp01$(EXEEXT): sp01.adb init.o 13 15 $(GNATCOMPILE) -margs -a $< -o $@ 14 16 -
c/src/ada-tests/sptests/sp01/config.h
re1fe652 r0f9e7f96 29 29 #define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 10 30 30 31 #define CONFIGURE_MAXIMUM_TASKS 4 32 31 33 #include <confdefs.h> 32 34 -
c/src/ada-tests/sptests/sp04/Makefile.am
re1fe652 r0f9e7f96 1 1 ## $Id$ 2 3 VPATH = @srcdir@:@srcdir@/../../support 2 4 3 5 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg … … 13 15 sp04_SOURCES = sp04.adb config.h sptest.adb sptest.ads 14 16 15 sp04$(EXEEXT): sp04.adb 17 sp04$(EXEEXT): sp04.adb init.o 16 18 $(GNATCOMPILE) -margs -a $< -o $@ 17 19 -
c/src/ada-tests/sptests/sp04/config.h
re1fe652 r0f9e7f96 32 32 #define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 10 33 33 34 #define CONFIGURE_MAXIMUM_TASKS 4 35 34 36 #include <confdefs.h> 35 37 -
c/src/ada-tests/support/init.c
re1fe652 r0f9e7f96 43 43 44 44 #define CONFIGURE_INIT 45 #define CONFIGURE_GNAT_RTEMS 46 #define CONFIGURE_MEMORY_OVERHEAD (256) 47 45 48 #include <config.h>
Note: See TracChangeset
for help on using the changeset viewer.