mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-15 09:20:23 -07:00
Relax array size limits
This commit is contained in:
parent
58cf3c6b9d
commit
a656edfe85
1 changed files with 5 additions and 0 deletions
|
|
@ -62,8 +62,13 @@ typedef unsigned @CL_FIXNUM_TYPE@ cl_hashkey;
|
|||
* Array limits
|
||||
*/
|
||||
#define ARANKLIM 64 /* array rank limit */
|
||||
#ifdef GBC_BOEHM
|
||||
#define ADIMLIM @CL_FIXNUM_MAX@ /* array dimension limit */
|
||||
#define ATOTLIM @CL_FIXNUM_MAX@ /* array total limit */
|
||||
#else
|
||||
#define ADIMLIM 16*1024*1024 /* array dimension limit */
|
||||
#define ATOTLIM 16*1024*1024 /* array total limit */
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Function limits.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue