summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-12-18 13:38:27 -0600
committerJoel Sherrill <joel@rtems.org>2017-12-19 11:06:35 -0600
commite9806ffc5bfcb661fe9964bafc248355c9c5e03e (patch)
tree881dd497e81669367438d6eabec269560382bcac
parentmvme167: Simplify bsp_specs (diff)
downloadrtems-e9806ffc5bfcb661fe9964bafc248355c9c5e03e.tar.bz2
gdbv850sim: Simplify bsp_specs
Updates #3520.
-rw-r--r--c/src/lib/libbsp/v850/gdbv850sim/bsp_specs10
-rw-r--r--c/src/lib/libbsp/v850/gdbv850sim/startup/linkcmds1
2 files changed, 2 insertions, 9 deletions
diff --git a/c/src/lib/libbsp/v850/gdbv850sim/bsp_specs b/c/src/lib/libbsp/v850/gdbv850sim/bsp_specs
index 0f4bd0adfa..13be8e3f41 100644
--- a/c/src/lib/libbsp/v850/gdbv850sim/bsp_specs
+++ b/c/src/lib/libbsp/v850/gdbv850sim/bsp_specs
@@ -1,13 +1,5 @@
-%rename endfile old_endfile
%rename startfile old_startfile
-%rename link old_link
*startfile:
%{!qrtems: %(old_startfile)} \
-%{!nostdlib: %{qrtems: start.o%s -e _start}}
-
-*link:
-%{!qrtems: %(old_link)} %{qrtems: %(old_link)}
-
-*endfile:
-%{!qrtems: %(old_endfile)} %{qrtems: %(old_link)}
+%{!nostdlib: %{qrtems: }}
diff --git a/c/src/lib/libbsp/v850/gdbv850sim/startup/linkcmds b/c/src/lib/libbsp/v850/gdbv850sim/startup/linkcmds
index fe0390dbca..42dccab5ae 100644
--- a/c/src/lib/libbsp/v850/gdbv850sim/startup/linkcmds
+++ b/c/src/lib/libbsp/v850/gdbv850sim/startup/linkcmds
@@ -9,6 +9,7 @@ _StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
/* Default linker script, for normal executables */
OUTPUT_FORMAT("elf32-v850-rh850", "elf32-v850-rh850",
"elf32-v850-rh850")
+STARTUP(start.o)
OUTPUT_ARCH(v850-rh850)
ENTRY(_start)
/* GROUP(-lc -lsim -lgcc) */