Stack traces not displaying correctly on macOS

2024-02-12 Thread Paul Rockwell
if you find them useful.- Paul Rockwell<>

Re: SVN 1752: error in Command.cc doesn't compile on macOS

2024-02-14 Thread Paul Rockwell
your /usr/include/.../stat.h > file and let me know how to get the modification time (or a macro > that tells if it is present or absent)? > > Thanks, > Jürgen > > >> On 2/13/24 19:56, Paul Rockwell wrote: >> When compiling SVN 1752 on macOS, an error is thrown b

SVN 1752: error in Command.cc doesn't compile on macOS

2024-02-13 Thread Paul Rockwell
pec.tv_sec; and the module compiles successfully. I can conditionalize this with #ifdef __APPLE__ like I did with my changes to Backtrace.cc, but thought I'd defer to you to determine how you want to handle this. - Paul Rockwell .

Re: Stack traces not displaying correctly on macOS

2024-02-13 Thread Paul Rockwell
?) or with -D on the command line? In the latter case we could let > ./configure set the macro (for that I would need to know the output of > the uname command on your machine). > > Best Regards, > Jürgen > > >> On 2/12/24 23:40, Paul Rockwell wrote: >> I've fou

Re: Stack traces not displaying correctly on macOS

2024-02-13 Thread Paul Rockwell
any Apple-provided examples. - Paul > On Feb 13, 2024, at 9:35 AM, Paul Rockwell wrote: > > Jürgen, > > I’ll download and test SVN 1752 on both macOS and a Fedora Intel system I > have hanging around. I figured you don’t use a Mac, so that’s why I took it > upon myself

GNU APL error while saving workspace

2024-01-31 Thread Paul Rockwell
further debugging. I have the sources and can debug and rebuild if necessary. Thank you. - Paul Rockwell paulrockw...@mac.com

Error while running function copied from another workspace

2024-02-03 Thread Paul Rockwell
GNU APL SVN 1744M running on macOS 14.3 on Apple Silicon.I copied a function from a workspace (in this case, it's the DISPLAY function from IBM APL2 transcribed from the book "APL2 At a Glance':      )copy TOOLBOX DISPLAY SAVED 2024-02-03 16:54:36 (GMT-5)I then attempted to run DISPLAY:     

Re: Multiple assignment attempt crashes gnu-apl

2024-03-28 Thread PAUL ROCKWELL
nterpreter, the resulting interpreter runs the assignment as expected, and the assertion is not thrown. Is there a minimum dialect of C++ that should be used to compile GNU APL? - Paul Rockwell

GNU APL crash

2024-02-22 Thread Paul Rockwell
to get help. - Paul Rockwell

Re: Is svn release 1758 missing fixes?

2024-03-03 Thread Paul Rockwell
; 2031 to if (sort == SORT_TIME) return st.st_mtime; 2031 Both Linux and macOS #define st_mtime to be st.st_mtim.tv_sec (Linux) or st.st_mtimespec.tv_sec (macOS) to provide backward compatibility. That way we don't need the test for __APPLE__. - Paul Rockwell

Re: Compile errors when building libapl

2024-03-03 Thread Paul Rockwell
changes in SVN 1713 have contributed to breaking libapl.cc: the definition of resolve_right() in Symbol.hh and SystemVariable.hh was changed to add the additional argument the removal of the definition of extract_and_keep() in class Token in Token.hh. - Paul Rockwell