-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace the interpreter with an LLVM compiler
- Loading branch information
1 parent
77a83c7
commit 2174b4f
Showing
285 changed files
with
30,558 additions
and
30,526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'] | ||
rustflags = ['-C', 'target-feature=+aes'] | ||
rustflags = ['-C', 'target-feature=+aes', '-C', 'force-unwind-tables'] | ||
|
||
# This is needed for stack traces to work when `panic=abort` is used. See | ||
# https://github.com/rust-lang/rust/issues/94815 and | ||
# https://github.com/rust-lang/backtrace-rs/issues/397 for more details. | ||
[build] | ||
rustflags = ['-C', 'force-unwind-tables'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ | |
*.egg-info/ | ||
__pycache__ | ||
/docs/plugins/pygments-inko-lexer/poetry.lock | ||
/build | ||
/std/build |
Oops, something went wrong.