projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52b51e1
)
Fix ordering of libraries
author
Mateusz Holenko
<mholenko@antmicro.com>
Thu, 25 Jun 2020 10:21:36 +0000
(12:21 +0200)
committer
Mateusz Holenko
<mholenko@antmicro.com>
Thu, 25 Jun 2020 10:21:36 +0000
(12:21 +0200)
Since libcompiler_rt provides functions for other
libraries (e.g., __muldiv3), it must be listed
at the end.
litex/soc/software/bios/Makefile
patch
|
blob
|
history
diff --git
a/litex/soc/software/bios/Makefile
b/litex/soc/software/bios/Makefile
index 778757da72905f7337c2a0ee79bed6d650e6934b..35a07f5cf45130b8815b9197e86a57c078052302 100755
(executable)
--- a/
litex/soc/software/bios/Makefile
+++ b/
litex/soc/software/bios/Makefile
@@
-75,7
+75,7
@@
bios.elf: $(BIOS_DIRECTORY)/linker.ld $(OBJECTS)
-L../liblitespi \
-L../liblitesdcard \
$(BP_LIBS) \
- -l
compiler_rt -llitedram -lliteeth -llitespi -llitesdcard -lbase-nofloa
t \
+ -l
litedram -lliteeth -llitespi -llitesdcard -lbase-nofloat -lcompiler_r
t \
$(BP_FLAGS)
ifneq ($(OS),Windows_NT)