summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-08-16binutils-2.24.51: further refactor pemdso.h, pe.em, and pep.em.midipix1-44/+47
2019-08-15binutils-2.24.51: refactored and separated mdso and midipix target bits.midipix1-9/+10
2019-08-15binutils-2.24.51: midipix targets: enable the perk and mdso library interfaces.midipix1-13/+50
2019-06-30binutils-2.24.51: pe_dll_generate_dsolib(): support symbol vector as input.midipix1-9/+19
2019-06-05gdb-7.12: updated build notes.midipix1-2/+8
2019-06-04gdb-7.12: introduced amd64-winnt-tdep.c.midipix1-31/+34
2019-06-04gdb-7.12: introduced i386-winnt-tdep.c.midipix1-4/+58
2019-06-04gdb-7.12: added _initialize_amd64_winnt_tdep().midipix1-0/+48
2019-06-04gdb-7.12: updated gdb_osabi_names[].midipix1-0/+11
2019-06-04gdb-7.12.midipix.patch: initial commit (work in progress, no target hooks).midipix1-0/+246
2019-02-09binutils-2.24.51: support .got entries created in .dsosyms.midipix1-6/+7
2019-01-08binutils-2.24.51: properly handle weak symbols that are also hidden.midipix1-17/+33
2018-11-21Remove python-2.7.midipix.patch & python-2.7.specs, which are no longer needed.midipix2-194/+0
2018-01-29python-2.7.specs: update to reflect recent (mdso-related) toolchain devel.midipix1-1/+1
2017-10-26libelf-0.8.13: updated patch (create an mdso-based import library).midipix1-1/+1
2017-10-25binutils-2.24.51: added mdso integration support.midipix1-23/+326
2017-01-20libffi-3.2.1: updated patch.midipix1-0/+21
2017-01-20grep-2.22: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20updated README file.midipix1-9/+17
2017-01-20tar-1.28: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20sed-4.2.2: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20patch-2.7: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20make-3.81: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20gawk-4.1.3: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20findutils-4.5.14: removed patch (non-toolchain patches are now in ↵midipix1-39/+0
midipix_build).
2017-01-20diffutils-3.3: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20coreutils-8.23: removed patch (non-toolchain patches are now in midipix_build).midipix1-81/+0
2017-01-20bash-4.3: removed patch (non-toolchain patches are now in midipix_build).midipix1-12/+0
2017-01-20config.cache: updated version (kept in sync with midipix_build).midipix1-0/+26
2017-01-20libffi-3.2.1: updated patch.midipix1-49/+0
2017-01-20libelf-0.8.13: updated patch.midipix1-22/+0
2017-01-20mpfr-3.1.2: removed patch, as it is no longer needed.midipix1-40/+0
2017-01-20mpc-1.0.1: removed patch, as it is no longer needed.midipix1-43/+0
2017-01-20gmp-5.1.3: updated patch.midipix1-28/+0
2017-01-20gmp-5.1.1: updated patch.midipix1-29/+0
2017-01-20removed libtool.midipix, as it is no longer needed (use slibtool instead).midipix1-9342/+0
2017-01-20binutils-2.24.51: updated patch.midipix1-12/+0
2017-01-20config.sub: added a cached, modern copy, which includes midipix target info.midipix1-0/+1823
2016-11-23binutils-2.24.51: updated patch.midipix1-0/+11
+ unset NATIVE_LIB_DIRS; leave handling of library search path to driver.
2016-11-23binutils-2.24.51: updated patch.midipix1-6/+6
2016-06-05update readme file to reflect recent switch to slibtool.midipix1-3/+9
2016-05-18binutils-2.24.51: updated patch.midipix1-0/+14
+ PE/COFF: properly handle references to addresses of weak data symbols. + a special thanks to Rich Felker, primary author of musl libc, for invaluable help and direction. + while commit 8dfab477 did resolve binutils bug 16858, it did not address the issue of references to weak data symbols. Before this patch, assembly of the the following minimal example would result in p holding offset of dummy from the beginning of the .data section which is always wrong (weak data symbols should be treated the same way as external symbols) and never needed, namely since the recorded dependency on 'a' suffices for the linker even in cases where the strong symbol 'a' is not present. + relevant code path: md_apply_fix(): for PE targets, and given a relocation based on a weak symbol that is *not* a function, store the inverse of the symbol value, retrieved via S_GET_VALUE (fixP->fx_addsy); bfd_install_relocation(): here we relocate based on the weak symbol's value: relocation = symbol->value; this value is later added to the value that was stored to memory in the previous step: DOIT(x); the result is zero plus any offset that is symbol-relative (array member, etc.) == TEST CASE == .data .globl top .balign 8 top: .quad 0x12345678 .balign 4 dummy: .long 7 .globl p .balign 8 p: .quad a .weak a .set a,dummy == VERIFICATION == a.o: file format pe-x86-64 Disassembly of section .data: 0000000000000000 <top>: 0: 78 56 js 58 <p+0x48> 2: 34 12 xor $0x12,%al 4: 00 00 add %al,(%rax) ... 0000000000000008 <.weak.a.top>: 8: 07 (bad) 9: 00 00 add %al,(%rax) b: 00 00 add %al,(%rax) d: 00 00 add %al,(%rax) ... 0000000000000010 <p>: ... 10: R_X86_64_64 a signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2016-03-01libtool.midipix: remove the install prefix dir test (invalid, not needed).midipix1-9/+0
2016-02-11patch-2.7: remove gnulib cached variables (now provided in config.cache).midipix1-138/+0
2016-02-11findutils-4.5.14: remove gnulib cached variables (now provided in config.cache).midipix1-136/+0
2016-02-11diffutils-3.3: remove gnulib cached variables (now provided in config.cache).midipix1-138/+0
2016-02-11coreutils-8.23: remove gnulib cached variables (now provided in config.cache).midipix1-135/+0
2016-02-11config.cache: updated comprehensive patch.midipix1-5/+129
2016-02-11tar-1.28: initial patch.midipix1-0/+12
2016-02-11config.cache: updated patch (satisfy gnu tar).midipix1-0/+1