From owner-freebsd-current Mon Nov 6 0: 2:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8688A37B4C5; Mon, 6 Nov 2000 00:02:07 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eA681tB03690; Mon, 6 Nov 2000 10:01:59 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id eA681uZ19042; Mon, 6 Nov 2000 10:01:56 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A066572.2CF3D7BC@FreeBSD.org> Date: Mon, 06 Nov 2000 10:01:54 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: current@FreeBSD.org Cc: jdp@FreeBSD.org, obrien@FreeBSD.org Subject: Problem with dlopen()/dlsym() after recent crt* changes Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After the crt changes the following piece of code, which worked previously, gives a 'host: dlopen() failed: ./module.so: Undefined symbol "__register_frame_info' error message (yeah, I know that it's better to check handle == NULL first, but it's the way some apps work). handle = dlopen("./module.so", RTLD_LAZY); if ((error = dlerror()) != NULL) { errx(1, "dlopen() failed: %s", error); /* Not reached */ } The full sources of this testcase can be found at: http://people.freebsd.org/~sobomax/dlbug.tar.gz . -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message