Lines Matching refs:script
7 # RUN: echo "SECTIONS {.text : {*(.text.*)} text_end = .;}" > %t.script
8 # RUN: ld.lld -o %t1 --script %t.script %t
19 # RUN: echo "SECTIONS { PROVIDE_HIDDEN(newsym = 1);}" > %t.script
20 # RUN: ld.lld -o %t1 --script %t.script %t
25 # RUN: echo "SECTIONS { PROVIDE(somesym = 1);}" > %t.script
26 # RUN: ld.lld -o %t1 --script %t.script %t
32 # RUN: echo "SECTIONS { PROVIDE_HIDDEN(somesym = 1);}" > %t.script
33 # RUN: ld.lld -o %t1 --script %t.script %t
38 # RUN: echo "SECTIONS { HIDDEN(newsym = 1);}" > %t.script
39 # RUN: ld.lld -o %t1 --script %t.script %t
49 # RUN: echo "PROVIDE_HIDDEN(newsym = 1);" > %t.script
50 # RUN: ld.lld -o %t1 --script %t.script %t
55 # RUN: echo "PROVIDE(somesym = 1);" > %t.script
56 # RUN: ld.lld -o %t1 --script %t.script %t
62 # RUN: echo "PROVIDE_HIDDEN(somesym = 1);" > %t.script
63 # RUN: ld.lld -o %t1 --script %t.script %t
69 # RUN: echo "foo = 0x100; SECTIONS { bar = foo; } baz = bar;" > %t.script
70 # RUN: ld.lld -o %t1 --script %t.script %t