ByteCodeCompiler.st
changeset 781 7de50bbbf651
parent 773 1e2375488d3b
child 792 481f2cdc1fb1
--- a/ByteCodeCompiler.st	Wed Sep 30 19:10:16 1998 +0200
+++ b/ByteCodeCompiler.st	Wed Sep 30 19:12:08 1998 +0200
@@ -2556,7 +2556,8 @@
         oFileName asFilename delete.
         cFileName asFilename delete.
 
-        stcFlags := '-commonSymbols +sharedLibCode +newIncremental -E:errorOutput -N' , initName .
+        "/ stcFlags := '-commonSymbols +sharedLibCode +newIncremental -E:errorOutput -N' , initName .
+        stcFlags := '+newIncremental -E:errorOutput -N' , initName .
         cFlags := OperatingSystem getOSDefine.
         cFlags isNil ifTrue:[
             cFlags := ''
@@ -2708,6 +2709,7 @@
          load the objectfile
         "
         self activityNotification:'loading'.
+
         handle := ObjectFileLoader loadDynamicObject:moduleFileName.
         handle isNil ifTrue:[
             OperatingSystem removeFile:moduleFileName.
@@ -2865,7 +2867,7 @@
 
     "Modified: / 14.9.1995 / 22:33:04 / claus"
     "Modified: / 11.8.1997 / 12:25:49 / stefan"
-    "Modified: / 3.9.1998 / 16:05:20 / cg"
+    "Modified: / 30.9.1998 / 18:12:02 / cg"
 !
 
 trappingStubMethodFor:aString inCategory:cat
@@ -2909,6 +2911,6 @@
 !ByteCodeCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.144 1998-09-04 16:59:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.145 1998-09-30 17:12:08 cg Exp $'
 ! !
 ByteCodeCompiler initialize!