LLD test ELF/copy-relocation-zero-nonabs-addr.s fails when the build
path is too long. This is because the DT_NEEDED entry for the shared
library containing object foo encodes the full path to the library. When
the path gets too big, it pushes the beginning of .bss.rel.ro beyond the
expected address of the test and thus the section gets aligned to the
next suitable address.
This commit sets the soname to avoid the build path ending up in the
.dynstr section and thus push .bss.rel.ro further away.
Add --soname=t (or any arbitrary string)