Merge pull request #531 from gsomlo/gls-bios-linker

software/bios: fix link order to avoid undefined symbol errors
This commit is contained in:
enjoy-digital 2020-05-20 08:08:37 +02:00 committed by GitHub
commit 939f546a05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ bios.elf: $(BIOS_DIRECTORY)/linker.ld $(OBJECTS)
-L../libliteeth \ -L../libliteeth \
-L../liblitesdcard \ -L../liblitesdcard \
$(BP_LIBS) \ $(BP_LIBS) \
-lcompiler_rt -lbase-nofloat -llitedram -lliteeth -llitesdcard \ -lcompiler_rt -llitedram -lliteeth -llitesdcard -lbase-nofloat \
$(BP_FLAGS) $(BP_FLAGS)
ifneq ($(OS),Windows_NT) ifneq ($(OS),Windows_NT)