Joel
Joel

Reputation: 30156

Maximum debug info from Steel Bank Common Lisp & Slime

What's the best way to initialise a Lisp session (I'm using Slime and sbcl) such that functions are always compiled with the maximum amount of debug information?

Upvotes: 9

Views: 1529

Answers (1)

Xach
Xach

Reputation: 11854

(sb-ext:restrict-compiler-policy 'debug 3) in the repl or your .sbclrc will do it.

Upvotes: 15

Related Questions