source: rtems/c/src/lib/libbsp/powerpc/score603e/bsp_specs @ 01a9d941

4.104.114.84.95
Last change on this file since 01a9d941 was 01a9d941, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/99 at 20:39:17

Patch from Andrew Bray <andy@…>:

In your various bsp_specs files, even when ecrti.o is defined as a
startfile, ecrtn.o is not defined as an endfile. Instead it seems to
be in the library list - untidy.

  • Property mode set to 100644
File size: 641 bytes
Line 
1
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)} %{qrtems: --start-group \
13%{!qrtems_debug: -lrtemsall} %{qrtems_debug: -lrtemsall_g} \
14-lc -lgcc --end-group \
15%{!qnolinkcmds: -T linkcmds%s}}
16
17*startfile:
18%{!qrtems: %(old_startfile)} %{qrtems:  ecrti%O%s \
19%{!qrtems_debug: start.o%s} \
20%{qrtems_debug: start_g.o%s}}
21
22*endfile:
23%{!qrtems: %(old_endfile)} %{qrtems: ecrtn%O%s}
24
25*link:
26%{!qrtems: %(old_link)} %{qrtems: -Qy -dp -Bstatic -T linkcmds%s -e _start -u __vectors}
27
Note: See TracBrowser for help on using the repository browser.