Re: iota core dump

2025-04-27 Thread Hans-Peter Sorge
Hi, *SVN 1865* is ok too. Best Regards Hans-Peter Am 26.04.25 um 17:02 schrieb Dr. Jürgen Sauermann: Hi, maybe fixed in *SVN 1865*. Somewhat weird that some system show the fault and some (including mine) do not. Best Regards, Jürgen On 4/26/25 05:25, Christian Robert wrote: Quite strange

Re: iota core dump

2025-04-26 Thread Christian Robert
Jürgen, try this sample program on your system: $ cat x.cc #include #include int main() {    // Create a vector of integers    std::vector vec;    // Add elements to the vector    for (int i=0 ; i<10 ; ++i)    {  vec.push_back(i);    }    // Access and print vector elements    for (size

Re: iota core dump

2025-04-26 Thread Dr . Jürgen Sauermann
Hi, maybe fixed in *SVN 1865*. Somewhat weird that some system show the fault and some (including mine) do not. Best Regards, Jürgen On 4/26/25 05:25, Christian Robert wrote: Quite strange... mine is aborting [xtian@vbox:/home/xtian] $ gdb apl GNU gdb (Fedora Linux) 16.2-3.fc42 Copyright (C

Re: iota core dump

2025-04-26 Thread Hans-Peter Sorge
Hi Christian, pls note - you are on *Welcome to GNU APL version 1.9 / SVN: 1864M* I did a *svn  co https://svn.savannah.gnu.org/svn/apl/trunk -r 1863 *... *Welcome to GNU APL version 1.9 / SVN: 1863M *... * 1864M *still has the bug in my environment too. Best Regards Hans-Pe

Re: iota core dump

2025-04-25 Thread Christian Robert
Quite strange... mine is aborting [xtian@vbox:/home/xtian] $ gdb apl GNU gdb (Fedora Linux) 16.2-3.fc42 Copyright (C) 2024 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute

Re: iota core dump

2025-04-25 Thread Hans-Peter Sorge
Hi Jürgen I reverted /usr/include/c++/15/bits/stl_vector.h and checked out SVN 1863. It does not show the bug. Best Regards Hans-Peter Am 25.04.25 um 14:19 schrieb Dr. Jürgen Sauermann: Hi Hans-Peter, difficult to reproduce since the Assertion below does not occur on my machine. However,

Re: iota core dump

2025-04-25 Thread Dr . Jürgen Sauermann
Hi Hans-Peter, difficult to reproduce since the Assertion below does not occur on my machine. However, I fixed something that may or may not solve the issue. *SVN 1863*. Please let me know if it helped. Best Regards, Jürgen On 4/23/25 15:23, Hans-Peter Sorge wrote: Hi, this is with most r

Re: iota core dump

2025-04-23 Thread Hans-Peter Sorge
Hi Christian, thank you for your information. Correct - this is Fedora 42. One of those silent improvements one can run into after the release but not read about before the release. In this special case it looks like the immediate output fails: x←'0123456789abcde'⍳ '345'  x 4 5 6  '

Re: iota core dump

2025-04-23 Thread Christian Robert
Hi Hans-Peter,  you are probably on the brand new Fedora 42 ? if so, Jürgen is actually working on this problem. may take some time because it affect std::vector<> class and there are a lot of them in gnu apl. On fedora 42, the new library check for *all* out of bound access and there are s