Re: [cl-opengl-devel] [Openmcl-devel] Trace/BPT trap with cl-opengl loading

2010-08-06 Thread Kevin Smith
btw, I just tried the threaded version of sbcl (1.0.39) which I built from macports and it worked with no problems with all the same code (same cffi and cl-opengl packages), including my opencv libraries. I've not investigated what sbcl (or cffi) maybe doing that is different in this case, but it

Re: [cl-opengl-devel] [Openmcl-devel] Trace/BPT trap with cl-opengl loading

2010-08-05 Thread k2msmith
Are you running this on clozure 1.5 with Snow Leopard MAC OS (ie: version 10.6.4 ) ? On Aug 5, 2010 4:36am, Alexander Repenning ra...@cs.colorado.edu wrote: XMLisp http://code.google.com/p/xmlisp/ works fine, ie, it is not an OpenGL problem. alex On Aug 2, 2010, at 4:11 AM, Kevin

Re: [cl-opengl-devel] [Openmcl-devel] Trace/BPT trap with cl-opengl loading

2010-08-02 Thread Kevin Smith
...I added the process book keeping code that I found at the bottom of the opengl-ffi.lisp example to my program, namely: (progn (ccl:process-run-function housekeeping #'ccl::housekeeping-loop) (ccl:process-interrupt ccl::*initial-process* (lambda () ;; CCL::%SET-TOPLEVEL is

Re: [cl-opengl-devel] [Openmcl-devel] Trace/BPT trap with cl-opengl loading

2010-08-02 Thread Bart Botta
On Mon, Aug 2, 2010 at 11:41 AM, Kevin Smith k2msm...@gmail.com wrote: ; Warning: Don't know how to setup a hook before saving cores on this Lisp. That warning just means you can't reliably save a core if you have called any OpenGL functions, it shouldn't affect anything for normal usage. -b-

Re: [cl-opengl-devel] [Openmcl-devel] Trace/BPT trap with cl-opengl loading

2010-08-01 Thread Kevin Smith
thank you I will give this a try in the morning..By the way, I was able to trace my problem with cl-opengl a little further to the cffi function: (cffi:load-foreign-library '(:framework OpenGL)) (called from the libraries.lisp file in cl-opengl package) I manually tried this call in the repl