search for: libc_stack_end

Displaying 8 results from an estimated 8 matches for "libc_stack_end".

Did you mean: __libc_stack_end
2016 Feb 01
3
Wrong config check for __libc_stack_end
...jqQY2 On Mon, Feb 1, 2016 at 1:53 PM, Simon Urbanek <simon.urbanek at r-project.org> wrote: > > On Feb 1, 2016, at 9:56 AM, Alba Pompeo <albapompeo at gmail.com> wrote: > >> @Simon. Here's what I did. >> I checked out R revision 70059. >> Ran export r_cv_libc_stack_end=no. (otherwise it would give that error >> we talked about before) > > No, the whole point was to test this behavior. I see that the fix is in configure.ac but not configure so you'll need to run something like > aclocal -I m4 && autoconf > to update it. > > Also...
2016 Feb 01
3
Wrong config check for __libc_stack_end
@Simon. Here's what I did. I checked out R revision 70059. Ran export r_cv_libc_stack_end=no. (otherwise it would give that error we talked about before) Ran ./configure --without-recommended-packages. (otherwise it would complain of not finding ./src/library/Recommended/MASS_*.tar.gz) Ran make. Ran make check. Log is here - http://pastebin.com/raw/cGJgqB8p What do you think? Is there...
2016 Feb 01
3
Wrong config check for __libc_stack_end
...private glibc symbol in R. >> >> In R 3.2.3, it seems that configure is trying to test for >> it on Linux. It apparently fails to accurately test (as >> demonstrated by the link error), perhaps because the test >> program does not actually *use* __libc_stack_end so it >> gets optimized out. (See line 35500 or so in >> R-3.2.3/configure.) Ideally, the test program would >> check that a pointer to __libc_stack_end is non-null, but >> that's an autoconf bug. So, ideally someone who knows autoconf much better than...
2016 Feb 01
1
More problems with building R on a musl platform
...t and a *lot* of math differences, many of which say > >>>>>>> "*no* convergence: NOTIFY R-core!". > >>>>> > >>>>> Hmm, I may be off, but these would look like entirely unrelated > >>>>> with the libc_stack_end availibility, wouldn't they ? > >>>>> > >>>>> Maybe you / the musl developers should try to make those C > >>>>> libraries more "standard", notably because I would see math > >>>>> differences as s...
2016 Feb 01
0
More problems with building R on a musl platform
...gt;>>> text and a *lot* of math differences, many of which say >>>>>>> "*no* convergence: NOTIFY R-core!". >>>>> >>>>> Hmm, I may be off, but these would look like entirely unrelated >>>>> with the libc_stack_end availibility, wouldn't they ? >>>>> >>>>> Maybe you / the musl developers should try to make those C >>>>> libraries more "standard", notably because I would see math >>>>> differences as something pretty gra...
2016 Feb 01
0
Wrong config check for __libc_stack_end
...private glibc symbol in R. >>> >>> In R 3.2.3, it seems that configure is trying to test for >>> it on Linux. It apparently fails to accurately test (as >>> demonstrated by the link error), perhaps because the test >>> program does not actually *use* __libc_stack_end so it >>> gets optimized out. (See line 35500 or so in >>> R-3.2.3/configure.) Ideally, the test program would >>> check that a pointer to __libc_stack_end is non-null, but >>> that's an autoconf bug. > > So, ideally someone who knows autoconf much be...
2016 Feb 01
0
Wrong config check for __libc_stack_end
On Feb 1, 2016, at 9:56 AM, Alba Pompeo <albapompeo at gmail.com> wrote: > @Simon. Here's what I did. > I checked out R revision 70059. > Ran export r_cv_libc_stack_end=no. (otherwise it would give that error > we talked about before) No, the whole point was to test this behavior. I see that the fix is in configure.ac but not configure so you'll need to run something like aclocal -I m4 && autoconf to update it. Also please don't build in the s...
2016 Jan 28
2
Abuse of a private glibc symbol in R 3.2.3
...ght to my attention that this is a (very longstanding) abuse of a private glibc symbol in R. In R 3.2.3, it seems that configure is trying to test for it on Linux. It apparently fails to accurately test (as demonstrated by the link error), perhaps because the test program does not actually *use* __libc_stack_end so it gets optimized out. (See line 35500 or so in R-3.2.3/configure.) Ideally, the test program would check that a pointer to __libc_stack_end is non-null, but that's an autoconf bug. A work around was to 'export r_cv_libc_stack_end=no' before configuring R. However, there are a coupl...