about summary refs log tree commit diff stats
path: root/miasm2
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2')
-rw-r--r--miasm2/analysis/sandbox.py4
-rw-r--r--miasm2/jitter/jitload.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py
index 3c29ace0..44d528ac 100644
--- a/miasm2/analysis/sandbox.py
+++ b/miasm2/analysis/sandbox.py
@@ -88,8 +88,8 @@ class Sandbox(object):
         parser.add_argument('-g', "--gdbserver", type=int,
                             help="Listen on port @port")
         parser.add_argument("-j", "--jitter",
-                            help="Jitter engine. Possible values are: tcc (default), llvm, python",
-                            default="tcc")
+                            help="Jitter engine. Possible values are: gcc (default), tcc, llvm, python",
+                            default="gcc")
         parser.add_argument(
             '-q', "--quiet-function-calls", action="store_true",
                             help="Don't log function calls")
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py
index 693dd224..4760c8dd 100644
--- a/miasm2/jitter/jitload.py
+++ b/miasm2/jitter/jitload.py
@@ -163,12 +163,12 @@ class jitter:
 
     C_Gen = CGen
 
-    def __init__(self, ir_arch, jit_type="tcc"):
+    def __init__(self, ir_arch, jit_type="gcc"):
         """Init an instance of jitter.
         @ir_arch: ir instance for this architecture
         @jit_type: JiT backend to use. Available options are:
-            - "tcc"
             - "gcc"
+            - "tcc"
             - "llvm"
             - "python"
         """