Re: [CMake] FindMPI.cmake in 3.11.4

2018-09-17 Thread Burlen Loring
one override the module and tell it what to use? On 09/14/2018 12:30 PM, Mateusz Loskot wrote: On Fri, 14 Sep 2018 at 20:57, Burlen Loring wrote: why did they MPI_C_LIBRARIES and MPI_C_INCLUDE_DIRS/PATH get changed from cache variables to not chached variables? Possibly, that change was due

Re: [CMake] FindMPI.cmake in 3.11.4

2018-09-17 Thread Burlen Loring
Hi Chuck, I have a an install of mpi that has no compiler wrappers. I know the include dir and the list of libraries to use. How do I tell the new cmake module? Is it no longer supported to tell the module what to use for these? Burlen On 09/17/2018 06:46 AM, Chuck Atkins wrote: Hi Burlen

Re: [CMake] FindMPI.cmake in 3.11.4

2018-09-14 Thread Burlen Loring
Computing Kitware, Inc. (518) 881-1183 On Thu, Sep 13, 2018 at 4:46 PM Burlen Loring <mailto:burlen.lor...@gmail.com>> wrote: Hi, I'm trying to transition from cmake 3.8.2 to cmake 3.11.4. There are a number of changes the way FindMPI.cmake behaves in 3.11 that are

[CMake] FindMPI.cmake in 3.11.4

2018-09-13 Thread Burlen Loring
Hi, I'm trying to transition from cmake 3.8.2 to cmake 3.11.4. There are a number of changes the way FindMPI.cmake behaves in 3.11 that are making this difficult. In 3.11 how do I override the settings? For instance I want to set MPI_C_LIBRARIES, MPI_C_INCLUDE_DIRS? In 3.8 all I had to do

[CMake] integrating cmake configured library with other GNU based build system?

2018-05-25 Thread Burlen Loring
Hi All, Can cmake generate .pc files? Can cmake generate .la files (gnu convenience libraries)? Cmake internally generates all the requisite info, how can it be accessed? I have to integrate a cmake based library into a GNUMake build. The project has a cmake config file

[CMake] Imported targets not available for Boost version

2017-06-30 Thread Burlen Loring
I have the above error after having to upgrade CMake on my Mac. I have read posts on SO and this list about this issue, stating that it is caused by Boost release being newer than Cmake. However it seems that it is also can be caused by Boost release being older than CMake since this version

Re: [CMake] fortran module name issue

2017-06-26 Thread Burlen Loring
Hi Juan, I have faced similar challenges when calling Fortran code from C++ templates. In the solution I came up with, I use a marked up Fortran template code and Cmake's configure_file command to generate a module for each combination of C++ types I need. The markup uses a token for each

Re: [CMake] No FortranCInterface mangling known for VerifyFortran -- OSX Sierra

2017-06-02 Thread Burlen Loring
upgrading from cmake 3.7.1 to cmake version 3.8.2 resolved the issue. On 06/02/2017 11:53 AM, Burlen Loring wrote: After upgrading to latest XCode and command line tools on OSX Sierra our project that uses CMake to mix C++ and Fortran fails to configure. Full output below. Any ideas? here

[CMake] No FortranCInterface mangling known for VerifyFortran -- OSX Sierra

2017-06-02 Thread Burlen Loring
After upgrading to latest XCode and command line tools on OSX Sierra our project that uses CMake to mix C++ and Fortran fails to configure. Full output below. Any ideas? here are version cmake version 3.7.1 GNU Fortran (Homebrew GCC 7.1.0) 7.1.0 Apple LLVM version 8.1.0

[CMake] default release build flags

2016-04-28 Thread Burlen Loring
Hi Guys, I'd like to discuss changing the defaults of CMAKE_C/CXX_FLAGS_RELEASE on gcc, and potentially gcc like compilers such as clang and intel. Currently the default is "-O3 -DNDEBUG". I would like to discuss changing this to "-O3 -march=native -mtune=native -DNDEBUG". This change will

[CMake] empty string and cmake_parse_arguments

2016-01-09 Thread Burlen Loring
Is it possible to pass "" (an empty string) through cmake_parse_arguments? I'm using cmake 3.4.0. I found much discussion of a patch to do this in a thread on the cmake developer list. however, cmake_parse_arguments still eats the "", and I am finding no official documentation about it.

Re: [CMake] PythonInterp and PythonLibs find different versions on Apple

2015-12-30 Thread Burlen Loring
After digging though a number of closed bug reports I found an open issue in mantis that describes the problem exactly and has a number of proposed solution. I took one of them(c39236) and this seems to do the trick. https://cmake.org/Bug/view.php?id=14809 On 12/23/2015 08:54 AM, Burlen

Re: [CMake] cmake 3.4.1 bootstrap compile error

2015-12-24 Thread Burlen Loring
I found that there is an install of gcc in /usr/local/ and this was causing the issue. once I removed that things went smoothly. On 12/23/2015 09:00 AM, Burlen Loring wrote: I tried to download and compile 3.4.1 on Apple 10.10.5. I did ./configure prefix=blah && make here is t

[CMake] PythonInterp and PythonLibs find different versions on Apple

2015-12-23 Thread Burlen Loring
Hi, I'm having this issue that cmake using version 3.3.0. Python detection is finding different versions of interpreter and libraries. There are two version of Python installed, system one and homebrew one. cmake finds Interpreter from homebrew while libs are from system install. Here's my

[CMake] cmake 3.4.1 bootstrap compile error

2015-12-23 Thread Burlen Loring
I tried to download and compile 3.4.1 on Apple 10.10.5. I did ./configure prefix=blah && make here is the error: g++ -I/Users/bloring/apps/cmake/builds/cmake-3.4.1/Bootstrap.cmk -I/Users/bloring/apps/cmake/builds/cmake-3.4.1/Source

[CMake] disable interactive image ?

2014-11-17 Thread Burlen Loring
Hi, after upgrading to cdash 2.2.2 I'm having issues re: the Interactive Image display for image diffs when there are more than 1 set of images in a test. Here's an example: http://visit.cdash.lbl.gov/testDetails.php?test=1028748build=3413 It looks like it may be grabbing the wrong valid

[CMake] cdash/ctest multi test reports

2014-05-22 Thread Burlen Loring
Hi All, I'm converting an existing test system over to ctest, one complaint the developers have is that cdash moves all of the test images up to the top of the page (see link below). In our tests each test has a large number of image compares. with images all at the top it's a challenge to

[CMake] cmake with intel compilers

2012-09-23 Thread Burlen Loring
Hi, When I'm using intel compilers cmake is missing some of the internal compiler include paths. When I use intel compilers with cmake I'm setting CMAKE_CXX_COMPILER and CMAKE_C_COMPILER. One path that's missed is $INTEL_ROOT/include/intel64 which among others contains xmm intriniscs

Re: [CMake] cmake with intel compilers

2012-09-23 Thread Burlen Loring
I'm not having the issue with a newer version of intel compiler and cmake 2.8.8. I'm concluding that this is not an issue in current releases. Burlen On 9/23/2012 9:08 AM, Burlen Loring wrote: Hi, When I'm using intel compilers cmake is missing some of the internal compiler include paths

Re: [CMake] cmake with intel compilers

2012-09-23 Thread Burlen Loring
. There are no *INCLUDE* env vars set, however CC,CPP,CXX,F90 etc are set correctly to point at the intel compilers. On 9/23/2012 10:39 AM, Burlen Loring wrote: I'm not having the issue with a newer version of intel compiler and cmake 2.8.8. I'm concluding that this is not an issue in current