4.104.114.84.95
Last change
on this file since 1d4048b2 was
1d4048b2,
checked in by Joel Sherrill <joel.sherrill@…>, on 08/11/99 at 23:45:57
|
Patch from Tony R. Ambardar <tonya@…>:
I'm attaching a big patch for the ts_386ex BSP which adds and includes
the following:
1) Conversion to ELF format + minor code cleanups + documentation.
2) An Ada95 binding to FreeBSD sockets, based on Samuel Tardieu's
adasockets-0.1.3 package. This includes some sample applications.
3) Some Ada and C interfaces to add serial-port debugging to
programs. Comes with examples, too; the Ada one shows how
transparent adding the support can be. Note that Rosimildo sent me
the original C code.
The network stuff is not BSP specific, and could be added to your Ada
code collection. The debugging stuff is specific to the i386. Right
now, everything sits in my "tools" directory.
|
-
Property mode set to
100644
|
File size:
728 bytes
|
Line | |
---|
1 | # |
---|
2 | # Makefile for TS-1325 Utilities example |
---|
3 | # |
---|
4 | |
---|
5 | MAIN=ts1325_test |
---|
6 | |
---|
7 | # Tool paths |
---|
8 | tooldir=/usr/local/rtems |
---|
9 | rtemsdir=${tooldir}/ts_386ex |
---|
10 | |
---|
11 | # Tool names |
---|
12 | GCC=${tooldir}/bin/i386-rtemself-gcc |
---|
13 | GNATMAKE=${tooldir}/bin/i386-rtemself-gnatmake |
---|
14 | SIZE=${tooldir}/bin/i386-rtemself-size |
---|
15 | SIS=${tooldir}/bin/sis |
---|
16 | GDB=${tooldir}/bin/sis-gdb |
---|
17 | |
---|
18 | CARGS=-B${rtemsdir}/lib/ -specs bsp_specs -qrtems \ |
---|
19 | -msoft-float -mno-fp-ret-in-387 |
---|
20 | |
---|
21 | all: init.o |
---|
22 | $(GNATMAKE) -O -gnata -gnatE -gnato $(MAIN) -g \ |
---|
23 | -bargs -r \ |
---|
24 | -cargs $(CARGS) \ |
---|
25 | -largs $(CARGS) init.o |
---|
26 | $(SIZE) $(MAIN) |
---|
27 | |
---|
28 | |
---|
29 | |
---|
30 | init.o: init.c |
---|
31 | $(GCC) -O4 -g -Wall -ansi -fasm $(CARGS) -c init.c |
---|
32 | |
---|
33 | run: |
---|
34 | $(SIS) $(MAIN) |
---|
35 | |
---|
36 | gdb: |
---|
37 | $(GDB) $(MAIN) |
---|
38 | |
---|
39 | clean: |
---|
40 | rm -f b_$(MAIN).c b_$(MAIN).o *.o *.ali $(MAIN) |
---|
Note: See
TracBrowser
for help on using the repository browser.