source: rtems/c/src/lib/libbsp/i386/ts_386ex/bsp_specs @ 4e36a2f

4.104.114.84.95
Last change on this file since 4e36a2f 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: 633 bytes
Line 
1%rename cpp old_cpp
2%rename lib old_lib
3%rename endfile old_endfile
4%rename startfile old_startfile
5%rename link old_link
6
7*cpp:
8%(old_cpp) %{qrtems: -D__embedded__} -Asystem(embedded)
9
10*lib:
11%{!qrtems: %(old_lib)} %{qrtems: --start-group \
12%{!qrtems_debug: -lrtemsall} %{qrtems_debug: -lrtemsall_g} \
13-lc -lgcc --end-group \
14%{!qnolinkcmds: -T linkcmds%s}}
15
16*startfile:
17%{!qrtems: %(old_startfile)} %{qrtems: \
18%{!qrtems_debug: start.o%s} \
19%{qrtems_debug: start_g.o%s} crti.o%s crtbegin.o%s}
20
21*link:
22%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e _init_i386ex}
23
24*endfile:
25%{!qrtems: %(old_endfile)} %{qrtems: crtend.o%s crtn.o%s}
Note: See TracBrowser for help on using the repository browser.