From 0fd617e26610ce0e5bb48de57440a66133771aec Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 18 Dec 2017 13:59:58 -0600 Subject: lm32_evr: Simplify bsp_specs Updates #3520. --- c/src/lib/libbsp/lm32/lm32_evr/bsp_specs | 6 +----- c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds | 3 ++- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/c/src/lib/libbsp/lm32/lm32_evr/bsp_specs b/c/src/lib/libbsp/lm32/lm32_evr/bsp_specs index 5154de8c55..87638cc027 100644 --- a/c/src/lib/libbsp/lm32/lm32_evr/bsp_specs +++ b/c/src/lib/libbsp/lm32/lm32_evr/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/lm32/lm32_evr/startup/linkcmds b/c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds index aea7cbf329..63747f33dc 100644 --- a/c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds +++ b/c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds @@ -1,7 +1,8 @@ OUTPUT_FORMAT("elf32-lm32", "elf32-lm32", "elf32-lm32") OUTPUT_ARCH(lm32) -ENTRY(_start) +ENTRY(start) +STARTUP(start.o) /* Do we need any of these for elf? __DYNAMIC = 0; */ -- cgit v1.2.3