Re: CMake v2.6.1 Segfault

2008-09-19 Thread Allen Winter
more info..
(you may recall I had this crash before)

I narrowed the crash down to this call:
  FILE(RPATH_CHECK
   FILE $ENV{DESTDIR}/data/kde/lib/kde4/kontact_summaryplugin.so
   RPATH /data/kde/lib:/data/kde/lib:/usr/local/lib)

If I remove /data/kde/lib/kde4/kontact_summaryplugin.so and start over -- no 
crash.

I will send that kontact_summaryplugin.so to whoever might want it for 
debugging purposes.
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: CMake v2.6.1 Segfault

2008-09-19 Thread Brad King
Allen Winter wrote:
 more info..
 (you may recall I had this crash before)
 
 I narrowed the crash down to this call:
   FILE(RPATH_CHECK
FILE $ENV{DESTDIR}/data/kde/lib/kde4/kontact_summaryplugin.so
RPATH /data/kde/lib:/data/kde/lib:/usr/local/lib)
 
 If I remove /data/kde/lib/kde4/kontact_summaryplugin.so and start over -- no 
 crash.
 
 I will send that kontact_summaryplugin.so to whoever might want it for 
 debugging purposes.

I think I already fixed this in CMake HEAD from CVS.  Can you try a
2.6.2 release candidate?

http://www.cmake.org/files/v2.6/

Thanks,
-Brad
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


CMake v2.6.1 Segfault

2008-09-19 Thread Allen Winter
In kdepim/kontact builddir,  running cmake -P cmake_install.cmake segfaults.
I attach the cmake_install.cmake file

% cmake -P cmake_install.cmake 
-- Install configuration: Debugfull
-- Up-to-date: /data/kde/lib/kde4/kontact_kaddressbookplugin.so
-- Up-to-date: /data/kde/share/kde4/services/kontact/kaddressbookplugin.desktop
-- Up-to-date: /data/kde/share/apps/kontact/ksettingsdialog/kaddressbook.setdlg
-- Up-to-date: /data/kde/lib/kde4/kontact_kmailplugin.so
-- Up-to-date: /data/kde/lib/kde4/kcm_kmailsummary.so
-- Up-to-date: /data/kde/share/kde4/services/kontact/kmailplugin.desktop
-- Up-to-date: /data/kde/share/kde4/services/kcmkmailsummary.desktop
-- Up-to-date: /data/kde/share/apps/kontact/ksettingsdialog/kmail.setdlg
-- Up-to-date: /data/kde/lib/kde4/kcm_apptsummary.so
-- Up-to-date: /data/kde/lib/kde4/kcm_todosummary.so
-- Up-to-date: /data/kde/lib/kde4/kontact_korganizerplugin.so
-- Up-to-date: /data/kde/lib/kde4/kontact_todoplugin.so
-- Up-to-date: /data/kde/lib/kde4/kontact_journalplugin.so
-- Up-to-date: /data/kde/share/kde4/services/kontact/korganizerplugin.desktop
-- Up-to-date: /data/kde/share/kde4/services/kontact/todoplugin.desktop
-- Up-to-date: /data/kde/share/kde4/services/kontact/journalplugin.desktop
-- Up-to-date: /data/kde/share/kde4/services/kcmapptsummary.desktop
-- Up-to-date: /data/kde/share/kde4/services/kcmtodosummary.desktop
-- Up-to-date: /data/kde/share/apps/kontact/ksettingsdialog/korganizer.setdlg
Segmentation fault
# Install script for directory: /data/kde/trunk/KDE/kdepim/kontact

# Set the install prefix
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
  SET(CMAKE_INSTALL_PREFIX /data/kde)
ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
STRING(REGEX REPLACE /$  CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})

# Set the install configuration name.
IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
  IF(BUILD_TYPE)
STRING(REGEX REPLACE ^[^A-Za-z0-9_]+ 
   CMAKE_INSTALL_CONFIG_NAME ${BUILD_TYPE})
  ELSE(BUILD_TYPE)
SET(CMAKE_INSTALL_CONFIG_NAME Debugfull)
  ENDIF(BUILD_TYPE)
  MESSAGE(STATUS Install configuration: \${CMAKE_INSTALL_CONFIG_NAME}\)
ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)

# Set the component getting installed.
IF(NOT CMAKE_INSTALL_COMPONENT)
  IF(COMPONENT)
MESSAGE(STATUS Install component: \${COMPONENT}\)
SET(CMAKE_INSTALL_COMPONENT ${COMPONENT})
  ELSE(COMPONENT)
SET(CMAKE_INSTALL_COMPONENT)
  ENDIF(COMPONENT)
ENDIF(NOT CMAKE_INSTALL_COMPONENT)

# Install shared libraries without execute permission?
IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
  SET(CMAKE_INSTALL_SO_NO_EXE 0)
ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)

IF(NOT CMAKE_INSTALL_LOCAL_ONLY)
  # Include the install script for each subdirectory.
  INCLUDE(/data/kde/trunk/KDE/kdepim/build-gcc/kontact/plugins/cmake_install.cmake)
  INCLUDE(/data/kde/trunk/KDE/kdepim/build-gcc/kontact/src/cmake_install.cmake)
  INCLUDE(/data/kde/trunk/KDE/kdepim/build-gcc/kontact/pics/cmake_install.cmake)

ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY)

___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem