ByteCodeCompiler.st
changeset 960 cdcc0151a13b
parent 959 de1cf34bbace
child 974 6ef9d2754f62
--- a/ByteCodeCompiler.st	Thu Sep 09 18:55:53 1999 +0200
+++ b/ByteCodeCompiler.st	Thu Sep 09 19:01:00 1999 +0200
@@ -2776,17 +2776,32 @@
     "/ create a small README there ...
     (t := mP construct:'README') exists ifFalse:[
         s := t writeStream.
-        s nextPutLine:'Temporary ST/X directory containing machine code for'.
-        s nextPutLine:'accepted methods with embedded C-code.'.
-        s nextPutLine:'Files here are not automatically removed,'.
-        s nextPutLine:'since ST/X cannot determine if any'.
-        s nextPutLine:'(other) snapshot image still requires a file here.'.
-        s nextPutLine:'You should periodically clean dead entries here.'.
-        s nextPutLine:'(i.e. remove files, when you are certain that none'.
-        s nextPutLine:' of your snapshot images referes to any module here)'.
-        s nextPutLine:'See the launchers File-Modules dialog for a list of'.
-        s nextPutLine:'modules which are still required by your running image.'.
-        s nextPutLine:'Regards - your ST/X.'.
+        s nextPutAll:
+'This temporary ST/X directory contains machine code for
+accepted methods with embedded C-code 
+(i.e. dynamic compiled code for inline-C methods).
+
+Files here are not automatically removed, since ST/X 
+cannot determine if any (other) snapshot image still 
+requires a file here.
+
+Please be careful when removing files here - a snapshot
+image which was saved with accepted embedded C-code
+may not be able to restart correctly if you remove a
+required file.
+Also, when you export a snapshot image for execution
+on another machine, make certain that the required
+module-files are also present there.
+
+You should periodically clean dead entries here.
+i.e. remove files, when you are certain that none
+of your snapshot images refers to any module here.
+
+See the launchers File-Modules dialog for a list of
+modules which are still required by your running image.
+
+With kind regards - your ST/X.
+'.
         s close.
     ].
 
@@ -3269,6 +3284,6 @@
 !ByteCodeCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.158 1999-09-09 16:55:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.159 1999-09-09 17:01:00 cg Exp $'
 ! !
 ByteCodeCompiler initialize!