diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-04-21 19:40:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-21 19:40:19 +0200 |
| commit | 7ce0b4f473b2830ccc4d720455ba62c438e973c0 (patch) | |
| tree | c9d143e6ad024edddbb4408471c847c6e18b7e30 /example | |
| parent | 19aaed86a09be0bc1a4a79d2077b74b962e4d8ef (diff) | |
| parent | ce796845a46c075a21604740e587151600a37bd2 (diff) | |
| download | miasm-7ce0b4f473b2830ccc4d720455ba62c438e973c0.tar.gz miasm-7ce0b4f473b2830ccc4d720455ba62c438e973c0.zip | |
Merge pull request #536 from commial/refactor/gcc-default-jitter
Refactor/gcc default jitter
Diffstat (limited to 'example')
| -rwxr-xr-x | example/jitter/mips32.py | 4 | ||||
| -rwxr-xr-x | example/jitter/msp430.py | 4 | ||||
| -rw-r--r-- | example/jitter/x86_32.py | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/example/jitter/mips32.py b/example/jitter/mips32.py index 7c8900f8..c5b2f7f5 100755 --- a/example/jitter/mips32.py +++ b/example/jitter/mips32.py @@ -20,8 +20,8 @@ parser.add_argument("-n", "--log-newbloc", help="Log basic blocks processed by the Jitter", action="store_true") parser.add_argument("-j", "--jitter", - help="Jitter engine. Possible values are : tcc (default), llvm", - default="tcc") + help="Jitter engine (default is 'gcc')", + default="gcc") parser.add_argument("-d", "--debugging", help="Attach a CLI debugguer to the sandboxed programm", action="store_true") diff --git a/example/jitter/msp430.py b/example/jitter/msp430.py index 5c8b7197..b69f91c6 100755 --- a/example/jitter/msp430.py +++ b/example/jitter/msp430.py @@ -18,8 +18,8 @@ parser.add_argument("-n", "--log-newbloc", help="Log basic blocks processed by the Jitter", action="store_true") parser.add_argument("-j", "--jitter", - help="Jitter engine. Possible values are : tcc (default), llvm", - default="tcc") + help="Jitter engine (default is 'gcc')", + default="gcc") parser.add_argument("-d", "--debugging", help="Attach a CLI debugguer to the sandboxed programm", action="store_true") diff --git a/example/jitter/x86_32.py b/example/jitter/x86_32.py index 2eee1742..91244bf6 100644 --- a/example/jitter/x86_32.py +++ b/example/jitter/x86_32.py @@ -13,8 +13,8 @@ if filename and os.path.isfile(filename): parser = ArgumentParser(description="x86 32 basic Jitter") parser.add_argument("filename", help="x86 32 shellcode filename") parser.add_argument("-j", "--jitter", - help="Jitter engine. Possible values are : tcc (default), llvm", - default="tcc") + help="Jitter engine (default is 'gcc')", + default="gcc") args = parser.parse_args() def code_sentinelle(jitter): |