File: debug_binaries

package info (click to toggle)
python-schema-salad 8.9.20250408123006-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,056 kB
  • sloc: python: 19,177; cpp: 2,631; cs: 1,869; java: 1,341; makefile: 187; xml: 184; sh: 103; javascript: 46
file content (14 lines) | stat: -rw-r--r-- 542 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Author: Michael R. Crusoe <crusoe@debian.org>
Description: build the mypyc-compiled modules with debugging information
Forwarded: not-needed
--- python-schema-salad.orig/setup.py
+++ python-schema-salad/setup.py
@@ -78,7 +78,7 @@
     from mypyc.build import mypycify
 
     opt_level = os.getenv("MYPYC_OPT_LEVEL", "3")
-    ext_modules = mypycify(mypyc_targets, opt_level=opt_level, debug_level="0", verbose=True)
+    ext_modules = mypycify(mypyc_targets, opt_level=opt_level, debug_level="2", verbose=True)
 else:
     ext_modules = []