Changes between Initial Version and Version 1 of Ticket #49058, comment 18


Ignore:
Timestamp:
Nov 10, 2015, 8:47:56 PM (8 years ago)
Author:
dstrubbe (David Strubbe)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #49058, comment 18

    initial v1  
    33This part, and your preferred way of managing the directory structure, committed in r142365. (Let me point out that the cmake portgroup always specifies the directory explicitly in the configure step anyway. Take a look at the command it executes, which will end in ${worksrcpath}.)
    44
    5 Your fix for BEM is a good start but insufficient: the build automatically detects a Fortran compiler, not necessarily gcc5. In my case it found and used g95, which failed to link with the gcc5 library not surprisingly. More patching is needed. The ultimate problem is that configure gets run
     5Your fix for BEM is a good start but insufficient: the build automatically detects a Fortran compiler, not necessarily gcc5. In my case it found and used g95, which failed to link with the gcc5 library not surprisingly. More patching is needed.
    66
    77The lines you added about include paths have no effect: "-I${prefix}/include" is the default so it's already used; "-I${worksrcpath}/include" does not exist as a path. Such things (when needed) are really supposed to go into CFLAGS not the C compiler command directly, anyway.