Skip to content

Commit

Permalink
Disable shadow stack per default
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Oct 13, 2024
1 parent d7d49b0 commit 4083d9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/icicle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Icicle:
def __init__(self, architecture: str, *,
jit = True,
jit_mem = True,
shadow_stack = True,
shadow_stack = False,
recompilation = True,
track_uninitialized = False,
optimize_instructions = True,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ impl Icicle {
architecture,
jit = true,
jit_mem = true,
shadow_stack = true,
shadow_stack = false,
recompilation = true,
track_uninitialized = false,
optimize_instructions = true,
Expand Down

0 comments on commit 4083d9f

Please sign in to comment.