Skip to content
Snippets Groups Projects
Commit a811492e authored by Alexey Brodkin's avatar Alexey Brodkin
Browse files

arc: fix separate compilation of start.o


While testing "arc: make sure _start is in the beginning of .text
section" I haven't done proper clean-up of built binaries and so missed
another tiny bit that lead to the following error:
 --->8---
    LD      u-boot
 arc-linux-ld.bfd: cannot find arch/arc/lib/start.o
 Makefile:1107: recipe for target 'u-boot' failed
 make: *** [u-boot] Error 1
 --->8---

Fix is trivial: put "start.o" in "extra-y".

Signed-off-by: default avatarAlexey Brodkin <abrodkin@synopsys.com>
parent 89576072
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
# SPDX-License-Identifier: GPL-2.0+ # SPDX-License-Identifier: GPL-2.0+
# #
extra-y = start.o
head-y := start.o head-y := start.o
obj-y += cache.o obj-y += cache.o
obj-y += cpu.o obj-y += cpu.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment