Lines Matching refs:script
3 # RUN: echo "VERSION_1.0 { global: bar; };" > %t.script
5 # RUN: ld.lld --version-script %t.script -shared %t.o -o /dev/null --fatal-warnings
6 # RUN: ld.lld --version-script %t.script -shared --undefined-version %t.o -o %t.so
7 # RUN: not ld.lld --version-script %t.script -shared --no-undefined-version \
9 # ERR1: version script assignment of 'VERSION_1.0' to symbol 'bar' failed: symbol not defined
11 # RUN: echo "VERSION_1.0 { global: und; };" > %t2.script
12 # RUN: not ld.lld --version-script %t2.script -shared --no-undefined-version \
14 # ERR2: version script assignment of 'VERSION_1.0' to symbol 'und' failed: symbol not defined
16 # RUN: echo "VERSION_1.0 { local: und; };" > %t3.script
17 # RUN: not ld.lld --version-script %t3.script -shared --no-undefined-version \
19 # ERR3: version script assignment of 'local' to symbol 'und' failed: symbol not defined