Trouble building 1.9.0 beta on Cygwin

Added by Richard Querin 175 days ago

Hey guys,

I'm trying to build the new beta on Cygwin and running into a little problem. When I do the ./configure, it stops at an error telling me that the C++ compiler cannot create executables? I've built many versions of Task before on cygwin without problem (last one I built was 1.8.2.. I know, tsk tsk on me. ;) )

Anyways, I've attached my config.log file in hopes someone can tell me what silly stupid thing I haven't done correctly this time out. It has been a while since I built anything on Cygwin. Desperate to try out the beta.

config.log (8.4 KB)


Replies

RE: Trouble building 1.9.0 beta on Cygwin - Added by Paul Beckingham 174 days ago

Richard,

I ran through a build of 1.9.0 beta 1 on Cygwin without problem. That means it points back to your config.log file, which claims it doesn't have g++ or gcc installed. Could you check that by running this command:

$ g++
g++: no input files

If it says "no input files" like this, then I'm wrong, but I think you're going to have to run the Cygwin setup program, and make sure that both gcc and g++ are installed. The Cygwin setup program is not destructive - it will launch and show you what's installed, and you can check more boxes (like gcc, g++) and it will install those. Don't uncheck anything. It might also be good to make sure ncurses in installed.

Paul

RE: Trouble building 1.9.0 beta on Cygwin - Added by Richard Querin 174 days ago

Thanks so much Paul. I'm not sure what had changed from 1.8.2.. because I built that fine previously. But I definitely was missing the g++ package. I've upgraded my Cygwin install and it built fine. Thanks so much for the quick response.

Now to figure out how to turn on the alternating line shading. :)

RE: Trouble building 1.9.0 beta on Cygwin - Added by Mark Srebnik 123 days ago

Hope it's OK to piggyback off of this thread...

I just tried installing 1.9.0 on my new little laptop running Win7 using Cygwin...install went OK until the 'make install' step...starts OK but then get message that 'ncurses.h: No such file or directory...but I do have libncurses-devel and libncurses8 installed....

Any suggestions?

Thanks.

Mark

RE: Trouble building 1.9.0 beta on Cygwin - Added by Paul Beckingham 123 days ago

Hi Mark,

Check out the new README.build file, and see if the instructions in there work for you. If not, we we'll work through it.

RE: Trouble building 1.9.0 beta on Cygwin - Added by Mark Srebnik 123 days ago

*That did it, Paul...

./configure --with-ncurses-inc=/usr/include/ncurses

Thanks!

Mark

*

RE: Trouble building 1.9.0 beta on Cygwin - Added by Paul Beckingham 123 days ago

Glad to hear it, Mark.