brintos

brintos / llvm-project-archived public Read only

0
0
Text · 344 B · 40dc816 Raw
13 lines · plain
1# REQUIRES: x862 3# Test that we don't error on undefined versions when static linking.4# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o5# RUN: ld.lld %t.o -o %t6# RUN: echo "DEFINED { global: *; };" > %t.map7# RUN: ld.lld %t.o --version-script %t.map -o %t8 9.global _start10.global bar11.symver _start, bar@@UNDEFINED12_start:13