mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
Its PR34712, GNU linkers recently changed default values to "both" of "sysv". Patch do the same for all targets except MIPS, where .gnu.hash section is not yet supported. Code suggested by Rui Ueyama. Differential revision: https://reviews.llvm.org/D38407 llvm-svn: 315051
29 lines
626 B
ArmAsm
29 lines
626 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
|
|
|
# RUN: echo "SECTIONS { \
|
|
# RUN: . = SIZEOF_HEADERS; \
|
|
# RUN: .text : { *(.text) } \
|
|
# RUN: .foo : {foo1 = .; *(.foo.*) foo2 = .; *(.bar) foo3 = .;} \
|
|
# RUN: }" > %t.script
|
|
# RUN: ld.lld --hash-style=sysv -o %t1 --script %t.script %t -shared
|
|
# RUN: llvm-readobj -t %t1 | FileCheck %s
|
|
|
|
# CHECK: Name: foo1
|
|
# CHECK-NEXT: Value: 0x228
|
|
|
|
# CHECK: Name: foo2
|
|
# CHECK-NEXT: Value: 0x230
|
|
|
|
# CHECK: Name: foo3
|
|
# CHECK-NEXT: Value: 0x234
|
|
|
|
.section .foo.1,"a"
|
|
.long 1
|
|
|
|
.section .foo.2,"aw"
|
|
.long 2
|
|
|
|
.section .bar,"aw"
|
|
.long 3
|