summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2022-12-12 15:59:29 -0500
committerGitHub <noreply@github.com>2022-12-12 15:59:29 -0500
commit258ac07907b2e3561db48d53ed0a50c8dd05f102 (patch)
tree4e16f5d25b6845770ade3dd9c9af1d2975835b94 /yjit
parent1004d693b7a3db5db98be59a3d3d468d2ee21ca5 (diff)
YJIT: Generate debug info in release builds (#6910)
* YJIT: Generate debug info in release builds They are helpful in case we need to do core dump debugging. * Remove Cirrus DOC skip rule The syntax for this is weird, and escaping [ and ] cause parse failures. Cirrus' docs said to surround with .*, but then that seems to skip everything. Revert e0a4205eb785f266fdf08f409c2f112f5dfcb229 for now.
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'yjit')
-rw-r--r--yjit/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/yjit/Cargo.toml b/yjit/Cargo.toml
index 6b6f12be46..18b1d10bd8 100644
--- a/yjit/Cargo.toml
+++ b/yjit/Cargo.toml
@@ -43,3 +43,5 @@ opt-level = 3
# The extra robustness that comes from checking for arithmetic overflow is
# worth the performance cost for the compiler.
overflow-checks = true
+# Generate debug info
+debug = true