Add -m32 and -x c to Makefile for 64-bit Snow Leopard.
[pforth] / releases.txt
CommitLineData
bb6b2dcd 1Release History for pForth - a Portable ANS-like Forth written in ANSI 'C'\r
2\r
3Documentation for pForth at http://www.softsynth.com/pforth/\r
4\r
b3651f38 5V?? \r
970d32b5 6 - Added -m32 to Makefile so we get 32 bit longs on Snow Leopard.
7 - Added "-x c" to Makefile CCOPTS to prevent confusion with C++
b3651f38 8 - Allow space after -d command line option.\r
9 - Restore normal tty mode if pForth dictionary loading fails.\r
10 \r
6b91cb54 11V24 2/20/09\r
12 - Fixed Posix IO on Mac. ?TERMINAL was always returning true.\r
13 - ACCCEPT now emits a space at end of line before output.\r
14 - Fixed RESIZE because it was returning the wrong address.\r
15\r
246a0927 16V23 8/4/2008\r
17 - Removed -v option from mkdir in build/unix/Makefile. It was not supported on FreeBSD.\r
b3651f38 18 Thank you Alexsej Saushev for reporting this.\r
246a0927 19 \r
bb6b2dcd 20V23 7/20/2008\r
21 - Reorganized for Google Code project.\r
22 \r
23V22 (unreleased)\r
24 - Added command line history and cursor control words.\r
25 - Sped up UM* and M* by a factor of 3. Thanks to Steve Green for suggested algorithm.\r
26 - Modified ACCEPT so that a line at the end of a file that does NOT have a line\r
27 terminator will now be processed.\r
28 - Use _getch(), _putch(), and _kbhit() so that KEY, EMIT and ?TERMINAL will work on PC.\r
6b91cb54 29 - Fixed : foo { -- } 55 ; - Was entering local frame but not exiting. Now prints error.\r
bb6b2dcd 30 - Redefined MAKE_ID to protect it from 16 bit ints\r
31 - John Providenza says "If you split local variables onto 2 lines, PForth crashes." Fixed. Also allow \\r
32 - Fixed float evaluation in EVALUATE in "quit.fth".\r
33 - Flush register cache for ffColon and ffSemiColon to prevent stack warnings from ;\r
34\r
35V21 - 9/16/98\r
36 - Fixed some compiler warnings.\r
37\r
38V20\r
39 - Expand PAD for ConvertNumberToText so "-1 binary .s" doesn't crash.\r
40 Thank you Michael Connor of Vancouver for reporting this bug.\r
41\r
42 - Removed FDROP in REPRESENT to fix stack underflow after "0.0 F.".\r
43 Thank you Jim Rosenow of Minnesota for reporting this bug.\r
44 - Changed pfCharToLower to function to prevent macro expansion bugs under VXWORKS\r
45 Thank you Jim Rosenow of Minnesota for reporting this bug.\r
46\r
47 - "0.0 F~" now checks actual binary encoding of floats. Before this it used to just\r
48 compare value which was incorrect. Now "0.0 -0.0 0.0 F~" returns FALSE.\r
49\r
50 - Fixed definition of INPUT$ in tutorial.\r
51 Thank you Hampton Miller of California for reporting this bug.\r
52\r
53 - Added support for producing a target dictionary with a different\r
54 Endian-ness than the host CPU. See PF_BIG_ENDIAN_DIC and PF_LITTLE_ENDIAN_DIC.\r
55\r
56 - PForth kernel now comes up in a mode that uses BASE for numeric input when\r
57 started with "-i" option. It used to always consider numeric input as HEX.\r
58 Initial BASE is decimal. \r
59\r
60V19 4/98\r
61\r
62 - Warn if local var name matches dictionary, : foo { count -- } ;\r
63 - TO -> and +-> now parse input stream. No longer use to-flag.\r
64 - TO -> and +-> now give error if used with non-immediate word.\r
65 - Added (FLITERAL) support to SEE.\r
66 - Aded TRACE facility for single step debugging of Forth words.\r
67 - Added stub for ?TERMINAL and KEY? for embedded systems.\r
68 - Added PF_NO_GLOBAL_INIT for no reliance on global initialization.\r
69 - Added PF_USER_FLOAT for customization of FP support.\r
70 - Added floating point to string conversion words (F.) (FS.) (FE.)\r
71 For example: : F. (F.) TYPE SPACE ;\r
72 - Reversed order that values are placed on return stack in 2>R\r
73 so that it matches ANS standard. 2>R is now same as SWAP >R >R\r
74 Thank you Leo Wong for reporting this bug.\r
75\r
76 - Added PF_USER_INIT and PF_USER_TERM for user definable init and term calls.\r
77\r
78 - FIXED memory leak in pfDoForth()\r
79\r
80V18\r
81 - Make FILL a 'C' primitive.\r
82 - optimized locals with (1_LOCAL@)\r
83 - optimized inner interpreter by 15%\r
84 - fix tester.fth failures\r
85 - Added define for PF_KEY_ECHOS which turns off echo in ACCEPT if defined.\r
86 - Fixed MARKER. Was equivalent to ANEW instead of proper ANS definition.\r
87 - Fixed saving and restoring of TIB when nesting include files.\r
88\r
89V17\r
90 - Fixed input of large floats. 0.7071234567 F. used to fail.\r
91\r
92V16\r
93 * Define PF_USER_CUSTOM if you are defining your own custom\r
94 'C' glue routines. This will ifndef the published example.\r
95 - Fixed warning in pf_cglue.c.\r
96 - Fixed SDAD in savedicd.fth. It used to generate bogus 'C' code\r
97 if called when (BASE != 10), as in HEX mode.\r
98 - Fixed address comparisons in forget.fth and private.fth for\r
99 addresses above 0x80000000. Must be unsigned.\r
100 - Call FREEZE at end of system.fth to initialize rfence.\r
101 - Fixed 0.0 F. which used to leave 0.0 on FP stack.\r
102 - Added FPICK ( n -- ) ( i*f -- i*f f[n] )\r
103 - .S now prints hex numbers as unsigned.\r
104 - Fixed internal number to text conversion for unsigned nums.\r
105\r
106V15 - 2/15/97\r
107 * If you use PF_USER_FILEIO, you must now define PF_STDIN and PF_STDOUT\r
108 among other additions. See "pf_io.h".\r
109 * COMPARE now matches ANS STRING word set!\r
110 - Added PF_USER_INC1 and PF_USER_INC2 for optional includes\r
111 and host customization. See "pf_all.h".\r
112 - Fixed more warnings.\r
113 - Fixed >NAME and WORDS for systems with high "negative" addresses.\r
114 - Added WORDS.LIKE utility. Enter: WORDS.LIKE EMIT\r
115 - Added stack check after every word in high level interpreter.\r
116 Enter QUIT to enter high level interpreter which uses this feature.\r
117 - THROW will no longer crash if not using high level interpreter.\r
118 - Isolated all host dependencies into "pf_unix.h", "pf_win32.h",\r
119 "pf_mac.h", etc. See "pf_all.h".\r
120 - Added tests for CORE EXT, STRINGS words sets.\r
121 - Added SEARCH\r
122 - Fixed WHILE and REPEAT for multiple WHILEs.\r
123 - Fixed .( ) for empty strings.\r
124 - Fixed FATAN2 which could not compile on some systems (Linux gcc).\r
125\r
126V14 - 12/23/96\r
127 * pforth command now requires -d before dictionary name.\r
128 Eg. pforth -dcustom.dic test.fth\r
129 * PF_USER_* now need to be defined as include file names.\r
130 * PF_USER_CHARIO now requires different functions to be defined.\r
131 See "csrc/pf_io.h".\r
132 - Moved pfDoForth() from pf_main.c to pf_core.c to simplify\r
133 file with main().\r
134 - Fix build with PF_NO_INIT\r
135 - Makefile now has target for embedded dictionary, "gmake pfemb".\r
136\r
137V13 - 12/15/96\r
138 - Add "extern 'C' {" to pf_mem.h for C++\r
139 - Separate PF_STATIC_DIC from PF_NO_FILEIO so that we can use a static\r
140 dictionary but also have file I/O.\r
141 - Added PF_USER_FILEIO, PF_USER_CHARIO, PF_USER_CLIB.\r
142 - INCLUDE now aborts if file not found.\r
143 - Add +-> which allows you to add to a local variable, like +! .\r
144 - VALUE now works properly as a self fetching constant.\r
145 - Add CODE-SIZE and HEADERS-SIZE which lets you resize\r
146 dictionary saved using SAVE-FORTH.\r
147 - Added FILE?. Enter "FILE? THEN" to see what files THEN is defined in.\r
148 - Fixed bug in local variables that caused problems if compilation\r
149 aborted in a word with local variables.\r
150 - Added SEE which "disassembles" Forth words. See "see.fth".\r
151 - Added PRIVATE{ which can be used to hide low level support\r
152 words. See "private.fth".\r
153 \r
154V12 - 12/1/96\r
155 - Advance pointers in pfCopyMemory() and pfSetMemory()\r
156 to fix PF_NO_CLIB build.\r
157 - Increase size of array for PF_NO_MALLOC\r
158 - Eliminate many warnings involving type casts and (const char *)\r
159 - Fix error recovery in dictionary creation.\r
160 - Conditionally eliminate some include files for embedded builds.\r
161 - Cleanup some test files.\r
162\r
163V11 - 11/14/96\r
164 - Added support for AUTO.INIT and AUTO.TERM. These are called\r
165 automagically when the Forth starts and quits.\r
166 - Change all int to int32.\r
167 - Changed DO LOOP to ?DO LOOP in ENDCASE and LV.MATCH\r
168 to fix hang when zero local variables.\r
169 - Align long word members in :STRUCT to avoid bus errors.\r
170 \r
171V10 - 3/21/96\r
172 - Close nested source files when INCLUDE aborts.\r
173 - Add PF_NO_CLIB option to reduce OS dependencies.\r
174 - Add CREATE-FILE, fix R/W access mode for OPEN-FILE.\r
175 - Use PF_FLOAT instead of FLOAT to avoid DOS problem.\r
176 - Add PF_HOST_DOS for compilation control.\r
177 - Shorten all long file names to fit in the 8.3 format\r
178 required by some primitive operating systems. My\r
179 apologies to those with modern computers who suffer\r
180 as a result. ;-)\r
181 \r
182V9 - 10/13/95\r
183 - Cleaned up and documented for alpha release.\r
184 - Added EXISTS?\r
185 - compile floats.fth if F* exists\r
186 - got PF_NO_SHELL working\r
187 - added TURNKEY to build headerless dictionary apps\r
188 - improved release script and rlsMakefile\r
189 - added FS@ and FS! for FLPT structure members\r
190\r
191V8 - 5/1/95\r
192 - Report line number and line dump when INCLUDE aborts\r
193 - Abort if stack depth changes in colon definition. Helps\r
194 detect unbalanced conditionals (IF without THEN).\r
195 - Print bytes added by include. Helps determine current file.\r
196 - Added RETURN-CODE which is returned to caller, eg. UNIX shell.\r
197 - Changed Header and Code sizes to 60000 and 150000\r
198 - Added check for overflowing dictionary when creating secondaries.\r
199\r
200V8 - 5/1/95\r
201 - Report line number and line dump when INCLUDE aborts\r
202 - Abort if stack depth changes in colon definition. Helps\r
203 detect unbalanced conditionals (IF without THEN).\r
204 - Print bytes added by include. Helps determine current file.\r
205 - Added RETURN-CODE which is returned to caller, eg. UNIX shell.\r
206 - Changed Header and Code sizes to 60000 and 150000\r
207 - Added check for overflowing dictionary when creating secondaries.\r
208 \r
209V7 - 4/12/95\r
210 - Converted to 3DO Teamware environment\r
211 - Added conditional compiler [IF] [ELSE] [THEN], use like #if\r
212 - Fixed W->S B->S for positive values\r
213 - Fixed ALLOCATE FREE validation. Was failing on some 'C' compilers.\r
214 - Added FILE-SIZE\r
215 - Fixed ERASE, now fills with zero instead of BL\r
216 \r
217V6 - 3/16/95\r
218 - Added floating point\r
219 - Changed NUMBER? to return a numeric type\r
220 - Support double number entry, eg. 234. -> 234 0\r
221\r
222V5 - 3/9/95\r
223 - Added pfReportError()\r
224 - Fixed problem with NumPrimitives growing and breaking dictionaries\r
225 - Reduced size of saved dictionaries, 198K -> 28K in one instance\r
226 - Funnel all terminal I/O through ioKey() and ioEmit()\r
227 - Removed dependencies on printf() except for debugging\r
228\r
229V4 - 3/6/95\r
230 - Added smart conditionals to allow IF THEN DO LOOP etc.\r
231 outside colon definitions.\r
232 - Fixed RSHIFT, made logical.\r
233 - Added ARSHIFT for arithmetic shift.\r
234 - Added proper M*\r
235 - Added <> U> U<\r
236 - Added FM/MOD SM/REM /MOD MOD */ */MOD\r
237 - Added +LOOP EVALUATE UNLOOP EXIT\r
238 - Everything passes "coretest.fth" except UM/MOD FIND and WORD\r
239 \r
240V3 - 3/1/95\r
241 - Added support for embedded systems: PF_NO_FILEIO\r
242 and PF_NO_MALLOC.\r
243 - Fixed bug in dictionary loader that treated HERE as name relative.\r
244 \r
245V2 - 8/94\r
246 - made improvements necessary for use with M2 Verilog testing\r
247\r
248V1 - 5/94\r
249 - built pForth from various Forths including HMSL\r
250\r
251----------------------------------------------------------\r
252 \r
253\r
254Enjoy,\r
255Phil Burk\r