source: rtems/c/src/lib/libbsp/m68k/mvme147s/bsp_specs @ e4c07444

4.104.114.84.95
Last change on this file since e4c07444 was b2b4835, checked in by Joel Sherrill <joel.sherrill@…>, on 01/12/00 at 16:38:57

Eric Norum <eric@…> submitted linker script and bsp_specs
for the gen68360 that let it work with ELF and C++ exceptions. This
was used as the basis for changes to EVERY m68k bsp_specs and linkcmds.
Before this modification is over, the layout of the starting stack,
heap, and workspace will likely be modified for every m68k BSP. Then
they will all be very similar.

  • Property mode set to 100644
File size: 629 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} \
20crti.o%s crtbegin.o%s}
21
22*link:
23%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}
24
25*endfile:
26%{!qrtems: %(old_endfile)} %{qrtems: crtend.o%s crtn.o%s}
27
Note: See TracBrowser for help on using the repository browser.