Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread Greg Landrum
Here's an update: Using the version that's now in master (which has Paolo's pull request applied, thanks Paolo!), I was able to build and test the RDKit without unexpected problems on my windows box. James: one odd thing I notice about the error messages you posted is that they are all

Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread Paolo Tosco
Hi James, Greg, I just submitted a pull request which fixes: - one actual build failure on Windows (missing library dependency in Code/GraphMol/CMakeLists.txt) - one test failure on Windows (this was a CR+LF fix included in a previous pull request of mine which seems not to have been merged

Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread James Davidson
Hi Paolo, Unfortunately I have the impression that James' problem is related to neither of those. Might it be a boost/libboost naming issue? Perhaps, but cmake seems happy (see below)... James, could it be that you have multiple version of boost on your Windows machine and CMake is not

Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread Rich Lewis
Hi Greg, I see rdkit currently uses Travis CI, but have you considered also using a Windows specific CI server like appveyor http://www.appveyor.com/ in addition? It is free for open source projects, and may guard against problems such as that seen in this thread in future development. I think

[Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread James Davidson
Dear All, I just tried building the latest RDKit build (rev. 5204) from the github repository, and hit a lot of link errors... So (somewhat at random) I tried an older build (5042), and saw very similar things (errors for this attempt are below). I am running on 64-bit Windows, and use cmake

Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread Greg Landrum
I will fire up windows tomorrow morning and ensure that things can build. It's been a couple weeks since I last did that. -greg On Wed, Apr 8, 2015 at 3:43 PM, James Davidson j.david...@vernalis.com wrote: Dear All, I just tried building the latest RDKit build (rev. 5204) from the github

Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread James Davidson
Hi Greg – thanks! One extra piece: as of a few minutes ago, I can confirm that revision 4947 (last revision in Feb) builds, and passes all of the tests. Kind regards James From: Greg Landrum [mailto:greg.land...@gmail.com] Sent: 08 April 2015 15:14 To: James Davidson Cc:

Re: [Rdkit-discuss] Problem building recent revisions on Windows

2015-04-08 Thread Greg Landrum
That's the second pointer to appveyor on this topic. Time for me to investigate. It would be awesome to have this happen automatically like with the linux builds on Travis. -greg On Wednesday, April 8, 2015, Rich Lewis rl...@cam.ac.uk wrote: Hi Greg, I see rdkit currently uses Travis CI, but