summary refs log tree commit diff stats
path: root/compiler/commands.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/commands.nim')
-rw-r--r--compiler/commands.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim
index d8d8ae4b7..204baaa16 100644
--- a/compiler/commands.nim
+++ b/compiler/commands.nim
@@ -31,7 +31,6 @@ import
 
 # but some have deps to imported modules. Yay.
 bootSwitch(usedTinyC, hasTinyCBackend, "-d:tinyc")
-bootSwitch(usedAvoidTimeMachine, noTimeMachine, "-d:avoidTimeMachine")
 bootSwitch(usedNativeStacktrace,
   defined(nativeStackTrace) and nativeStackTraceSupported,
   "-d:nativeStackTrace")
@@ -106,7 +105,7 @@ proc writeVersionInfo(pass: TCmdLinePass) =
     when gitHash.len == 40:
       msgWriteln("git hash: " & gitHash, {msgStdout})
 
-    msgWriteln("active boot switches:" & usedRelease & usedAvoidTimeMachine &
+    msgWriteln("active boot switches:" & usedRelease &
       usedTinyC & usedGnuReadline & usedNativeStacktrace & usedNoCaas &
       usedFFI & usedBoehm & usedMarkAndSweep & usedGenerational & usedGoGC & usedNoGC,
                {msgStdout})