search for: ld_pie

Displaying 6 results from an estimated 6 matches for "ld_pie".

Did you mean: dpie
2016 Feb 02
4
binutils (objcopy?) >= 2.26 breaks syslinux (bios) build
On 30.01.2016 16:59, poma wrote: > ... > > https://sourceware.org/bugzilla/show_bug.cgi?id=19538 > > Mister Anvin, care to share what's the status of the "ld?" problemo, is anyone working on it? It would be maravilloso if syslinux can continue to build and test with latest and greatest.
2016 Feb 09
2
binutils (objcopy?) >= 2.26 breaks syslinux (bios) build
...) and parts that aren't (and also needs to export at least some > of its symbols.) > > It might be that we need -Bdynamic rather than -pie, and perhaps some > modification to the relocation code, but it could also be that ld needs > a whack to the head. > > -hpa > s/LD_PIE = -pie/LD_PIE = -Bdynamic/ Failed to load ldlinux.c32 Boot failed: press a key to retry... _
2016 Feb 03
3
binutils (objcopy?) >= 2.26 breaks syslinux (bios) build
On February 3, 2016 7:17:37 AM PST, Celelibi <celelibi at gmail.com> wrote: >2016-02-02 18:50 UTC+01:00, poma via Syslinux <syslinux at zytor.com>: >> On 30.01.2016 16:59, poma wrote: >>> ... >>> >>> https://sourceware.org/bugzilla/show_bug.cgi?id=19538 >>> >>> >> >> Mister Anvin, >> care to share what's the
2015 Oct 05
0
[PATCH 4/4] core: Move linker script in arch-agnostic dir
...file @@ -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 $@ $< \ diff --git a/core/i386/syslinux.ld b/core/syslinux.ld similarity index 100% rename from core/i386/syslinux.ld rename to core/syslinux.ld -- 2.5.3
2017 Feb 02
0
ldlinux.elf: Not enough room for program headers
...r build failure is to add --no-dynamic-linker to the linker command lines." +--- a/core/Makefile 2017-01-28 18:33:22.750959519 +0000 ++++ b/core/Makefile 2017-01-28 18:27:47.387981830 +0000 +@@ -165,7 +165,7 @@ + + %.elf: %.o $(LIBDEP) $(LDSCRIPT) $(AUXLIBS) + $(LD) $(LDFLAGS) -Bsymbolic $(LD_PIE) -E --hash-style=gnu -T $(LDSCRIPT) -M -o $@ $< \ +- --start-group $(LIBS) $(subst $(*F).elf,lib$(*F).a,$@) --end-group \ ++ --start-group $(LIBS) $(subst $(*F).elf,lib$(*F).a,$@) --end-group --no-dynamic-linker \ + > $(@:.elf=.map) + $(OBJDUMP) -h $@ > $(@:.elf=.sec) + $(PERL) $(...
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