Hmmm. I did try setting release and I think I still got pdbs. I'll try again from a totally clean source tree and post back.

Damien

On 10-02-04 4:41 AM, Shiqing Fan wrote:

Hi Damien,

I did a clean build on my 64 bit Windows 7, but I didn't see the same problem. Could you please make sure that the CMAKE_BUILD_TYPE variable in the CMake-GUI is set to "release"? Setting "release" in Visual Studio will not change the CMake install scripts.


Thanks,
Shiqing



Damien Hocking wrote:
Hi all,

There might be some minor bugs in the 64-bit CMake Visual Studio Install project on Windows (say that 3 times fast...). When I build a 64-bit release version, the install is still set up for installing pdbs, even though it's a release build. This is for VS2008 on Windows 7, CMake 2.6.4. The offending sections are below, and the install works if you delete these sections yourself. It doesn't happen on 32-bit release installs.

opal cmake.install.cmake

IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE FILE FILES "C:/projects2/openmpi-1.4.1/build64/Debug/libopen-pald.pdb") ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")


ompi cmake.install.cmake

IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE FILE FILES "C:/projects2/openmpi-1.4.1/build64/Debug/libmpid.pdb") ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")


ompi/mpi/cxx cmake.install.cmake

IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE FILE FILES "C:/projects2/openmpi-1.4.1/build64/Debug/libmpi_cxxd.pdb") ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")

orte cmake.install.cmake

IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE FILE FILES "C:/projects2/openmpi-1.4.1/build64/Debug/libopen-rted.pdb") ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")


Damien
_______________________________________________
users mailing list
us...@open-mpi.org
http://www.open-mpi.org/mailman/listinfo.cgi/users



Reply via email to