search for: genhash

Displaying 3 results from an estimated 3 matches for "genhash".

Did you mean: gen_hash
2009 Jul 11
1
dynamic branch build failure
# git checkout -f origin/dynamic HEAD is now at 0d61211... Add __dynsym_len and __dynstr_len # git describe syslinux-3.82-564-g0d61211 # make ... perl genhash.pl < keywords > kwdhash.gen make[1]: *** No rule to make target `ldlinux.bin', needed by `ldlinux.bss'. Stop. make[1]: Leaving directory `syslinux/core' make: *** [all] Error 2 - Sebastian
2015 Oct 05
0
[PATCH 4/4] core: Move linker script in arch-agnostic dir
...| 2 +- core/{i386 => }/syslinux.ld | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename core/{i386 => }/syslinux.ld (100%) diff --git a/core/Makefile b/core/Makefile index 26302fd..6fb6377 100644 --- a/core/Makefile +++ b/core/Makefile @@ -161,7 +161,7 @@ kwdhash.gen: keywords genhash.pl AUXLIBS = libisolinux.a libisolinux-debug.a libldlinux.a \ libpxelinux.a liblpxelinux.a -LDSCRIPT = $(SRC)/$(ARCH)/syslinux.ld +LDSCRIPT = $(SRC)/syslinux.ld %.elf: %.o $(LIBDEP) $(LDSCRIPT) $(AUXLIBS) $(LD) $(LDFLAGS) -Bsymbolic $(LD_PIE) -E --hash-style=gnu -T $(LDSCRIPT) -M -o $@ $&...
2015 Oct 05
7
[PATCH 0/4] Improve linker scripts
From: Sylvain Gault <sylvain.gault at gmail.com> These patches basically remove unused linker scripts and port a change that was made to an unused script. Those are to be applied on top of the gcc 5 bug fixes as they would conflict otherwise. Sylvain Gault (4): diag/mbr: fix dependency to linker script Remove unused linker scripts core: Make symbols defined in linker script HIDDEN