2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>

* bsp_specs, tools/runtest.in: Move -e start from *link to *startfile
	to avoid warning for undefined entry symbol when linking relocatables
	with binutils 2.19.
This commit is contained in:
Joel Sherrill
2008-12-04 20:32:10 +00:00
parent 0a65ad6bd3
commit 087dd259c3
3 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* bsp_specs, tools/runtest.in: Move -e start from *link to *startfile
to avoid warning for undefined entry symbol when linking relocatables
with binutils 2.19.
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com> 2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* README: New file. * README: New file.

View File

@@ -4,12 +4,12 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} \ %{!qrtems: %(old_startfile)} \
%{!nostdlib: %{qrtems: start.o%s crtbegin.o%s}} %{!nostdlib: %{qrtems: start.o%s crtbegin.o%s -e _start}}
*endfile: *endfile:
%{!qrtems: %(old_endfile)} \ %{!qrtems: %(old_endfile)} \
%{!nostdlib: %{qrtems: crtend.o%s}} %{!nostdlib: %{qrtems: crtend.o%s}}
*link: *link:
%(old_link) %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e _start} %(old_link) %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N}

View File

@@ -164,7 +164,8 @@ do
echo "Starting $tname at $date" echo "Starting $tname at $date"
# Spin off the simulator in the background # Spin off the simulator in the background
@target_alias@-run ${tfile} >${logfile}.tmp 2>&1 & # @target_alias@-run ${tfile} >${logfile}.tmp 2>&1 &
/home/joel/work-gnat/svn/m32c-install/bin/m32c-elf-run ${tfile} >${logfile}.tmp 2>&1 &
sim_pid=$! sim_pid=$!
# Make sure it won't run forever... # Make sure it won't run forever...