Re: [cmake-developers] Cannot control the name of dependfile set in Ninja generator

2018-01-27 Thread Christian Pfeiffer
Hi Claus, That GitHub repository is a read-only mirror of the GitLab, where all the work takes place: https://gitlab.kitware.com/cmake/cmake . Please see https://gitlab.kitware.com/cmake/cmake/blob/master/CONTRIBUTING.rst on how to submit merge requests. Chris From: Claus Klein

Re: [cmake-developers] Implicit library trouble with mixed languages

2017-05-04 Thread Christian Pfeiffer
On 5/3/2017 5:25 PM, Brad King wrote: > On 05/02/2017 05:47 PM, Christian Pfeiffer wrote: >> Before filtering, gcc's output gives me the libgcc and libgcc_s twice. > I think we already de-duplicate the results after extraction. This only happens for the implicit library directori

Re: [cmake-developers] Implicit library trouble with mixed languages

2017-05-02 Thread Christian Pfeiffer
On 5/2/2017 6:52 PM, Brad King wrote: > On 05/02/2017 11:48 AM, Christian Pfeiffer wrote: >> turn depends on libgcc_s. Any library starting with 'gcc' is being >> ignored in CMakeParseImplicitLinkInfo.cmake L.136, so libgcc_s is being >> stripped from the commandlin

[cmake-developers] Implicit library trouble with mixed languages

2017-05-02 Thread Christian Pfeiffer
Hi folks, I've tried to link some code built with GNU G++ together with the PGI Fortran compiler as linker. However, G++ pulls in libstdc++, which in turn depends on libgcc_s. Any library starting with 'gcc' is being ignored in CMakeParseImplicitLinkInfo.cmake L.136, so libgcc_s is being strip

Re: [cmake-developers] Adding Microsoft MPI Fortran support in FindMPI

2017-04-26 Thread Christian Pfeiffer
I reckon it might be better to ignore the Fortran 90 module API for now. Adding a function for that would mean that the linked target has to be visible everywhere where the MPI package is being used with Fortran. Not to mention that all projects using the F90 module API then would need to have e

Re: [cmake-developers] [Feature Request] Fortran standards compliance for various compilers

2017-04-22 Thread Christian Pfeiffer
On 4/22/2017 7:33 AM, C Bergström wrote: > On Thu, Apr 20, 2017 at 4:12 AM, Alan W. Irwin > wrote: >> On 2017-04-19 07:27+0200 Rolf Eike Beer wrote: >> What would really be useful is a list containing what Fortran features from the Fortran 2003 and 2008 standards that the given Fo