Hello.

When I debug compiled functions, I can't inspect local variables. Is it 
supposed to work so, or it's a bug or maybe I am doing something wrong?

For example this functions. After compilation, locals are not available in the 
debugger:


(defun test(a b c)
  (declare (optimize (debug 3) (speed 0) (safety 0)))
  (let ((x a) (y b) (z c))
    (test2 x y z)))

(defun test2 (a b c)
  (break))

(Actually I am trying to debug the ASDF bundled with ECL, because I want to 
tweak it's behavior a little). 

Best regards,
- Anton

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list

Reply via email to