https://sourceware.org/bugzilla/show_bug.cgi?id=28264
--- Comment #3 from H.J. Lu <hjl.tools at gmail dot com> ---
[hjl@gnu-cfl-2 pr28264]$ cat foo.v
libefivar.so.0 {
global:
_efi_set_variable;
local: *;
};
[hjl@gnu-cfl-2 pr28264]$ cat foo.c
void
__attribute__ ((symver ("[email protected]")))
_efi_set_variable()
{
}
[hjl@gnu-cfl-2 pr28264]$ make
gcc -B./ -flto -fPIC -c -o foo.o foo.c
gcc -B./ -shared -o libfoo.so -Wl,--version-script=foo.v foo.o
collect2: fatal error: ld terminated with signal 11 [Segmentation fault], core
dumped
compilation terminated.
make: *** [Makefile:16: libfoo.so] Error 1
[hjl@gnu-cfl-2 pr28264]$
--
You are receiving this mail because:
You are on the CC list for the bug.