Search found 4 matches

by Chalnoth
Mon Jul 31, 2006 1:28 am
Forum: Development
Topic: Can't compile: missing libcurses
Replies: 3
Views: 4371

Nach wrote:If you have ncurses but no curses link to it, add it yourself.

Code: Select all

ln -s /usr/lib/libcurses.so /usr/lib/libncurses.so
Ah, excellent, that did the trick :)
by Chalnoth
Sat Jul 29, 2006 9:03 am
Forum: Development
Topic: Can't compile: missing libcurses
Replies: 3
Views: 4371

Can't compile: missing libcurses

Firstly, my PC got through the configure script without a hitch, but it won't compile without this library.

I'm using SLED 10, and have the vendor-supplied ncurses libraries installed, but it can't find the curses library. What is this library and where do I get it?

Thanks
by Chalnoth
Mon Jun 26, 2006 2:51 am
Forum: Development
Topic: ZSNES for X64 linux (ubuntu)
Replies: 13
Views: 43470

Excellent, works great now, thanks! Edit: Suggestion: You could add the option -m32 as a default option when compiling ZSNES in Linux. It looks like this option doesn't do anything when compiling on a 32-bit machine, but would allow those of us with 64-bit distributions to compile and run zsnes pain...
by Chalnoth
Mon Jun 26, 2006 2:29 am
Forum: Development
Topic: ZSNES for X64 linux (ubuntu)
Replies: 13
Views: 43470

Well, I got zSNES to compile on my SuSE 10.1 64-bit distribution, but it won't run. Here's what I did to get it to compile: export CLFAGS=-m32 export CXXFLAGS=-m32 ./configure make (Setting CFLAGS and CXXFLAGS each to -m32 tells the gnu compiler to output 32-bit code. NASM only supports 32-bit code,...