Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-28 Thread Don Lewis
On 27 Jan, Alexander Kabaev wrote: > On Fri, 27 Jan 2017 10:47:20 -0800 (PST) > Don Lewis wrote: > >> On 27 Jan, Alexander Kabaev wrote: >> > On Fri, 27 Jan 2017 00:31:30 -0800 (PST) >> > Don Lewis wrote: >> >> >> If I create a simple test program

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-28 Thread Don Lewis
On 27 Jan, Konstantin Belousov wrote: > On Fri, Jan 27, 2017 at 12:19:16PM -0500, Alexander Kabaev wrote: >> On Fri, 27 Jan 2017 00:31:30 -0800 (PST) >> Don Lewis wrote: >> > If I create a simple test program that calls malloc() and set a >> > breakpoint in malloc(), the

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Don Lewis
On 28 Jan, Jan Mikkelsen wrote: > Hi, > > Are you being affected by this rtld behaviour: > > https://lists.freebsd.org/pipermail/freebsd-hackers/2016-July/049769.html > > >

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Don Lewis
On 27 Jan, Konstantin Belousov wrote: > On Fri, Jan 27, 2017 at 12:19:16PM -0500, Alexander Kabaev wrote: >> On Fri, 27 Jan 2017 00:31:30 -0800 (PST) >> Don Lewis wrote: >> >> > I've been attempting to get OpenOffice to build properly in a >> > clang400-import poudriere

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Jan Mikkelsen
Hi, Are you being affected by this rtld behaviour: https://lists.freebsd.org/pipermail/freebsd-hackers/2016-July/049769.html https://lists.freebsd.org/pipermail/freebsd-stable/2015-July/082751.html

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Alexander Kabaev
On Fri, 27 Jan 2017 10:47:20 -0800 (PST) Don Lewis wrote: > On 27 Jan, Alexander Kabaev wrote: > > On Fri, 27 Jan 2017 00:31:30 -0800 (PST) > > Don Lewis wrote: > > >> If I create a simple test program that calls malloc() and set a > >> breakpoint

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Don Lewis
On 27 Jan, Alexander Kabaev wrote: > On Fri, 27 Jan 2017 00:31:30 -0800 (PST) > Don Lewis wrote: >> If I create a simple test program that calls malloc() and set a >> breakpoint in malloc(), the breakpoint gets set in the rtld version, >> but the the libc version of malloc

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Konstantin Belousov
On Fri, Jan 27, 2017 at 12:19:16PM -0500, Alexander Kabaev wrote: > On Fri, 27 Jan 2017 00:31:30 -0800 (PST) > Don Lewis wrote: > > > I've been attempting to get OpenOffice to build properly in a > > clang400-import poudriere jail and have run into a mystery. The build > >

Re: malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Alexander Kabaev
On Fri, 27 Jan 2017 00:31:30 -0800 (PST) Don Lewis wrote: > I've been attempting to get OpenOffice to build properly in a > clang400-import poudriere jail and have run into a mystery. The build > procedure creates a c++ executable "idlc", which is used to build > other

malloc() call somehow calling the rtld malloc() implementaion

2017-01-27 Thread Don Lewis
I've been attempting to get OpenOffice to build properly in a clang400-import poudriere jail and have run into a mystery. The build procedure creates a c++ executable "idlc", which is used to build other stuff. The new operator has been overrriden to call a custom memory allocator, which I have