diff options
author | Kostis Sagonas <[email protected]> | 2017-03-30 00:04:27 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2017-03-30 00:04:27 +0200 |
commit | 0c2fea970cf8b24d103bcba66bf858eea5663f74 (patch) | |
tree | 786c42a5ee5781e4157b25bcea76b874fd7c0679 /erts/emulator/hipe/elf64ppc.x | |
parent | 024e438101c010f17e3a374117c3b376d48483f3 (diff) | |
download | otp-0c2fea970cf8b24d103bcba66bf858eea5663f74.tar.gz otp-0c2fea970cf8b24d103bcba66bf858eea5663f74.tar.bz2 otp-0c2fea970cf8b24d103bcba66bf858eea5663f74.zip |
Add a missing 0 to an address, which was suspiciously missing
Diffstat (limited to 'erts/emulator/hipe/elf64ppc.x')
-rw-r--r-- | erts/emulator/hipe/elf64ppc.x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/elf64ppc.x b/erts/emulator/hipe/elf64ppc.x index 46d2632970..bb14a6cd29 100644 --- a/erts/emulator/hipe/elf64ppc.x +++ b/erts/emulator/hipe/elf64ppc.x @@ -28,7 +28,7 @@ SEARCH_DIR("/mnt/archive/cross-ppc64/ppc64-unknown-linux/lib"); SECTIONS { /* Read-only sections, merged into text segment: */ - PROVIDE (__executable_start = 0x0180000); . = 0x01800000 + SIZEOF_HEADERS; + PROVIDE (__executable_start = 0x01800000); . = 0x01800000 + SIZEOF_HEADERS; .interp : { *(.interp) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } |