DEADSOFTWARE

add option -no-use-time
[cpc.git] / src / generic / Dsw / Mod / Compiler486Main.cp
index 071858292df5a6a35fe029d4685fa60aa6e8d728..916ab178adb689e23174dc5872ecc5fa6e7015c2 100644 (file)
@@ -8,8 +8,10 @@ MODULE DswCompiler486Main;
     (* compiler options: *)
     checks = 0; allchecks = 1; assert = 2; obj = 3; ref = 4; allref = 5;
     srcpos = 6; reallib = 7; signatures = 8;
+    (* pVarInd = 14; bigEnd = 15; *) ctime = 16;
+    mainprog = 20; include0 = 21;
     hint = 29; oberon = 30; errorTrap = 31;
-    defopt = {checks, assert, obj, ref, allref, srcpos, signatures};
+    defopt = {checks, assert, obj, ref, allref, srcpos, signatures, ctime};
 
     version = "0.2";
 
@@ -171,6 +173,10 @@ MODULE DswCompiler486Main;
         ELSIF p = "-version" THEN
           Console.WriteStr(version); Console.WriteLn;
           Kernel.Quit(0)
+        ELSIF p = "-use-time" THEN
+          INCL(opts, ctime)
+        ELSIF p = "-no-use-time" THEN
+          EXCL(opts, ctime)
         ELSE
           Console.WriteStr("unknown option ");
           Console.WriteStr(p); Console.WriteLn;