You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
microwatt/litedram/gen-src
Boris Shingarov 49f1389a21 Fix ld error in elf maketarget
The sdram_init ELF fails to link:

powerpc64le-linux-gnu-ld -static -nostdlib -T sdram_init.lds \
    --gc-sections -o sdram_init.elf head.o main.o sdram.o console.o \
    libc.o sdram_init.lds
powerpc64le-linux-gnu-ld: error: linker script file 'sdram_init.lds'
    appears multiple times
make: *** [Makefile:70: sdram_init.elf] Error 1

This is because sdram_init.lds is one of the prerequisites, and thus is
contained in $^.  However, it is also explicitly specified as part of
LDFLAGS, as the argument to -T.

Signed-off-by: Boris Shingarov <shingarov@labware.com>
4 years ago
..
sdram_init Fix ld error in elf maketarget 4 years ago
arty.yml litedram: Remove old "VexRiscV" based initializations 4 years ago
dram-init-mem.vhdl litedram: Fix DRAM init mem using too many address bits 4 years ago
generate.py litedram: Remove old "VexRiscV" based initializations 4 years ago
nexys-video.yml litedram: Remove old "VexRiscV" based initializations 4 years ago
no-init-mem.vhdl litedram: Split the init memory from the main wrapper 4 years ago
sim.yml litedram: Remove old "VexRiscV" based initializations 4 years ago