Search found 16 matches

by punchcard
Fri Oct 17, 2014 8:44 pm
Forum: Common Lisp
Topic: clisp always seems to segfault when trying to do graphics.
Replies: 8
Views: 17167

Re: clisp always seems to segfault when trying to do graphic

Thanks for your words fella .. always nice to hear from a person suffering along with you. Lol I want to RTFM but there is no manual with most of these things. :lol: I will make it work, I know it was done before so it can be done again. Lisp was ment to be a gui, like symbolics made. If they manage...
by punchcard
Thu Oct 16, 2014 8:45 am
Forum: Common Lisp
Topic: clisp always seems to segfault when trying to do graphics.
Replies: 8
Views: 17167

Re: clisp always seems to segfault when trying to do graphic

Was sat there thinking over what you had said... Then it hit me - did I actually have the C libraries the wrapper was suposed to be binding to in the first place? :roll: Well you can imagine my homer simpson like DOH. haha I downloaded about 100megs worth of C/C++ libariries and it installed fine (s...
by punchcard
Thu Oct 16, 2014 4:27 am
Forum: Common Lisp
Topic: clisp always seems to segfault when trying to do graphics.
Replies: 8
Views: 17167

Re: clisp always seems to segfault when trying to do graphic

I am re-installing sbcl I couldn't get quicklisp to load any packages always got bizare errors. debugger invoked on a SB-INT:SIMPLE-READER-PACKAGE-ERROR in thread #<THREAD "main thread" RUNNING {1002978E23}>: Package QL does not exist. Stream: #<SYNONYM-STREAM :SYMBOL *TERMINAL-IO* {10001D...
by punchcard
Wed Oct 15, 2014 11:30 pm
Forum: Common Lisp
Topic: clisp always seems to segfault when trying to do graphics.
Replies: 8
Views: 17167

clisp always seems to segfault when trying to do graphics.

Know that clisp don't have a lot of support for gui stuff. But does anyone have some example code that works? I have looked through the library sites and even when using quicklisp in 90% of cases clisp just errors or segfaults when trying to do anything gui related. My system is debian and I don't h...
by punchcard
Tue Oct 14, 2014 11:06 pm
Forum: Common Lisp
Topic: Using an array to store commands [SOLVED]
Replies: 4
Views: 9669

Re: Using an array to store commands

Ah yes I have run into that issue before - I see now I was forcing the P-list to do somthing that I should have been doing with A-lists or hash tables with regards to strings. Still having issues doing the a-list with function calls in clisp but its early days yet. I will review the books and have a...
by punchcard
Tue Oct 14, 2014 9:39 am
Forum: Common Lisp
Topic: Using an array to store commands [SOLVED]
Replies: 4
Views: 9669

Re: Using an array to store commands

Ah as I suspected the P-list strikes back :D Cheers for that! will begin investigating.

I guess what I am looking for is function-get. But I don't think thats avaliable in clisp.... :?
by punchcard
Tue Oct 14, 2014 9:01 am
Forum: Common Lisp
Topic: cursing curses in clisp
Replies: 5
Views: 12796

Re: cursing curses in clisp

quick update, I have been expermenting with the graphics libraries in clisp and to be honest it strikes me as suffering from a lack of documentation and seems very fragile. But aside from the gui, vecto is a great little library - was able to write a poster generator and get another program that pre...
by punchcard
Tue Oct 14, 2014 8:46 am
Forum: Common Lisp
Topic: Using an array to store commands [SOLVED]
Replies: 4
Views: 9669

Using an array to store commands [SOLVED]

Hi, what I want to be able to do is make an array like this... ( "token" function "token" function "token" function "token" function) so I can search the array for a match for against the input token with the tokens in the array - if there is a match run the c...
by punchcard
Sat Oct 04, 2014 10:21 pm
Forum: Common Lisp
Topic: cursing curses in clisp
Replies: 5
Views: 12796

Re: cursing curses in clisp

Thanks I will have a play with that today.