1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-02 23:14:57 +03:00

Get the I6 setting for $DICT_CHAR_SIZE=4 in there.

This commit is contained in:
Andrew Plotkin 2023-05-13 13:30:58 -04:00
parent 0b10e0bf5c
commit d60e01213a
2 changed files with 3 additions and 0 deletions

View file

@ -112,6 +112,7 @@ Use Inform 6 compiler option "$MAX_SYMBOLS=20000".
Use Inform 6 compiler option "$MAX_EXPRESSION_NODES=256".
Use Inform 6 compiler option "$MAX_LABELS=200000".
Use Inform 6 compiler option "$MAX_LOCAL_VARIABLES=256".
Use Inform 6 compiler option "$DICT_CHAR_SIZE=4".
Part Two - Miscellaneous Definitions

View file

@ -170,6 +170,7 @@ the highest |MAX_VERBS| setting we can safely make here.
The |MAX_LOCAL_VARIABLES| setting is suppressed by I7 if we're compiling
to the Z-machine, because it's only legal in I6 when compiling to Glulx.
#### DICT_CHAR_SIZE should be suppressed in the same way.
Most of these settings are unnecessary (and do nothing) if the version of
the I6 compiler eventually used to compile this code is 6.36 or better: in
@ -195,3 +196,4 @@ Use Inform 6 compiler option "$MAX_SYMBOLS=20000".
Use Inform 6 compiler option "$MAX_EXPRESSION_NODES=256".
Use Inform 6 compiler option "$MAX_LABELS=200000".
Use Inform 6 compiler option "$MAX_LOCAL_VARIABLES=256".
Use Inform 6 compiler option "$DICT_CHAR_SIZE=4".