source: rtems/c/src/lib/libbsp/a29k/portsw/bsp_specs @ df49c60

4.104.114.84.95
Last change on this file since df49c60 was 21677c0e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/26/00 at 14:20:08

Patch rtems-rc-20000118-0.diff from Ralf Corsepius <corsepiu@…>
that converts the a29k to automake.

This patch contains

  • An initial merger of the libcpu/a29k stuff you sent yesterday. AFAIS, most code inside them seems to be empty stubs. One file even contains a function called mips_* which might indicate that this part might contain mips code or the code the initial porter used as template for porting. Unfortunately, I don't know anything about the a29k so I can't comment on the details.
  • A dummy bsp_specs to libbsp/29k/portsw
  • An update to the automake files related to the a29k.

Note:

  • This patch is completely untested, because I don't have a toolchain for it.
  • The files in libcpu/a29k include bsp.h => The libbsp vs. libcpu-issue hits again.
  • Property mode set to 100644
File size: 564 bytes
Line 
1# This is an untested dummy
2%rename cpp old_cpp
3%rename lib old_lib
4%rename endfile old_endfile
5%rename startfile old_startfile
6%rename link old_link
7
8*cpp:
9%(old_cpp) %{qrtems: -D__embedded__} -Asystem(embedded)
10
11*lib:
12%{!qrtems: %(old_lib)} \
13%{qrtems: --start-group %{!qrtems_debug: -lrtemsall } %{qrtems_debug: -lrtemsall_g} \
14 -lc -lgcc --end-group \
15 %{!qnolinkcmds: -T linkcmds%s}}
16
17*startfile:
18%{!qrtems: %(old_startfile)} \
19%{qrtems: %{qrtems_debug: crt0_g.o%s} %{!qrtems_debug: crt0.o%s}}
20
21*link:
22%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e _start}
23
Note: See TracBrowser for help on using the repository browser.