From 6510e1f335fc5131ae7a970c1439a7bc1e53626d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 18 Dec 2017 17:52:22 -0600 Subject: gensh1: Simplify bsp_specs Updates #3250. --- c/src/lib/libbsp/sh/gensh1/bsp_specs | 6 +----- c/src/lib/libbsp/sh/gensh1/startup/linkcmds | 1 + 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/c/src/lib/libbsp/sh/gensh1/bsp_specs b/c/src/lib/libbsp/sh/gensh1/bsp_specs index 975c0b2b51..87638cc027 100644 --- a/c/src/lib/libbsp/sh/gensh1/bsp_specs +++ b/c/src/lib/libbsp/sh/gensh1/bsp_specs @@ -1,13 +1,9 @@ %rename endfile old_endfile %rename startfile old_startfile -%rename link old_link *startfile: %{!qrtems: %(old_startfile)} \ -%{!nostdlib: %{qrtems: start.o%s crti.o%s crtbegin.o%s -e _start}} - -*link: -%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N} +%{!nostdlib: %{qrtems: crti.o%s crtbegin.o%s}} *endfile: %{!qrtems: %(old_endfile)} %{qrtems: crtend.o%s crtn.o%s} diff --git a/c/src/lib/libbsp/sh/gensh1/startup/linkcmds b/c/src/lib/libbsp/sh/gensh1/startup/linkcmds index d5945b37de..d268d4cfc7 100644 --- a/c/src/lib/libbsp/sh/gensh1/startup/linkcmds +++ b/c/src/lib/libbsp/sh/gensh1/startup/linkcmds @@ -28,6 +28,7 @@ OUTPUT_ARCH(sh) ENTRY(_start) +STARTUP(start.o) _RamBase = DEFINED(_RamBase) ? _RamBase : 0x0a040000; _RamSize = DEFINED(_RamSize) ? _RamSize : 512K; -- cgit v1.2.3