This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
target/5815: ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/i386/reloc.c:220
- From: wanderer at rsu dot ru
- To: gcc-gnats at gcc dot gnu dot org
- Date: 3 Mar 2002 13:08:48 -0000
- Subject: target/5815: ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/i386/reloc.c:220
- Reply-to: wanderer at rsu dot ru
>Number: 5815
>Category: target
>Synopsis: ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/i386/reloc.c:220
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: unassigned
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Sun Mar 03 05:16:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator: wanderer@rsu.ru
>Release: gcc version 3.2 20020303 (experimental)
>Organization:
>Environment:
i386-unknown-freebsd4.5
Binutils version 2.11.2 20010719 [FreeBSD]
>Description:
Simple program compile and linked but, but not execute. Execution break with message:
g++ -o test.o -c test.cc
./test.out
ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/i386/reloc.c:220
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
>Unformatted:
----gnatsweb-attachment----
Content-Type: text/plain; name="test.cc"
Content-Disposition: inline; filename="test.cc"
#include<vector>
int main() {
std::vector<char> lst(3);
return 0;
};