I am trying to compile my code in Ubuntu 11.10 and getting these errors and more.So far by googling it I think it is a linking error. Specifically, there have been suggestio
I've been having a similar problem. Basically, I can't compile wiht g++ 4.5 or g++ 4.6, so I installed g++ 4.4 and used that. This specifically solved my problem with linking to ncursesw.
# Makefile:
CXX=g++-4.4
CXXLIBS=-lncursesw
CXXFLAGS=-Wall
# Other stuff omitted