Hi Christian
thanks, fixed in SVN 555.
/// Jürgen
On 03/06/2015 03:32 AM, Christian
Robert wrote:
This
was working yesterday. Today I did an "svn update" and make
&& make install
and it fail now.
Xtian.
address@hidden:/home/xtian] $ aplt
______ _ __ __ __ ___ ____ __
/ ____// | / // / / / / | / __ \ / /
/ / __ / |/ // / / / / /| | / /_/ // /
/ /_/ // /| // /_/ / / ___ | / ____// /___
\____//_/ |_/ \____/ /_/ |_|/_/ /_____/
Welcome to GNU APL version 1.4 / 9229
Copyright (C) 2008-2014 Dr. Jürgen Sauermann
Banner by FIGlet: www.figlet.org
This program comes with ABSOLUTELY NO WARRANTY;
for details run: /usr/local/bin/apl --gpl.
This program is free software, and you are welcome to
redistribute it
according to the GNU Public License (GPL) version 3 or
later.
)load bug
loading )DUMP file /home/xtian/workspaces/bug.apl...
WAS CLEAR WS
┌→────┐
↓5 3 0│
│6 0 0│
│0 9 8│
└─────┘
┌→──────────────┐
│┌→────┐ ┌→────┐│
│↓5 3 0│ ↓0 7 0││
││6 0 0│ │1 9 5││
││0 9 8│ │0 0 0││
│└─────┘ └─────┘│
└∊──────────────┘
==============================================================================
Assertion failed: get_ValueType() == TV_INT
in Function: get_int_val
in file: Token.hh:133
Call stack:
----------------------------------------
-- Stack trace at Token.hh:133
----------------------------------------
0x3648821d65 __libc_start_main
0x43f2f5 main
0x558c3d Workspace::immediate_execution(bool)
0x488da2 Command::process_line()
0x488e15 Command::do_APL_expression(UCS_string&)
0x493475 Executable::execute_body() const
0x512ab0 StateIndicator::run()
0x4c6294 Prefix::reduce_statements()
0x4c60ea Prefix::dont_reduce(TokenClass) const
0x4c4b3b
0x43eaea
0x44dbb1 do_Assert(char const*, char const*, char
const*, int)
========================================
SI stack:
Depth: 0
Exec: 0x13a3400
Safe ex: no
Pmode: ◊ (w[⍳3;⍳3]) (w[⍳3;3+⍳3]) (w[⍳3;6+⍳3])
PC: 24 )
Stat: (w[⍳3;⍳3]) (w[⍳3;3+⍳3]) (w[⍳3;6+⍳3])
err_code: 0x0
thrown: at StateIndicator.cc:40
e_msg_1: 'No Error'
e_msg_2: ''
e_msg_3: ''
==============================================================================
Goodbye.
address@hidden:/home/xtian] $ apl --cfg
configurable options:
---------------------
ASSERT_LEVEL_WANTED=1 (default)
DYNAMIC_LOG_WANTED=no (default)
MAX_RANK_WANTED=8 (default)
SHORT_VALUE_LENGTH_WANTED=12, therefore:
sizeof(Value) : 456 bytes
sizeof(Cell) : 24 bytes
sizeof(Value header): 168 bytes
VALUE_CHECK_WANTED=no (default)
VALUE_HISTORY_WANTED=no (default)
CORE_COUNT_WANTED=0 (default: (sequential))
VF_TRACING_WANTED=no (default)
VISIBLE_MARKERS_WANTED=no (default)
BUILDTAG:
---------
Project: GNU APL
Version / SVN: 1.4 / 9229
Build Date: 2015-03-05 15:10:09 UTC
Build OS: Linux 3.13.0-37-generic i686
config.status: '--enable-maintainer-mode' 'DEVELOP_WANTED=yes'
address@hidden:/home/xtian] $ cat workspaces/bug.apl
#!/usr/local/bin/apl --script
⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝
⍝
⍝ bug 2015-03-05 16:18:08 (GMT-5)
⍝
⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝
w←81⍴0
w[⍳33]←5,3,0,0,7,0,0,0,0,6,0,0,1,9,5,0,0,0,0,9,8,0,0,0,0,6,0,8,0,0,0,6,0
w[33+⍳32]←0,0,3,4,0,0,8,0,3,0,0,1,7,0,0,0,2,0,0,0,6,0,6,0,0,0,0,2,8,0,0,0
w[65+⍳16]←0,4,1,9,0,0,5,0,0,0,0,8,0,0,7,9
w←9 9⍴w
⎕CT←1E¯13
⎕FC←6⍴(,⎕UCS 46 44 8902 48 95 175)
⎕IO←1
⎕L←0
⎕LX←' '
⎕LX←0⍴⎕LX
⎕PP←10
⎕PR←' '
⎕PS←0
⎕PW←80
⎕R←0
⎕RL←16807
⎕TZ←-5
⎕X←0
]boxing 8
(w[⍳3;⍳3])
(w[⍳3;⍳3]) (w[⍳3;3+⍳3])
(w[⍳3;⍳3]) (w[⍳3;3+⍳3]) (w[⍳3;6+⍳3])
)off
address@hidden:/home/xtian] $
|