[Bug-apl] defn error with ⍝

2017-01-28 Thread enztec
could someone give me a heads up why the ⍝ doesn't cover the ∇ in the line? #! im ∇im ⍝ '⊂⌸⋸' ∇ ∇ )copy im DUMPED 2017-01-28 18:17:02 (GMT-7) DEFN ERROR+ ∇ ^

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread enztec
tt.xml attachedthis is from 1.6 release On Sat, 28 Jan 2017 23:19:12 +0100 Juergen Sauermann wrote: > Hi, > > the ... VERY old ,,, warning suggests that the file was truncated right at > the beginning. > > Could you please send me the tt.xml file? > > thanks, > /// Jürgen > > > On 01/

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Juergen Sauermann
Hi, the ... VERY old ,,, warning suggests that the file was truncated right at the beginning. Could you please send me the tt.xml file? thanks, /// Jürgen On 01/28/2017 10:36 PM, enz...@gmx.com wrote:

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread enztec
using fresh svn 867 configure make develop make install apl gives same error with 1.6 release configure make make install )wsid tt WAS CLEAR WS )save 2017-01-28 14:06:23 (GMT-7) tt )load tt WARNING: this workspace was )SAVEd with a VERY old SVN version of GNU APL. Expect

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Bill Heagy
The problem seems to be about assert level rather than parallel, even before SVN 867. SVN 867 make clean ./configure ASSERT_LEVEL_WANTED=0 ./configure . . . ++ -DHAVE_CONFIG_H -I. -I..-Werror -Wall -I sql -I/usr/include -rdynamic -g -O2 -MT apl-PrimitiveFunction.o -MD -MP -MF .deps/apl-Pri

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Juergen Sauermann
Hi Bill, thanks, hopefully fixed in SVN 867. Please keep in mind that 'make parallel ' is experimental and contains bugs in ScalarFunction.cc that I was not able to reproduce because they only occur sporadically. /// Jürgen

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Juergen Sauermann
Hi, very strange. Works for me:   )wsid tt WAS CLEAR WS   )save 2017-01-28  21:24:40 (GMT+1) tt   )load tt SAVED 2017-01-28 21:24:40 (GMT+1) could be that your checkout is somehow broken (dependencies et

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread enztec
aplcompiled with just configure and i hope gcc 4.4.3 is good )wsid tt WAS CLEAR WS )save 2017-01-28 12:30:12 (GMT-7) tt )load tt == Assertion failed: items in Function: at in file:

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Bill Heagy
debian, 32-bit or 64-bit, testing SVN 865 and previous versions If I do: make clean ./configure CORE_COUNT_WANTED=syl make everything is fine. If I do: make clean ./configure make parallel I get: . . . g++ -DHAVE_CONFIG_H -I. -I..-Werror -Wall -I sql -I/usr/include -rdynamic

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Juergen Sauermann
Hi, i changed the constructor of PJob_scalar_AB in the same way as for PJob_scalar_B. SVN 866. I can't test this myself because I am not getting this warning (g++  4.6.3). Regarding CORE_COUNT_WANTED=2 please keep in mind that parallel executi

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread enztec
Hi, same basic problem but different function isn't anyone else getting this on make?this is my configure line 'configure CORE_COUNT_WANTED=2'but just 'configure' also gives same error on make g++ -DHAVE_CONFIG_H -I. -I..-Werror -Wall -I sql -I/usr/local/include

Re: [Bug-apl] location of cursor on new apl session

2017-01-28 Thread Juergen Sauermann
Hi, I suppose it is somewhere around LineEditContext::adjust_allocated_height(). I wrote my own readline() because the official one caused too many problems on some platforms. If I remember correctly then LineEditContext::adjust_allocated_heig

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Juergen Sauermann
Hi, the problem is in ScalarFunction.cc. The compiler complains about a pointer which is not initialized in the constructor (which is on purpose, but the compiler seems not to like it). The pointer is initialized at a later point in time (at Sc

Re: [Bug-apl] location of cursor on new apl session

2017-01-28 Thread enztec
It is linux and i think you are right - the change happened between versions of apl with the change of use of readline -> curses - the problem is that i use the 'bottom' of the xterm for displaying data of the system and then control the cursor myself - i don't have real control on the size

Re: [Bug-apl] location of cursor on new apl session

2017-01-28 Thread enztec
with the banner disabled - i don't see apl clearing the xterm screen - if i invoke apl after using 20 lines (in a 28 line xterm) then apl just starts at the bottom of the screen - (8 lines below) - i have to clear the screen (/usr/bin/clear) myself before invoking apl when i start apl after 'i

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread enztec
Hi Jürgen Sorry, still getting the same 'warning->error' in 864 is the problem in Simple_string.hh or ScalarFunction.cc ?? (i see your code changes in ScalarFunction.cc) thanks g++ -DHAVE_CONFIG_H -I. -I..-Werror -Wall -I sql -I/usr/local/include -rdynamic -g -O2 -MT apl-Symbol.o -M

Re: [Bug-apl] svn 863 make warning/error

2017-01-28 Thread Juergen Sauermann
Hi, thanks, hopefully fixed in SVN 864. /// Jürgen On 01/27/2017 11:51 PM, enz...@gmx.com wrote: i removed the -Werror in the src/Makefile line 680common_CXXFLAGS = -Werror -Wall -I sql $(am__append_2) $(am_

Re: [Bug-apl] location of cursor on new apl session

2017-01-28 Thread Juergen Sauermann
Hi, what you see is the intended behavior. When you start GNU APL then the terminal is being reset (clear screen) so that we can print the welcome banner. After that all user input is entered at the bottom of the screen. This is mo