From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Tim Sander Date: Wed, 20 Nov 2013 22:18:54 +0100 Message-ID: <2802670.4rTpZPOmFB@hydra> In-Reply-To: <20131120075321.GM31417@pengutronix.de> References: <11084087.6xZikGZSvc@hydra> <20131120075321.GM31417@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] raspberry pi distrokit & cmake question Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de Cc: Michael Olbrich Hi Michael Thanks for your hints. > On Wed, Nov 20, 2013 at 12:21:09AM +0100, Tim Sander wrote: > > As one of my private tinkering projects I have a rather nice distrokit > > based ptxdist rpi repository on: > > > > https://gitorious.org/ptxdist-raspberry-pi > > > > I thought it might be of interest some of you. > > > > It has pretty recent software like qt5.2-beta and opencv. > > Its based on distrokit but i kicked out the submodules and integrated it > > into one repository as i found it much easier to use. > > > > No i would like to compile the sample which comes with raspicam: > > CMakeLists.txt: > > > > cmake_minimum_required (VERSION 2.8) > > project (raspicam_test) > > find_package(raspicam REQUIRED) > > add_executable (simpletest_raspicam simpletest_raspicam.cpp) > > target_link_libraries (simpletest_raspicam ${raspicam_LIBS}) > > > > But cmake tells me that: > > Could not find a package configuration file provided by "raspicam" with > > any > > of the following names: raspicamConfig.cmake > > > > find -name raspicamConfig.cmake > > ./platform- > > raspberrypi/packages/raspicam-0.0.3/usr/lib/cmake/raspicamConfig.cmake > > ./platform-raspberrypi/build-target/raspicam-0.0.3-build/raspicamConfig.cm > > ake > > ./platform-raspberrypi/sysroot-target/usr/lib/cmake/raspicamConfig.cmake > > > > Especally the last line looks like a reasonable place to put such a file. > > But still with the rules in > > raspicamtest.make fail to locate the raspicamConfig.cmake file. > > RASPICAMTEST_CONF_TOOL := cmake > > RASPICAMTEST_CONF_OPT := $(CROSS_CMAKE_USR) > > I think it should work. Try with more debugging: start ptxdist with "-" and > add "--trace" (I think) to RASPICAMTEST_CONF_OPT. cmake should tell you > more about what it's doing. I had my problems starting ptxdist with "-" but the trace gave an awful lot of cmake debug output which is appended. As far as i understand CMAKE_MODULE_PATH should be set? But i can't find this variable in the output log? Unfortunatly my cmake foo is pretty weak. So i am confused if i need another FindRaspicam.cmake file as described there http://www.cmake.org/Wiki/CMake:How_To_Find_Libraries or if the pathes (which look good to me on the first glimpse) are wrong. Best regards Tim ---------------------------- target: raspicamtest.prepare ---------------------------- Running with trace output on. Re-run cmake no build system arguments /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3/CMakeLists.txt(1): cmake_minimum_required(VERSION 2.8 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3/CMakeLists.txt(2): project(raspicam_test ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeUnixFindMake.cmake(15): find_program(CMAKE_MAKE_PROGRAM NAMES gmake make smake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeUnixFindMake.cmake(16): mark_as_advanced(CMAKE_MAKE_PROGRAM ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(45): if(CMAKE_HOST_UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(46): find_program(CMAKE_UNAME uname /bin /usr/bin /usr/local/bin ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(47): if(CMAKE_UNAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(48): exec_program(uname ARGS -s OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(49): exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(50): if(CMAKE_HOST_SYSTEM_NAME MATCHES Linux|CYGWIN.* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(51): exec_program(uname ARGS -m OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR RETURN_VALUE val ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(65): if(${val} GREATER 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(68): set(CMAKE_UNAME ${CMAKE_UNAME} CACHE INTERNAL uname command ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(70): string(REGEX REPLACE \" CMAKE_HOST_SYSTEM_PROCESSOR ${CMAKE_HOST_SYSTEM_PROCESSOR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(71): string(REGEX REPLACE / _ CMAKE_HOST_SYSTEM_PROCESSOR ${CMAKE_HOST_SYSTEM_PROCESSOR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(88): if(CMAKE_TOOLCHAIN_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(90): include(${CMAKE_BINARY_DIR}/${CMAKE_TOOLCHAIN_FILE} OPTIONAL RESULT_VARIABLE _INCLUDED_TOOLCHAIN_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(91): if(NOT _INCLUDED_TOOLCHAIN_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(93): include(${CMAKE_TOOLCHAIN_FILE} OPTIONAL RESULT_VARIABLE _INCLUDED_TOOLCHAIN_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(4): SET(CMAKE_SYSTEM_NAME Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(7): SET(CMAKE_SYSTEM_VERSION 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(10): SET(CMAKE_SYSTEM_PROCESSOR arm ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(13): SET(CMAKE_C_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-gcc ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(14): SET(CMAKE_CXX_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-g++ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(17): SET(CMAKE_FIND_ROOT_PATH /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target /bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/sysroot-arm-1136jfs-linux-gnueabihf ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(20): include_directories(/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/include /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/usr/include ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(21): link_directories(/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/lib /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/usr/lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(24): SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(27): SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(28): SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(96): if(_INCLUDED_TOOLCHAIN_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(97): set(CMAKE_TOOLCHAIN_FILE ${_INCLUDED_TOOLCHAIN_FILE} CACHE FILEPATH The CMake toolchain file FORCE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(108): if(CMAKE_SYSTEM_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(109): if(NOT DEFINED CMAKE_CROSSCOMPILING ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(110): set(CMAKE_CROSSCOMPILING TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(112): set(PRESET_CMAKE_SYSTEM_NAME TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(128): macro(ADJUST_CMAKE_SYSTEM_VARIABLES _PREFIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(157): ADJUST_CMAKE_SYSTEM_VARIABLES(CMAKE_SYSTEM ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(129): if(NOT CMAKE_SYSTEM_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(134): if(CMAKE_SYSTEM_NAME MATCHES BSD.OS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(139): if(CMAKE_SYSTEM_NAME MATCHES kFreeBSD ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(144): if(CMAKE_SYSTEM_NAME MATCHES CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(149): set(CMAKE_SYSTEM ${CMAKE_SYSTEM_NAME} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(151): if(CMAKE_SYSTEM_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(152): set(CMAKE_SYSTEM ${CMAKE_SYSTEM}-${CMAKE_SYSTEM_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(158): ADJUST_CMAKE_SYSTEM_VARIABLES(CMAKE_HOST_SYSTEM ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(129): if(NOT CMAKE_HOST_SYSTEM_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(134): if(CMAKE_HOST_SYSTEM_NAME MATCHES BSD.OS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(139): if(CMAKE_HOST_SYSTEM_NAME MATCHES kFreeBSD ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(144): if(CMAKE_HOST_SYSTEM_NAME MATCHES CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(149): set(CMAKE_HOST_SYSTEM ${CMAKE_HOST_SYSTEM_NAME} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(151): if(CMAKE_HOST_SYSTEM_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(152): set(CMAKE_HOST_SYSTEM ${CMAKE_HOST_SYSTEM}-${CMAKE_HOST_SYSTEM_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(162): if(CMAKE_BINARY_DIR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(164): if(PRESET_CMAKE_SYSTEM_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(165): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log The target system is: ${CMAKE_SYSTEM_NAME} - ${CMAKE_SYSTEM_VERSION} - ${CMAKE_SYSTEM_PROCESSOR}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(167): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log The host system is: ${CMAKE_HOST_SYSTEM_NAME} - ${CMAKE_HOST_SYSTEM_VERSION} - ${CMAKE_HOST_SYSTEM_PROCESSOR}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(176): set(INCLUDE_CMAKE_TOOLCHAIN_FILE_IF_REQUIRED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(177): if(DEFINED CMAKE_TOOLCHAIN_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(178): set(INCLUDE_CMAKE_TOOLCHAIN_FILE_IF_REQUIRED include(\"${CMAKE_TOOLCHAIN_FILE}\") ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake(182): configure_file(${CMAKE_ROOT}/Modules/CMakeSystem.cmake.in ${CMAKE_PLATFORM_INFO_DIR}/CMakeSystem.cmake IMMEDIATE @ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(1): include(/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(4): SET(CMAKE_SYSTEM_NAME Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(7): SET(CMAKE_SYSTEM_VERSION 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(10): SET(CMAKE_SYSTEM_PROCESSOR arm ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(13): SET(CMAKE_C_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-gcc ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(14): SET(CMAKE_CXX_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-g++ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(17): SET(CMAKE_FIND_ROOT_PATH /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target /bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/sysroot-arm-1136jfs-linux-gnueabihf ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(20): include_directories(/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/include /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/usr/include ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(21): link_directories(/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/lib /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/usr/lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(24): SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(27): SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/state/config/toolchain-target.cmake(28): SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(3): set(CMAKE_SYSTEM Linux-1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(4): set(CMAKE_SYSTEM_NAME Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(5): set(CMAKE_SYSTEM_VERSION 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(6): set(CMAKE_SYSTEM_PROCESSOR arm ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(8): set(CMAKE_HOST_SYSTEM Linux-3.12.0-00048-gbe408cd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(9): set(CMAKE_HOST_SYSTEM_NAME Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(10): set(CMAKE_HOST_SYSTEM_VERSION 3.12.0-00048-gbe408cd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(11): set(CMAKE_HOST_SYSTEM_PROCESSOR x86_64 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(13): set(CMAKE_CROSSCOMPILING TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeSystem.cmake(15): set(CMAKE_SYSTEM_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(34): include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompiler.cmake(15): macro(_cmake_find_compiler lang ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(37): include(Platform/${CMAKE_SYSTEM_NAME}-C OPTIONAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(38): if(NOT CMAKE_C_COMPILER_NAMES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(39): set(CMAKE_C_COMPILER_NAMES cc ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(42): if(${CMAKE_GENERATOR} MATCHES Visual Studio ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(43): elseif(${CMAKE_GENERATOR} MATCHES Xcode ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(45): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(46): if(NOT CMAKE_C_COMPILER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(74): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(81): list(LENGTH CMAKE_C_COMPILER _CMAKE_C_COMPILER_LIST_LENGTH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(82): if(${_CMAKE_C_COMPILER_LIST_LENGTH} EQUAL 2 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(92): get_filename_component(_CMAKE_USER_C_COMPILER_PATH ${CMAKE_C_COMPILER} PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(93): if(NOT _CMAKE_USER_C_COMPILER_PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(101): mark_as_advanced(CMAKE_C_COMPILER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(106): set(CMAKE_C_COMPILER_ID_TEST_FLAGS -c -Aa ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(116): if(NOT CMAKE_C_COMPILER_ID_RUN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(117): set(CMAKE_C_COMPILER_ID_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(120): set(CMAKE_C_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(121): file(READ ${CMAKE_ROOT}/Modules/CMakePlatformId.h.in CMAKE_C_COMPILER_ID_PLATFORM_CONTENT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(123): include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(19): function(CMAKE_DETERMINE_COMPILER_ID lang flagvar src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(87): function(CMAKE_DETERMINE_COMPILER_ID_WRITE lang src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(96): function(CMAKE_DETERMINE_COMPILER_ID_BUILD lang testflags src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(309): function(CMAKE_DETERMINE_COMPILER_ID_CHECK lang file ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(407): function(CMAKE_DETERMINE_COMPILER_ID_VENDOR lang ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(124): CMAKE_DETERMINE_COMPILER_ID(C CFLAGS CMakeCCompilerId.c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(21): string(STRIP ${CMAKE_${lang}_COMPILER_ARG1} CMAKE_${lang}_COMPILER_ID_ARG1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(22): string(REGEX REPLACE + ; CMAKE_${lang}_COMPILER_ID_ARG1 ${CMAKE_${lang}_COMPILER_ID_ARG1} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(25): if(CMAKE_${lang}_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(27): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(28): set(CMAKE_${lang}_COMPILER_ID_FLAGS $ENV{${flagvar}} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(30): string(REGEX REPLACE ; CMAKE_${lang}_COMPILER_ID_FLAGS_LIST ${CMAKE_${lang}_COMPILER_ID_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(33): set(CMAKE_${lang}_COMPILER_ID_DIR ${CMAKE_PLATFORM_INFO_DIR}/CompilerId${lang} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(37): foreach(flags ${CMAKE_${lang}_COMPILER_ID_TEST_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(38): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(39): CMAKE_DETERMINE_COMPILER_ID_BUILD(${lang} ${flags} ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(98): file(REMOVE_RECURSE ${CMAKE_${lang}_COMPILER_ID_DIR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(99): file(MAKE_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(100): CMAKE_DETERMINE_COMPILER_ID_WRITE(${lang} ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(88): file(READ ${CMAKE_ROOT}/Modules/${src}.in ID_CONTENT_IN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(89): string(CONFIGURE ${ID_CONTENT_IN} ID_CONTENT_OUT @ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(90): file(WRITE ${CMAKE_${lang}_COMPILER_ID_DIR}/${src} ${ID_CONTENT_OUT} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(103): set(COMPILER_DESCRIPTION Compiler: ${CMAKE_${lang}_COMPILER} ${CMAKE_${lang}_COMPILER_ID_ARG1} Build flags: ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST} Id flags: ${testflags} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(110): if(${CMAKE_GENERATOR} MATCHES Visual Studio ([0-9]+) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(175): elseif(${CMAKE_GENERATOR} MATCHES Xcode ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(223): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(224): if(COMMAND EXECUTE_PROCESS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(225): execute_process(COMMAND ${CMAKE_${lang}_COMPILER} ${CMAKE_${lang}_COMPILER_ID_ARG1} ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST} ${testflags} ${src} WORKING_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR} OUTPUT_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT ERROR_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT RESULT_VARIABLE CMAKE_${lang}_COMPILER_ID_RESULT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(250): if(CMAKE_${lang}_COMPILER_ID_RESULT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(267): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(269): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Compiling the ${lang} compiler identification source file \"${src}\" succeeded. ${COMPILER_DESCRIPTION} The output was: ${CMAKE_${lang}_COMPILER_ID_RESULT} ${CMAKE_${lang}_COMPILER_ID_OUTPUT} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(280): file(GLOB files RELATIVE ${CMAKE_${lang}_COMPILER_ID_DIR} ${CMAKE_${lang}_COMPILER_ID_DIR}/* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(283): list(REMOVE_ITEM files ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(284): set(COMPILER_${lang}_PRODUCED_FILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(285): foreach(file ${files} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(286): if(NOT IS_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}/${file} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(287): list(APPEND COMPILER_${lang}_PRODUCED_FILES ${file} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(288): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Compilation of the ${lang} compiler identification source \" ${src}\" produced \"${file}\"\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(294): if(NOT COMPILER_${lang}_PRODUCED_FILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(304): set(COMPILER_${lang}_PRODUCED_FILES ${COMPILER_${lang}_PRODUCED_FILES} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(40): foreach(file ${COMPILER_${lang}_PRODUCED_FILES} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(41): CMAKE_DETERMINE_COMPILER_ID_CHECK(${lang} ${CMAKE_${lang}_COMPILER_ID_DIR}/${file} ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(311): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(313): set(COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(314): set(COMPILER_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(315): set(PLATFORM_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(316): file(STRINGS ${file} CMAKE_${lang}_COMPILER_ID_STRINGS LIMIT_COUNT 4 REGEX INFO: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(318): set(HAVE_COMPILER_TWICE 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(319): foreach(info ${CMAKE_${lang}_COMPILER_ID_STRINGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(321): if(COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(324): string(REGEX REPLACE .*INFO:compiler\\[([^]]*)\\].* \\1 COMPILER_ID ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(336): string(REGEX REPLACE .*INFO:compiler_version\\[([^]]*)\\].* \\1 COMPILER_VERSION ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(337): string(REGEX REPLACE ^0+([0-9]) \\1 COMPILER_VERSION ${COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(338): string(REGEX REPLACE \\.0+([0-9]) .\\1 COMPILER_VERSION ${COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(328): string(REGEX REPLACE .*INFO:platform\\[([^]]*)\\].* \\1 PLATFORM_ID ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(332): string(REGEX REPLACE .*INFO:arch\\[([^]]*)\\].* \\1 ARCHITECTURE_ID ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(343): if(COMPILER_ID AND NOT COMPILER_ID_TWICE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(344): set(CMAKE_${lang}_COMPILER_ID ${COMPILER_ID} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(345): set(CMAKE_${lang}_PLATFORM_ID ${PLATFORM_ID} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(346): set(MSVC_${lang}_ARCHITECTURE_ID ${ARCHITECTURE_ID} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(347): set(CMAKE_${lang}_COMPILER_VERSION ${COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(351): if(CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(353): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log The ${lang} compiler identification is ${CMAKE_${lang}_COMPILER_ID}, found in \" ${file}\"\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(365): if(NOT CMAKE_EXECUTABLE_FORMAT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(366): file(READ ${file} CMAKE_EXECUTABLE_MAGIC LIMIT 4 HEX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(369): if(${CMAKE_EXECUTABLE_MAGIC} STREQUAL 7f454c46 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(370): set(CMAKE_EXECUTABLE_FORMAT ELF CACHE INTERNAL Executable file format ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(387): if(NOT DEFINED CMAKE_EXECUTABLE_FORMAT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(391): set(CMAKE_${lang}_COMPILER_ID ${CMAKE_${lang}_COMPILER_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(392): set(CMAKE_${lang}_PLATFORM_ID ${CMAKE_${lang}_PLATFORM_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(393): set(MSVC_${lang}_ARCHITECTURE_ID ${MSVC_${lang}_ARCHITECTURE_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(395): set(CMAKE_${lang}_COMPILER_VERSION ${CMAKE_${lang}_COMPILER_VERSION} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(396): set(CMAKE_EXECUTABLE_FORMAT ${CMAKE_EXECUTABLE_FORMAT} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(38): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(38): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(47): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(52): if(NOT CMAKE_EXECUTABLE_FORMAT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(57): if(CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(58): if(CMAKE_${lang}_COMPILER_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(59): set(_version ${CMAKE_${lang}_COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(63): message(STATUS The ${lang} compiler identification is ${CMAKE_${lang}_COMPILER_ID}${_version} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(70): if(NOT CMAKE_${lang}_COMPILER ) -- The C compiler identification is GNU 4.7.2 /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(78): set(CMAKE_${lang}_COMPILER_ID ${CMAKE_${lang}_COMPILER_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(79): set(CMAKE_${lang}_PLATFORM_ID ${CMAKE_${lang}_PLATFORM_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(80): set(MSVC_${lang}_ARCHITECTURE_ID ${MSVC_${lang}_ARCHITECTURE_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(82): set(CMAKE_${lang}_COMPILER_VERSION ${CMAKE_${lang}_COMPILER_VERSION} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(127): if(${CMAKE_C_COMPILER_ID} MATCHES GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(128): set(CMAKE_COMPILER_IS_GNUCC 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(130): if(${CMAKE_C_PLATFORM_ID} MATCHES MinGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(132): elseif(${CMAKE_C_PLATFORM_ID} MATCHES Cygwin ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(137): if(NOT _CMAKE_TOOLCHAIN_LOCATION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(138): get_filename_component(_CMAKE_TOOLCHAIN_LOCATION ${CMAKE_C_COMPILER} PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(148): if(CMAKE_CROSSCOMPILING AND NOT _CMAKE_TOOLCHAIN_PREFIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(150): if(${CMAKE_C_COMPILER_ID} MATCHES GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(151): get_filename_component(COMPILER_BASENAME ${CMAKE_C_COMPILER} NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(152): if(COMPILER_BASENAME MATCHES ^(.+-)g?cc(-[0-9]+\\.[0-9]+\\.[0-9]+)?(\\.exe)?$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(153): set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(158): if(${_CMAKE_TOOLCHAIN_PREFIX} MATCHES (.+-)?llvm-$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(172): include(${CMAKE_ROOT}/Modules/CMakeClDeps.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeClDeps.cmake(23): if(MSVC_C_ARCHITECTURE_ID AND CMAKE_GENERATOR MATCHES Ninja AND CMAKE_C_COMPILER AND CMAKE_COMMAND ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(173): include(CMakeFindBinUtils ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(33): if(${CMAKE_CXX_COMPILER_ID} MATCHES MSVC OR ${CMAKE_C_COMPILER_ID} MATCHES MSVC OR ${CMAKE_GENERATOR} MATCHES Visual Studio ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(42): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(44): find_program(CMAKE_AR NAMES ${_CMAKE_TOOLCHAIN_PREFIX}ar${_CMAKE_TOOLCHAIN_SUFFIX} HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(46): find_program(CMAKE_RANLIB NAMES ${_CMAKE_TOOLCHAIN_PREFIX}ranlib HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(47): if(NOT CMAKE_RANLIB ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(51): find_program(CMAKE_STRIP NAMES ${_CMAKE_TOOLCHAIN_PREFIX}strip${_CMAKE_TOOLCHAIN_SUFFIX} HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(52): find_program(CMAKE_LINKER NAMES ${_CMAKE_TOOLCHAIN_PREFIX}ld HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(53): find_program(CMAKE_NM NAMES ${_CMAKE_TOOLCHAIN_PREFIX}nm HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(54): find_program(CMAKE_OBJDUMP NAMES ${_CMAKE_TOOLCHAIN_PREFIX}objdump HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(55): find_program(CMAKE_OBJCOPY NAMES ${_CMAKE_TOOLCHAIN_PREFIX}objcopy HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(57): mark_as_advanced(CMAKE_AR CMAKE_RANLIB CMAKE_STRIP CMAKE_LINKER CMAKE_NM CMAKE_OBJDUMP CMAKE_OBJCOPY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(63): if(APPLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(174): if(MSVC_C_ARCHITECTURE_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(179): configure_file(${CMAKE_ROOT}/Modules/CMakeCCompiler.cmake.in ${CMAKE_PLATFORM_INFO_DIR}/CMakeCCompiler.cmake @ONLY IMMEDIATE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake(183): set(CMAKE_C_COMPILER_ENV_VAR CC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(1): set(CMAKE_C_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-gcc ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(2): set(CMAKE_C_COMPILER_ARG1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(3): set(CMAKE_C_COMPILER_ID GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(4): set(CMAKE_C_COMPILER_VERSION 4.7.2 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(5): set(CMAKE_C_PLATFORM_ID Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(7): set(CMAKE_AR /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ar ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(8): set(CMAKE_RANLIB /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ranlib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(9): set(CMAKE_LINKER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-ld ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(10): set(CMAKE_COMPILER_IS_GNUCC 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(11): set(CMAKE_C_COMPILER_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(12): set(CMAKE_C_COMPILER_WORKS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(13): set(CMAKE_C_ABI_COMPILED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(14): set(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(15): set(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(16): if(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(21): set(CMAKE_C_COMPILER_ENV_VAR CC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(23): if(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(26): set(CMAKE_C_COMPILER_ID_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(27): set(CMAKE_C_SOURCE_FILE_EXTENSIONS c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(28): set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(29): set(CMAKE_C_LINKER_PREFERENCE 10 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(32): set(CMAKE_C_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(33): set(CMAKE_C_COMPILER_ABI ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(34): set(CMAKE_C_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(36): if(CMAKE_C_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(40): if(CMAKE_C_COMPILER_ABI ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(44): if(CMAKE_C_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(51): set(CMAKE_C_IMPLICIT_LINK_LIBRARIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(52): set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(53): set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(33): include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompiler.cmake(15): macro(_cmake_find_compiler lang ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(36): include(Platform/${CMAKE_SYSTEM_NAME}-CXX OPTIONAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-CXX.cmake(1): if(NOT CMAKE_CXX_COMPILER_NAMES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-CXX.cmake(2): set(CMAKE_CXX_COMPILER_NAMES c++ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(37): if(NOT CMAKE_CXX_COMPILER_NAMES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(41): if(${CMAKE_GENERATOR} MATCHES Visual Studio ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(42): elseif(${CMAKE_GENERATOR} MATCHES Xcode ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(44): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(45): if(NOT CMAKE_CXX_COMPILER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(72): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(80): list(LENGTH CMAKE_CXX_COMPILER _CMAKE_CXX_COMPILER_LIST_LENGTH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(81): if(${_CMAKE_CXX_COMPILER_LIST_LENGTH} EQUAL 2 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(91): get_filename_component(_CMAKE_USER_CXX_COMPILER_PATH ${CMAKE_CXX_COMPILER} PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(92): if(NOT _CMAKE_USER_CXX_COMPILER_PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(100): mark_as_advanced(CMAKE_CXX_COMPILER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(105): set(CMAKE_CXX_COMPILER_ID_TEST_FLAGS -c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(112): if(NOT CMAKE_CXX_COMPILER_ID_RUN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(113): set(CMAKE_CXX_COMPILER_ID_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(116): set(CMAKE_CXX_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(117): file(READ ${CMAKE_ROOT}/Modules/CMakePlatformId.h.in CMAKE_CXX_COMPILER_ID_PLATFORM_CONTENT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(119): include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(19): function(CMAKE_DETERMINE_COMPILER_ID lang flagvar src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(87): function(CMAKE_DETERMINE_COMPILER_ID_WRITE lang src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(96): function(CMAKE_DETERMINE_COMPILER_ID_BUILD lang testflags src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(309): function(CMAKE_DETERMINE_COMPILER_ID_CHECK lang file ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(407): function(CMAKE_DETERMINE_COMPILER_ID_VENDOR lang ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(120): CMAKE_DETERMINE_COMPILER_ID(CXX CXXFLAGS CMakeCXXCompilerId.cpp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(21): string(STRIP ${CMAKE_${lang}_COMPILER_ARG1} CMAKE_${lang}_COMPILER_ID_ARG1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(22): string(REGEX REPLACE + ; CMAKE_${lang}_COMPILER_ID_ARG1 ${CMAKE_${lang}_COMPILER_ID_ARG1} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(25): if(CMAKE_${lang}_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(27): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(28): set(CMAKE_${lang}_COMPILER_ID_FLAGS $ENV{${flagvar}} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(30): string(REGEX REPLACE ; CMAKE_${lang}_COMPILER_ID_FLAGS_LIST ${CMAKE_${lang}_COMPILER_ID_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(33): set(CMAKE_${lang}_COMPILER_ID_DIR ${CMAKE_PLATFORM_INFO_DIR}/CompilerId${lang} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(37): foreach(flags ${CMAKE_${lang}_COMPILER_ID_TEST_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(38): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(39): CMAKE_DETERMINE_COMPILER_ID_BUILD(${lang} ${flags} ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(98): file(REMOVE_RECURSE ${CMAKE_${lang}_COMPILER_ID_DIR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(99): file(MAKE_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(100): CMAKE_DETERMINE_COMPILER_ID_WRITE(${lang} ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(88): file(READ ${CMAKE_ROOT}/Modules/${src}.in ID_CONTENT_IN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(89): string(CONFIGURE ${ID_CONTENT_IN} ID_CONTENT_OUT @ONLY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(90): file(WRITE ${CMAKE_${lang}_COMPILER_ID_DIR}/${src} ${ID_CONTENT_OUT} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(103): set(COMPILER_DESCRIPTION Compiler: ${CMAKE_${lang}_COMPILER} ${CMAKE_${lang}_COMPILER_ID_ARG1} Build flags: ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST} Id flags: ${testflags} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(110): if(${CMAKE_GENERATOR} MATCHES Visual Studio ([0-9]+) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(175): elseif(${CMAKE_GENERATOR} MATCHES Xcode ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(223): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(224): if(COMMAND EXECUTE_PROCESS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(225): execute_process(COMMAND ${CMAKE_${lang}_COMPILER} ${CMAKE_${lang}_COMPILER_ID_ARG1} ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST} ${testflags} ${src} WORKING_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR} OUTPUT_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT ERROR_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT RESULT_VARIABLE CMAKE_${lang}_COMPILER_ID_RESULT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(250): if(CMAKE_${lang}_COMPILER_ID_RESULT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(267): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(269): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Compiling the ${lang} compiler identification source file \"${src}\" succeeded. ${COMPILER_DESCRIPTION} The output was: ${CMAKE_${lang}_COMPILER_ID_RESULT} ${CMAKE_${lang}_COMPILER_ID_OUTPUT} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(280): file(GLOB files RELATIVE ${CMAKE_${lang}_COMPILER_ID_DIR} ${CMAKE_${lang}_COMPILER_ID_DIR}/* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(283): list(REMOVE_ITEM files ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(284): set(COMPILER_${lang}_PRODUCED_FILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(285): foreach(file ${files} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(286): if(NOT IS_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}/${file} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(287): list(APPEND COMPILER_${lang}_PRODUCED_FILES ${file} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(288): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Compilation of the ${lang} compiler identification source \" ${src}\" produced \"${file}\"\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(294): if(NOT COMPILER_${lang}_PRODUCED_FILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(304): set(COMPILER_${lang}_PRODUCED_FILES ${COMPILER_${lang}_PRODUCED_FILES} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(40): foreach(file ${COMPILER_${lang}_PRODUCED_FILES} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(41): CMAKE_DETERMINE_COMPILER_ID_CHECK(${lang} ${CMAKE_${lang}_COMPILER_ID_DIR}/${file} ${src} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(311): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(313): set(COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(314): set(COMPILER_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(315): set(PLATFORM_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(316): file(STRINGS ${file} CMAKE_${lang}_COMPILER_ID_STRINGS LIMIT_COUNT 4 REGEX INFO: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(318): set(HAVE_COMPILER_TWICE 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(319): foreach(info ${CMAKE_${lang}_COMPILER_ID_STRINGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(321): if(COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(324): string(REGEX REPLACE .*INFO:compiler\\[([^]]*)\\].* \\1 COMPILER_ID ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(328): string(REGEX REPLACE .*INFO:platform\\[([^]]*)\\].* \\1 PLATFORM_ID ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(332): string(REGEX REPLACE .*INFO:arch\\[([^]]*)\\].* \\1 ARCHITECTURE_ID ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(320): if(${info} MATCHES .*INFO:compiler\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(327): if(${info} MATCHES .*INFO:platform\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(331): if(${info} MATCHES .*INFO:arch\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(335): if(${info} MATCHES .*INFO:compiler_version\\[([^]\"]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(336): string(REGEX REPLACE .*INFO:compiler_version\\[([^]]*)\\].* \\1 COMPILER_VERSION ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(337): string(REGEX REPLACE ^0+([0-9]) \\1 COMPILER_VERSION ${COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(338): string(REGEX REPLACE \\.0+([0-9]) .\\1 COMPILER_VERSION ${COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(343): if(COMPILER_ID AND NOT COMPILER_ID_TWICE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(344): set(CMAKE_${lang}_COMPILER_ID ${COMPILER_ID} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(345): set(CMAKE_${lang}_PLATFORM_ID ${PLATFORM_ID} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(346): set(MSVC_${lang}_ARCHITECTURE_ID ${ARCHITECTURE_ID} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(347): set(CMAKE_${lang}_COMPILER_VERSION ${COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(351): if(CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(353): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log The ${lang} compiler identification is ${CMAKE_${lang}_COMPILER_ID}, found in \" ${file}\"\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(365): if(NOT CMAKE_EXECUTABLE_FORMAT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(387): if(NOT DEFINED CMAKE_EXECUTABLE_FORMAT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(391): set(CMAKE_${lang}_COMPILER_ID ${CMAKE_${lang}_COMPILER_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(392): set(CMAKE_${lang}_PLATFORM_ID ${CMAKE_${lang}_PLATFORM_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(393): set(MSVC_${lang}_ARCHITECTURE_ID ${MSVC_${lang}_ARCHITECTURE_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(395): set(CMAKE_${lang}_COMPILER_VERSION ${CMAKE_${lang}_COMPILER_VERSION} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(396): set(CMAKE_EXECUTABLE_FORMAT ${CMAKE_EXECUTABLE_FORMAT} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(38): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(47): if(NOT CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(52): if(NOT CMAKE_EXECUTABLE_FORMAT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(57): if(CMAKE_${lang}_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(58): if(CMAKE_${lang}_COMPILER_VERSION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(59): set(_version ${CMAKE_${lang}_COMPILER_VERSION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(63): message(STATUS The ${lang} compiler identification is ${CMAKE_${lang}_COMPILER_ID}${_version} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(70): if(NOT CMAKE_${lang}_COMPILER ) -- The CXX compiler identification is GNU 4.7.2 /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(78): set(CMAKE_${lang}_COMPILER_ID ${CMAKE_${lang}_COMPILER_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(79): set(CMAKE_${lang}_PLATFORM_ID ${CMAKE_${lang}_PLATFORM_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(80): set(MSVC_${lang}_ARCHITECTURE_ID ${MSVC_${lang}_ARCHITECTURE_ID} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake(82): set(CMAKE_${lang}_COMPILER_VERSION ${CMAKE_${lang}_COMPILER_VERSION} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(123): if(${CMAKE_CXX_COMPILER_ID} MATCHES GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(124): set(CMAKE_COMPILER_IS_GNUCXX 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(126): if(${CMAKE_CXX_PLATFORM_ID} MATCHES MinGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(128): elseif(${CMAKE_CXX_PLATFORM_ID} MATCHES Cygwin ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(133): if(NOT _CMAKE_TOOLCHAIN_LOCATION ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(146): if(CMAKE_CROSSCOMPILING AND NOT _CMAKE_TOOLCHAIN_PREFIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(171): include(${CMAKE_ROOT}/Modules/CMakeClDeps.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeClDeps.cmake(23): if(MSVC_C_ARCHITECTURE_ID AND CMAKE_GENERATOR MATCHES Ninja AND CMAKE_C_COMPILER AND CMAKE_COMMAND ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(172): include(CMakeFindBinUtils ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(33): if(${CMAKE_CXX_COMPILER_ID} MATCHES MSVC OR ${CMAKE_C_COMPILER_ID} MATCHES MSVC OR ${CMAKE_GENERATOR} MATCHES Visual Studio ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(42): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(44): find_program(CMAKE_AR NAMES ${_CMAKE_TOOLCHAIN_PREFIX}ar${_CMAKE_TOOLCHAIN_SUFFIX} HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(46): find_program(CMAKE_RANLIB NAMES ${_CMAKE_TOOLCHAIN_PREFIX}ranlib HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(47): if(NOT CMAKE_RANLIB ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(51): find_program(CMAKE_STRIP NAMES ${_CMAKE_TOOLCHAIN_PREFIX}strip${_CMAKE_TOOLCHAIN_SUFFIX} HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(52): find_program(CMAKE_LINKER NAMES ${_CMAKE_TOOLCHAIN_PREFIX}ld HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(53): find_program(CMAKE_NM NAMES ${_CMAKE_TOOLCHAIN_PREFIX}nm HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(54): find_program(CMAKE_OBJDUMP NAMES ${_CMAKE_TOOLCHAIN_PREFIX}objdump HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(55): find_program(CMAKE_OBJCOPY NAMES ${_CMAKE_TOOLCHAIN_PREFIX}objcopy HINTS ${_CMAKE_TOOLCHAIN_LOCATION} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(57): mark_as_advanced(CMAKE_AR CMAKE_RANLIB CMAKE_STRIP CMAKE_LINKER CMAKE_NM CMAKE_OBJDUMP CMAKE_OBJCOPY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake(63): if(APPLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(173): if(MSVC_CXX_ARCHITECTURE_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(178): configure_file(${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in ${CMAKE_PLATFORM_INFO_DIR}/CMakeCXXCompiler.cmake @ONLY IMMEDIATE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake(183): set(CMAKE_CXX_COMPILER_ENV_VAR CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(1): set(CMAKE_CXX_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-g++ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(2): set(CMAKE_CXX_COMPILER_ARG1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(3): set(CMAKE_CXX_COMPILER_ID GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(4): set(CMAKE_CXX_COMPILER_VERSION 4.7.2 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(5): set(CMAKE_CXX_PLATFORM_ID Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(7): set(CMAKE_AR /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ar ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(8): set(CMAKE_RANLIB /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ranlib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(9): set(CMAKE_LINKER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-ld ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(10): set(CMAKE_COMPILER_IS_GNUCXX 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(11): set(CMAKE_CXX_COMPILER_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(12): set(CMAKE_CXX_COMPILER_WORKS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(13): set(CMAKE_CXX_ABI_COMPILED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(14): set(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(15): set(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(16): if(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(21): set(CMAKE_CXX_COMPILER_ENV_VAR CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(23): if(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(26): set(CMAKE_CXX_COMPILER_ID_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(27): set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(28): set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(29): set(CMAKE_CXX_LINKER_PREFERENCE 30 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(30): set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(33): set(CMAKE_CXX_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(34): set(CMAKE_CXX_COMPILER_ABI ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(35): set(CMAKE_CXX_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(37): if(CMAKE_CXX_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(41): if(CMAKE_CXX_COMPILER_ABI ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(45): if(CMAKE_CXX_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(52): set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(53): set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(54): set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(24): set(APPLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(25): set(UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(26): set(CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(27): set(WIN32 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(31): include(CMakeGenericSystem ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(15): set(CMAKE_SHARED_LIBRARY_C_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(16): set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(17): set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(18): set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(19): set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(20): set(CMAKE_INCLUDE_FLAG_C -I ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(21): set(CMAKE_INCLUDE_FLAG_C_SEP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(22): set(CMAKE_LIBRARY_PATH_FLAG -L ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(23): set(CMAKE_LIBRARY_PATH_TERMINATOR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(24): set(CMAKE_LINK_LIBRARY_FLAG -l ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(26): set(CMAKE_LINK_LIBRARY_SUFFIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(27): set(CMAKE_STATIC_LIBRARY_PREFIX lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(28): set(CMAKE_STATIC_LIBRARY_SUFFIX .a ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(29): set(CMAKE_SHARED_LIBRARY_PREFIX lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(30): set(CMAKE_SHARED_LIBRARY_SUFFIX .so ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(31): set(CMAKE_EXECUTABLE_SUFFIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(32): set(CMAKE_DL_LIBS dl ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(34): set(CMAKE_FIND_LIBRARY_PREFIXES lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(35): set(CMAKE_FIND_LIBRARY_SUFFIXES .so .a ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(38): set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(40): set(CMAKE_SKIP_RPATH NO CACHE BOOL If set, runtime paths are not added when using shared libraries. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(42): set(CMAKE_SKIP_INSTALL_RPATH NO CACHE BOOL If set, runtime paths are not added when installing shared libraries, but are added when building. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(45): set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(47): if(CMAKE_GENERATOR MATCHES Makefiles ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(48): set(CMAKE_COLOR_MAKEFILE ON CACHE BOOL Enable/Disable color output during build. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(51): mark_as_advanced(CMAKE_COLOR_MAKEFILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(52): if(DEFINED CMAKE_RULE_MESSAGES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(55): if(CMAKE_GENERATOR MATCHES Unix Makefiles ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(56): set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL Enable/Disable output of compile commands during generation. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(59): mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(63): if(CMAKE_GENERATOR MATCHES Ninja ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(77): function(GetDefaultWindowsPrefixBase var ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(163): if(NOT DEFINED CMAKE_INSTALL_PREFIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(168): if(CMAKE_HOST_UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(169): set(CMAKE_INSTALL_PREFIX /usr/local CACHE PATH Install path prefix, prepended onto install directories. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(181): set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Unspecified ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeGenericSystem.cmake(183): mark_as_advanced(CMAKE_SKIP_RPATH CMAKE_SKIP_INSTALL_RPATH CMAKE_VERBOSE_MAKEFILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(34): set(CMAKE_SYSTEM_INFO_FILE Platform/${CMAKE_SYSTEM_NAME} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(36): include(${CMAKE_SYSTEM_INFO_FILE} OPTIONAL RESULT_VARIABLE _INCLUDED_SYSTEM_INFO_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(1): set(CMAKE_DL_LIBS dl ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(2): set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG -Wl,-rpath, ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(3): set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP : ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(4): set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG -Wl,-rpath-link, ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(5): set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG -Wl,-soname, ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(6): set(CMAKE_EXE_EXPORTS_C_FLAG -Wl,--export-dynamic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(10): set(CMAKE_PLATFORM_USES_PATH_WHEN_NO_SONAME 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(16): foreach(type SHARED_LIBRARY SHARED_MODULE EXE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(17): set(CMAKE_${type}_LINK_STATIC_C_FLAGS -Wl,-Bstatic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(18): set(CMAKE_${type}_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(17): set(CMAKE_${type}_LINK_STATIC_C_FLAGS -Wl,-Bstatic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(18): set(CMAKE_${type}_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(17): set(CMAKE_${type}_LINK_STATIC_C_FLAGS -Wl,-Bstatic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(18): set(CMAKE_${type}_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(29): if(DEFINED CMAKE_INSTALL_SO_NO_EXE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(34): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(39): if(EXISTS /etc/debian_version ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(40): set(CMAKE_INSTALL_SO_NO_EXE 1 CACHE INTERNAL Install .so files without execute permission. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(49): set(CMAKE_LIBRARY_ARCHITECTURE_REGEX [a-z0-9_]+(-[a-z0-9_]+)?-linux-gnu[a-z0-9_]* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(51): include(Platform/UnixPaths ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(20): if(__UNIX_PATHS_INCLUDED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(23): set(__UNIX_PATHS_INCLUDED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(25): set(UNIX 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(29): get_filename_component(_CMAKE_INSTALL_DIR ${CMAKE_ROOT} PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(30): get_filename_component(_CMAKE_INSTALL_DIR ${_CMAKE_INSTALL_DIR} PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(34): list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local /usr / ${_CMAKE_INSTALL_DIR} ${CMAKE_INSTALL_PREFIX} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(46): list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /usr/include/w32api /usr/X11R6/include /usr/include/X11 /usr/pkg/include /opt/csw/include /opt/include /usr/openwin/include ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(59): list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /usr/lib/w32api /usr/X11R6/lib /usr/lib/X11 /usr/pkg/lib /opt/csw/lib /opt/lib /usr/openwin/lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(72): list(APPEND CMAKE_SYSTEM_PROGRAM_PATH /usr/pkg/bin ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(76): list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /lib /usr/lib /usr/lib32 /usr/lib64 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(80): list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES /usr/include ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(83): list(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES /usr/include ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/UnixPaths.cmake(88): set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(55): if(EXISTS /etc/debian_version ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux.cmake(56): set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(38): if(NOT _INCLUDED_SYSTEM_INFO_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(53): if(CMAKE_EXTRA_GENERATOR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(63): if(NOT CMAKE_MODULE_EXISTS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(64): set(CMAKE_SHARED_MODULE_PREFIX ${CMAKE_SHARED_LIBRARY_PREFIX} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(65): set(CMAKE_SHARED_MODULE_SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake(69): set(CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(23): if(UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(24): set(CMAKE_C_OUTPUT_EXTENSION .o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(29): set(_INCLUDED_FILE 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(32): if(CMAKE_C_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(33): include(Compiler/${CMAKE_C_COMPILER_ID}-C OPTIONAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU-C.cmake(1): include(Compiler/GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(16): if(__COMPILER_GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(19): set(__COMPILER_GNU 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(21): macro(__compiler_gnu lang ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU-C.cmake(2): __compiler_gnu(C ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(23): set(CMAKE_C_VERBOSE_FLAG -v ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(24): set(CMAKE_C_COMPILE_OPTIONS_PIC -fPIC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(25): if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(26): set(CMAKE_C_COMPILE_OPTIONS_PIE -fPIE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(28): set(CMAKE_SHARED_LIBRARY_C_FLAGS -fPIC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(29): set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(35): get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(36): if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(40): set(CMAKE_DEPFILE_FLAGS_C -MMD -MT -MF ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(44): set(CMAKE_C_FLAGS_INIT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(45): set(CMAKE_C_FLAGS_DEBUG_INIT -g ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(46): set(CMAKE_C_FLAGS_MINSIZEREL_INIT -Os -DNDEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(47): set(CMAKE_C_FLAGS_RELEASE_INIT -O3 -DNDEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(48): set(CMAKE_C_FLAGS_RELWITHDEBINFO_INIT -O2 -g -DNDEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(49): set(CMAKE_C_CREATE_PREPROCESSED_SOURCE -E > ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(50): set(CMAKE_C_CREATE_ASSEMBLY_SOURCE -S -o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(51): if(NOT APPLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(52): set(CMAKE_INCLUDE_SYSTEM_FLAG_C -isystem ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(36): set(CMAKE_BASE_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(37): get_filename_component(CMAKE_BASE_NAME ${CMAKE_C_COMPILER} NAME_WE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(38): if(CMAKE_COMPILER_IS_GNUCC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(39): set(CMAKE_BASE_NAME gcc ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(44): if(CMAKE_SYSTEM_PROCESSOR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(45): if(CMAKE_C_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(46): include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_C_COMPILER_ID}-C-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL RESULT_VARIABLE _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(48): if(NOT _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(49): include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_BASE_NAME}-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(55): if(CMAKE_C_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(56): include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_C_COMPILER_ID}-C OPTIONAL RESULT_VARIABLE _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU-C.cmake(1): include(Platform/Linux-GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(16): if(__LINUX_COMPILER_GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(19): set(__LINUX_COMPILER_GNU 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(21): macro(__linux_compiler_gnu lang ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU-C.cmake(2): __linux_compiler_gnu(C ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(24): set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS -rdynamic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(59): if(NOT _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(67): if(NOT _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(71): if(CMAKE_C_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(84): if(CMAKE_USER_MAKE_RULES_OVERRIDE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(90): if(CMAKE_USER_MAKE_RULES_OVERRIDE_C ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(100): if(NOT CMAKE_MODULE_EXISTS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(101): set(CMAKE_SHARED_MODULE_C_FLAGS ${CMAKE_SHARED_LIBRARY_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(102): set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(105): set(CMAKE_C_FLAGS_INIT $ENV{CFLAGS} ${CMAKE_C_FLAGS_INIT} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(107): if(CMAKE_C_FLAGS_INIT STREQUAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(108): set(CMAKE_C_FLAGS_INIT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(110): set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS_INIT} CACHE STRING Flags used by the compiler during all build types. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(113): if(NOT CMAKE_NOT_USING_CONFIG_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(115): if(NOT CMAKE_NO_BUILD_TYPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(116): set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(119): set(CMAKE_C_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the compiler during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(121): set(CMAKE_C_FLAGS_MINSIZEREL ${CMAKE_C_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the compiler during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(123): set(CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files). ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(125): set(CMAKE_C_FLAGS_RELWITHDEBINFO ${CMAKE_C_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the compiler during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(129): if(CMAKE_C_STANDARD_LIBRARIES_INIT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(135): include(CMakeCommonLanguageInclude ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(19): set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS_INIT} $ENV{LDFLAGS} CACHE STRING Flags used by the linker. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(23): if(NOT CMAKE_NOT_USING_CONFIG_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(25): if(NOT CMAKE_NO_BUILD_TYPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(26): set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(30): set(CMAKE_EXE_LINKER_FLAGS_DEBUG ${CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the linker during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(33): set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ${CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the linker during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(36): set(CMAKE_EXE_LINKER_FLAGS_RELEASE ${CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the linker during release builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(39): set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the linker during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(43): set(CMAKE_SHARED_LINKER_FLAGS_DEBUG ${CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the linker during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(46): set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ${CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the linker during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(50): set(CMAKE_SHARED_LINKER_FLAGS_RELEASE ${CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the linker during release builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(53): set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ${CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the linker during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(57): set(CMAKE_MODULE_LINKER_FLAGS_DEBUG ${CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the linker during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(60): set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ${CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the linker during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(64): set(CMAKE_MODULE_LINKER_FLAGS_RELEASE ${CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the linker during release builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(67): set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ${CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the linker during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(73): set(CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS_INIT} $ENV{LDFLAGS} CACHE STRING Flags used by the linker during the creation of dll's. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(77): set(CMAKE_MODULE_LINKER_FLAGS ${CMAKE_MODULE_LINKER_FLAGS_INIT} $ENV{LDFLAGS} CACHE STRING Flags used by the linker during the creation of modules. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(80): set(CMAKE_BUILD_TOOL ${CMAKE_MAKE_PROGRAM} CACHE INTERNAL What is the target build tool cmake is generating for. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(84): mark_as_advanced(CMAKE_BUILD_TOOL CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(165): if(NOT CMAKE_C_CREATE_SHARED_LIBRARY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(166): set(CMAKE_C_CREATE_SHARED_LIBRARY -o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(171): if(NOT CMAKE_C_CREATE_SHARED_MODULE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(172): set(CMAKE_C_CREATE_SHARED_MODULE ${CMAKE_C_CREATE_SHARED_LIBRARY} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(177): if(NOT DEFINED CMAKE_C_ARCHIVE_CREATE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(178): set(CMAKE_C_ARCHIVE_CREATE cr ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(180): if(NOT DEFINED CMAKE_C_ARCHIVE_APPEND ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(181): set(CMAKE_C_ARCHIVE_APPEND r ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(183): if(NOT DEFINED CMAKE_C_ARCHIVE_FINISH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(184): set(CMAKE_C_ARCHIVE_FINISH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(188): if(NOT CMAKE_C_COMPILE_OBJECT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(189): set(CMAKE_C_COMPILE_OBJECT -o -c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(193): if(NOT CMAKE_C_LINK_EXECUTABLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(194): set(CMAKE_C_LINK_EXECUTABLE -o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(198): if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(199): set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(202): if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(203): set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(206): if(NOT CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(207): set(CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(210): mark_as_advanced(CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELWITHDEBINFO ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCInformation.cmake(217): set(CMAKE_C_INFORMATION_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(15): if(CMAKE_C_COMPILER_FORCED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(22): include(CMakeTestCompilerCommon ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(15): function(PrintTestCompilerStatus LANG MSG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(26): unset(CMAKE_C_COMPILER_WORKS CACHE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(33): if(NOT CMAKE_C_COMPILER_WORKS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(34): PrintTestCompilerStatus(C ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(16): if(CMAKE_GENERATOR MATCHES Make ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(17): message(STATUS Check for working ${LANG} compiler: ${CMAKE_${LANG}_COMPILER}${MSG} ) -- Check for working C compiler: /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-gcc /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(35): file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCCompiler.c #ifdef __cplusplus\n # error \"The CMAKE_C_COMPILER is set to a C++ compiler\"\n #endif\n #if defined(__CLASSIC_C__)\n int main(argc, argv)\n int argc;\n char* argv[];\n #else\n int main(int argc, char* argv[])\n #endif\n { (void)argv; return argc-1;}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(47): try_compile(CMAKE_C_COMPILER_WORKS ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCCompiler.c OUTPUT_VARIABLE __CMAKE_C_COMPILER_OUTPUT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(51): set(CMAKE_C_COMPILER_WORKS ${CMAKE_C_COMPILER_WORKS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(52): unset(CMAKE_C_COMPILER_WORKS CACHE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(53): set(C_TEST_WAS_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(56): if(NOT CMAKE_C_COMPILER_WORKS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(65): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(66): if(C_TEST_WAS_RUN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(67): PrintTestCompilerStatus(C -- works ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(16): if(CMAKE_GENERATOR MATCHES Make ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(17): message(STATUS Check for working ${LANG} compiler: ${CMAKE_${LANG}_COMPILER}${MSG} ) -- Check for working C compiler: /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-gcc -- works /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(68): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Determining if the C compiler works passed with the following output:\n${__CMAKE_C_COMPILER_OUTPUT}\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(74): include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerABI.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(19): include(${CMAKE_ROOT}/Modules/CMakeParseImplicitLinkInfo.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(19): function(CMAKE_PARSE_IMPLICIT_LINK_INFO text lib_var dir_var fwk_var log_var obj_regex ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(21): function(CMAKE_DETERMINE_COMPILER_ABI lang src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(75): CMAKE_DETERMINE_COMPILER_ABI(C ${CMAKE_ROOT}/Modules/CMakeCCompilerABI.c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(22): if(NOT DEFINED CMAKE_${lang}_ABI_COMPILED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(23): message(STATUS Detecting ${lang} compiler ABI info ) -- Detecting C compiler ABI info /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(26): set(BIN ${CMAKE_PLATFORM_INFO_DIR}/CMakeDetermineCompilerABI_${lang}.bin ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(27): set(CMAKE_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(28): if(DEFINED CMAKE_${lang}_VERBOSE_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(29): set(CMAKE_FLAGS -DCMAKE_EXE_LINKER_FLAGS=${CMAKE_${lang}_VERBOSE_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(31): try_compile(CMAKE_${lang}_ABI_COMPILED ${CMAKE_BINARY_DIR} ${src} CMAKE_FLAGS ${CMAKE_FLAGS} -DCMAKE_${lang}_STANDARD_LIBRARIES= --no-warn-unused-cli OUTPUT_VARIABLE OUTPUT COPY_FILE ${BIN} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(43): set(CMAKE_${lang}_ABI_COMPILED ${CMAKE_${lang}_ABI_COMPILED} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(44): unset(CMAKE_${lang}_ABI_COMPILED CACHE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(45): set(CMAKE_${lang}_ABI_COMPILED ${CMAKE_${lang}_ABI_COMPILED} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(48): if(CMAKE_${lang}_ABI_COMPILED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(49): message(STATUS Detecting ${lang} compiler ABI info - done ) -- Detecting C compiler ABI info - done /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(50): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Detecting ${lang} compiler ABI info compiled with the following output:\n${OUTPUT}\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(52): file(STRINGS ${BIN} ABI_STRINGS LIMIT_COUNT 2 REGEX INFO:[^[]*\\[ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(53): foreach(info ${ABI_STRINGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(54): if(${info} MATCHES .*INFO:sizeof_dptr\\[0*([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(55): string(REGEX REPLACE .*INFO:sizeof_dptr\\[0*([^]]*)\\].* \\1 ABI_SIZEOF_DPTR ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(57): if(${info} MATCHES .*INFO:abi\\[([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(54): if(${info} MATCHES .*INFO:sizeof_dptr\\[0*([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(57): if(${info} MATCHES .*INFO:abi\\[([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(58): string(REGEX REPLACE .*INFO:abi\\[([^]]*)\\].* \\1 ABI_NAME ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(62): if(ABI_SIZEOF_DPTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(63): set(CMAKE_${lang}_SIZEOF_DATA_PTR ${ABI_SIZEOF_DPTR} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(68): if(ABI_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(69): set(CMAKE_${lang}_COMPILER_ABI ${ABI_NAME} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(73): set(implicit_dirs ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(74): set(implicit_libs ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(75): set(implicit_fwks ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(76): if(CMAKE_${lang}_VERBOSE_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(77): CMAKE_PARSE_IMPLICIT_LINK_INFO(${OUTPUT} implicit_libs implicit_dirs implicit_fwks log ${CMAKE_${lang}_IMPLICIT_OBJECT_REGEX} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(20): set(implicit_libs_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(21): set(implicit_dirs_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(22): set(implicit_fwks_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(23): set(log ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(26): set(linker CMAKE_LINKER-NOTFOUND ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(27): if(CMAKE_LINKER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(28): get_filename_component(linker ${CMAKE_LINKER} NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(32): set(linker_regex ^( *|.*[/\\])(${linker}|ld|collect2)[^/\\]*( |$) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(33): set(linker_exclude_regex collect2 version ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(34): set(log ${log} link line regex: [${linker_regex}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(35): string(REGEX REPLACE \r?\n ; output_lines ${text} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(36): foreach(line IN LISTS output_lines ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(40): if(XCODE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(50): if(UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(51): separate_arguments(args UNIX_COMMAND ${line} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(55): list(GET args 0 cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(58): set(log ${log} link line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(59): string(REGEX REPLACE ;-([LYz]); ;-\\1 args ${args} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(60): foreach(arg IN LISTS args ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(98): break() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(112): if(${output_lines} MATCHES ;Library search paths:((;\t[^;]+)+) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(117): if(${output_lines} MATCHES ;Framework search paths:((;\t[^;]+)+) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(125): set(implicit_libs ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(126): foreach(lib IN LISTS implicit_libs_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(129): elseif(IS_ABSOLUTE ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(135): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(136): list(APPEND implicit_libs ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(141): set(desc_dirs library ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(142): set(desc_fwks framework ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(143): foreach(t dirs fwks ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(144): set(implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(145): foreach(d IN LISTS implicit_${t}_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(156): list(REMOVE_DUPLICATES implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(144): set(implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(145): foreach(d IN LISTS implicit_${t}_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(156): list(REMOVE_DUPLICATES implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(160): set(log ${log} implicit libs: [${implicit_libs}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(161): set(log ${log} implicit dirs: [${implicit_dirs}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(162): set(log ${log} implicit fwks: [${implicit_fwks}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(165): set(${lib_var} ${implicit_libs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(166): set(${dir_var} ${implicit_dirs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(167): set(${fwk_var} ${implicit_fwks} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(168): set(${log_var} ${log} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(79): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Parsed ${lang} implicit link information from above output:\n${log}\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(85): if(${lang} MATCHES Fortran AND ${CMAKE_GENERATOR} MATCHES Visual Studio ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(107): if(DEFINED CMAKE_OSX_ARCHITECTURES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(113): set(CMAKE_${lang}_IMPLICIT_LINK_LIBRARIES ${implicit_libs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(114): set(CMAKE_${lang}_IMPLICIT_LINK_DIRECTORIES ${implicit_dirs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(115): set(CMAKE_${lang}_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES ${implicit_fwks} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(118): if(CMAKE_LIBRARY_ARCHITECTURE_REGEX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(119): foreach(dir ${implicit_dirs} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(78): configure_file(${CMAKE_ROOT}/Modules/CMakeCCompiler.cmake.in ${CMAKE_PLATFORM_INFO_DIR}/CMakeCCompiler.cmake @ONLY IMMEDIATE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(83): include(${CMAKE_PLATFORM_INFO_DIR}/CMakeCCompiler.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(1): set(CMAKE_C_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-gcc ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(2): set(CMAKE_C_COMPILER_ARG1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(3): set(CMAKE_C_COMPILER_ID GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(4): set(CMAKE_C_COMPILER_VERSION 4.7.2 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(5): set(CMAKE_C_PLATFORM_ID Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(7): set(CMAKE_AR /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ar ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(8): set(CMAKE_RANLIB /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ranlib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(9): set(CMAKE_LINKER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-ld ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(10): set(CMAKE_COMPILER_IS_GNUCC 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(11): set(CMAKE_C_COMPILER_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(12): set(CMAKE_C_COMPILER_WORKS TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(13): set(CMAKE_C_ABI_COMPILED TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(14): set(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(15): set(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(16): if(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(21): set(CMAKE_C_COMPILER_ENV_VAR CC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(23): if(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(26): set(CMAKE_C_COMPILER_ID_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(27): set(CMAKE_C_SOURCE_FILE_EXTENSIONS c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(28): set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(29): set(CMAKE_C_LINKER_PREFERENCE 10 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(32): set(CMAKE_C_SIZEOF_DATA_PTR 4 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(33): set(CMAKE_C_COMPILER_ABI ELF ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(34): set(CMAKE_C_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(36): if(CMAKE_C_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(37): set(CMAKE_SIZEOF_VOID_P ${CMAKE_C_SIZEOF_DATA_PTR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(40): if(CMAKE_C_COMPILER_ABI ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(41): set(CMAKE_INTERNAL_PLATFORM_ABI ${CMAKE_C_COMPILER_ABI} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(44): if(CMAKE_C_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(51): set(CMAKE_C_IMPLICIT_LINK_LIBRARIES c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(52): set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/lib;/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/usr/lib;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/lib/gcc/arm-1136jfs-linux-gnueabihf/4.7.2;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/lib/gcc;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/arm-1136jfs-linux-gnueabihf/lib;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/sysroot-arm-1136jfs-linux-gnueabihf/lib;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/sysroot-arm-1136jfs-linux-gnueabihf/usr/lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCCompiler.cmake(53): set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(85): if(CMAKE_C_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(86): foreach(f ${CMAKE_C_ABI_FILES} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(89): unset(CMAKE_C_ABI_FILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake(93): unset(__CMAKE_C_COMPILER_OUTPUT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(23): if(UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(24): set(CMAKE_CXX_OUTPUT_EXTENSION .o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(29): set(_INCLUDED_FILE 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(32): if(CMAKE_CXX_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(33): include(Compiler/${CMAKE_CXX_COMPILER_ID}-CXX OPTIONAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake(1): include(Compiler/GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(16): if(__COMPILER_GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(17): return() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake(2): __compiler_gnu(CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(23): set(CMAKE_CXX_VERBOSE_FLAG -v ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(24): set(CMAKE_CXX_COMPILE_OPTIONS_PIC -fPIC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(25): if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(26): set(CMAKE_CXX_COMPILE_OPTIONS_PIE -fPIE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(28): set(CMAKE_SHARED_LIBRARY_CXX_FLAGS -fPIC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(29): set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS -shared ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(35): get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(36): if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(40): set(CMAKE_DEPFILE_FLAGS_CXX -MMD -MT -MF ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(44): set(CMAKE_CXX_FLAGS_INIT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(45): set(CMAKE_CXX_FLAGS_DEBUG_INIT -g ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(46): set(CMAKE_CXX_FLAGS_MINSIZEREL_INIT -Os -DNDEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(47): set(CMAKE_CXX_FLAGS_RELEASE_INIT -O3 -DNDEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(48): set(CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT -O2 -g -DNDEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(49): set(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE -E > ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(50): set(CMAKE_CXX_CREATE_ASSEMBLY_SOURCE -S -o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(51): if(NOT APPLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Compiler/GNU.cmake(52): set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX -isystem ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(36): set(CMAKE_BASE_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(37): get_filename_component(CMAKE_BASE_NAME ${CMAKE_CXX_COMPILER} NAME_WE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(39): if(CMAKE_COMPILER_IS_GNUCXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(40): set(CMAKE_BASE_NAME g++ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(45): if(CMAKE_SYSTEM_PROCESSOR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(46): if(CMAKE_CXX_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(47): include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_CXX_COMPILER_ID}-CXX-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL RESULT_VARIABLE _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(49): if(NOT _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(50): include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_BASE_NAME}-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(55): if(CMAKE_CXX_COMPILER_ID ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(56): include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_CXX_COMPILER_ID}-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU-CXX.cmake(1): include(Platform/Linux-GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(16): if(__LINUX_COMPILER_GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(17): return() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU-CXX.cmake(2): __linux_compiler_gnu(CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake(24): set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS -rdynamic ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(58): if(NOT _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(66): if(NOT _INCLUDED_FILE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(70): if(CMAKE_CXX_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(83): if(CMAKE_USER_MAKE_RULES_OVERRIDE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(89): if(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(99): if(NOT CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(103): if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(107): if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(111): if(NOT CMAKE_CXX_COMPILE_OPTIONS_DLL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(112): set(CMAKE_CXX_COMPILE_OPTIONS_DLL ${CMAKE_C_COMPILE_OPTIONS_DLL} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(115): if(NOT CMAKE_SHARED_LIBRARY_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(119): if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(123): if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(124): set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(127): if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(128): set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(131): if(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(132): set(CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(135): if(NOT DEFINED CMAKE_EXE_EXPORTS_CXX_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(136): set(CMAKE_EXE_EXPORTS_CXX_FLAG ${CMAKE_EXE_EXPORTS_C_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(139): if(NOT DEFINED CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(140): set(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG ${CMAKE_SHARED_LIBRARY_SONAME_C_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(143): if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(144): set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(147): if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(148): set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(151): if(NOT CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(152): set(CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(155): if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(156): set(CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH ${CMAKE_SHARED_LIBRARY_LINK_C_WITH_RUNTIME_PATH} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(159): if(NOT CMAKE_INCLUDE_FLAG_CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(160): set(CMAKE_INCLUDE_FLAG_CXX ${CMAKE_INCLUDE_FLAG_C} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(163): if(NOT CMAKE_INCLUDE_FLAG_SEP_CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(164): set(CMAKE_INCLUDE_FLAG_SEP_CXX ${CMAKE_INCLUDE_FLAG_SEP_C} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(170): if(NOT CMAKE_MODULE_EXISTS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(171): set(CMAKE_SHARED_MODULE_CXX_FLAGS ${CMAKE_SHARED_LIBRARY_CXX_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(172): set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(176): if(NOT CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(180): if(NOT CMAKE_SHARED_MODULE_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(185): foreach(type SHARED_LIBRARY SHARED_MODULE EXE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(186): if(NOT CMAKE_${type}_LINK_STATIC_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(187): set(CMAKE_${type}_LINK_STATIC_CXX_FLAGS ${CMAKE_${type}_LINK_STATIC_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(190): if(NOT CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(191): set(CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ${CMAKE_${type}_LINK_DYNAMIC_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(186): if(NOT CMAKE_${type}_LINK_STATIC_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(187): set(CMAKE_${type}_LINK_STATIC_CXX_FLAGS ${CMAKE_${type}_LINK_STATIC_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(190): if(NOT CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(191): set(CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ${CMAKE_${type}_LINK_DYNAMIC_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(186): if(NOT CMAKE_${type}_LINK_STATIC_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(187): set(CMAKE_${type}_LINK_STATIC_CXX_FLAGS ${CMAKE_${type}_LINK_STATIC_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(190): if(NOT CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(191): set(CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ${CMAKE_${type}_LINK_DYNAMIC_C_FLAGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(200): set(CMAKE_CXX_FLAGS_INIT $ENV{CXXFLAGS} ${CMAKE_CXX_FLAGS_INIT} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(202): if(CMAKE_CXX_FLAGS_INIT STREQUAL ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(203): set(CMAKE_CXX_FLAGS_INIT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(205): set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS_INIT} CACHE STRING Flags used by the compiler during all build types. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(208): if(NOT CMAKE_NOT_USING_CONFIG_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(209): set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the compiler during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(211): set(CMAKE_CXX_FLAGS_MINSIZEREL ${CMAKE_CXX_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the compiler during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(213): set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files). ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(215): set(CMAKE_CXX_FLAGS_RELWITHDEBINFO ${CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the compiler during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(220): if(CMAKE_CXX_STANDARD_LIBRARIES_INIT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(226): include(CMakeCommonLanguageInclude ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(19): set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS_INIT} $ENV{LDFLAGS} CACHE STRING Flags used by the linker. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(23): if(NOT CMAKE_NOT_USING_CONFIG_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(25): if(NOT CMAKE_NO_BUILD_TYPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(26): set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(30): set(CMAKE_EXE_LINKER_FLAGS_DEBUG ${CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the linker during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(33): set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ${CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the linker during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(36): set(CMAKE_EXE_LINKER_FLAGS_RELEASE ${CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the linker during release builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(39): set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the linker during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(43): set(CMAKE_SHARED_LINKER_FLAGS_DEBUG ${CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the linker during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(46): set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ${CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the linker during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(50): set(CMAKE_SHARED_LINKER_FLAGS_RELEASE ${CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the linker during release builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(53): set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ${CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the linker during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(57): set(CMAKE_MODULE_LINKER_FLAGS_DEBUG ${CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT} CACHE STRING Flags used by the linker during debug builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(60): set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ${CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING Flags used by the linker during release minsize builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(64): set(CMAKE_MODULE_LINKER_FLAGS_RELEASE ${CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT} CACHE STRING Flags used by the linker during release builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(67): set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ${CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING Flags used by the linker during Release with Debug Info builds. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(73): set(CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS_INIT} $ENV{LDFLAGS} CACHE STRING Flags used by the linker during the creation of dll's. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(77): set(CMAKE_MODULE_LINKER_FLAGS ${CMAKE_MODULE_LINKER_FLAGS_INIT} $ENV{LDFLAGS} CACHE STRING Flags used by the linker during the creation of modules. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(80): set(CMAKE_BUILD_TOOL ${CMAKE_MAKE_PROGRAM} CACHE INTERNAL What is the target build tool cmake is generating for. ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake(84): mark_as_advanced(CMAKE_BUILD_TOOL CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(255): if(NOT CMAKE_CXX_CREATE_SHARED_LIBRARY ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(256): set(CMAKE_CXX_CREATE_SHARED_LIBRARY -o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(261): if(NOT CMAKE_CXX_CREATE_SHARED_MODULE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(262): set(CMAKE_CXX_CREATE_SHARED_MODULE ${CMAKE_CXX_CREATE_SHARED_LIBRARY} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(268): if(NOT DEFINED CMAKE_CXX_ARCHIVE_CREATE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(269): set(CMAKE_CXX_ARCHIVE_CREATE cr ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(271): if(NOT DEFINED CMAKE_CXX_ARCHIVE_APPEND ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(272): set(CMAKE_CXX_ARCHIVE_APPEND r ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(274): if(NOT DEFINED CMAKE_CXX_ARCHIVE_FINISH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(275): set(CMAKE_CXX_ARCHIVE_FINISH ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(279): if(NOT CMAKE_CXX_COMPILE_OBJECT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(280): set(CMAKE_CXX_COMPILE_OBJECT -o -c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(284): if(NOT CMAKE_CXX_LINK_EXECUTABLE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(285): set(CMAKE_CXX_LINK_EXECUTABLE -o ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(289): mark_as_advanced(CMAKE_BUILD_TOOL CMAKE_VERBOSE_MAKEFILE CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_DEBUG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeCXXInformation.cmake(298): set(CMAKE_CXX_INFORMATION_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(15): if(CMAKE_CXX_COMPILER_FORCED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(22): include(CMakeTestCompilerCommon ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(15): function(PrintTestCompilerStatus LANG MSG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(26): unset(CMAKE_CXX_COMPILER_WORKS CACHE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(33): if(NOT CMAKE_CXX_COMPILER_WORKS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(34): PrintTestCompilerStatus(CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(16): if(CMAKE_GENERATOR MATCHES Make ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(17): message(STATUS Check for working ${LANG} compiler: ${CMAKE_${LANG}_COMPILER}${MSG} ) -- Check for working CXX compiler: /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-g++ /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(35): file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCXXCompiler.cxx #ifndef __cplusplus\n # error \"The CMAKE_CXX_COMPILER is set to a C compiler\"\n #endif\n int main(){return 0;}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(40): try_compile(CMAKE_CXX_COMPILER_WORKS ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCXXCompiler.cxx OUTPUT_VARIABLE __CMAKE_CXX_COMPILER_OUTPUT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(44): set(CMAKE_CXX_COMPILER_WORKS ${CMAKE_CXX_COMPILER_WORKS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(45): unset(CMAKE_CXX_COMPILER_WORKS CACHE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(46): set(CXX_TEST_WAS_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(49): if(NOT CMAKE_CXX_COMPILER_WORKS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(58): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(59): if(CXX_TEST_WAS_RUN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(60): PrintTestCompilerStatus(CXX -- works ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(16): if(CMAKE_GENERATOR MATCHES Make ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake(17): message(STATUS Check for working ${LANG} compiler: ${CMAKE_${LANG}_COMPILER}${MSG} ) -- Check for working CXX compiler: /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-g++ -- works /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(61): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Determining if the CXX compiler works passed with the following output:\n${__CMAKE_CXX_COMPILER_OUTPUT}\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(67): include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerABI.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(19): include(${CMAKE_ROOT}/Modules/CMakeParseImplicitLinkInfo.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(19): function(CMAKE_PARSE_IMPLICIT_LINK_INFO text lib_var dir_var fwk_var log_var obj_regex ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(21): function(CMAKE_DETERMINE_COMPILER_ABI lang src ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(68): CMAKE_DETERMINE_COMPILER_ABI(CXX ${CMAKE_ROOT}/Modules/CMakeCXXCompilerABI.cpp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(22): if(NOT DEFINED CMAKE_${lang}_ABI_COMPILED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(23): message(STATUS Detecting ${lang} compiler ABI info ) -- Detecting CXX compiler ABI info /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(26): set(BIN ${CMAKE_PLATFORM_INFO_DIR}/CMakeDetermineCompilerABI_${lang}.bin ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(27): set(CMAKE_FLAGS ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(28): if(DEFINED CMAKE_${lang}_VERBOSE_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(29): set(CMAKE_FLAGS -DCMAKE_EXE_LINKER_FLAGS=${CMAKE_${lang}_VERBOSE_FLAG} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(31): try_compile(CMAKE_${lang}_ABI_COMPILED ${CMAKE_BINARY_DIR} ${src} CMAKE_FLAGS ${CMAKE_FLAGS} -DCMAKE_${lang}_STANDARD_LIBRARIES= --no-warn-unused-cli OUTPUT_VARIABLE OUTPUT COPY_FILE ${BIN} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(43): set(CMAKE_${lang}_ABI_COMPILED ${CMAKE_${lang}_ABI_COMPILED} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(44): unset(CMAKE_${lang}_ABI_COMPILED CACHE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(45): set(CMAKE_${lang}_ABI_COMPILED ${CMAKE_${lang}_ABI_COMPILED} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(48): if(CMAKE_${lang}_ABI_COMPILED ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(49): message(STATUS Detecting ${lang} compiler ABI info - done ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(50): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Detecting ${lang} compiler ABI info compiled with the following output:\n${OUTPUT}\n\n )-- Detecting CXX compiler ABI info - done /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(52): file(STRINGS ${BIN} ABI_STRINGS LIMIT_COUNT 2 REGEX INFO:[^[]*\\[ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(53): foreach(info ${ABI_STRINGS} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(54): if(${info} MATCHES .*INFO:sizeof_dptr\\[0*([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(55): string(REGEX REPLACE .*INFO:sizeof_dptr\\[0*([^]]*)\\].* \\1 ABI_SIZEOF_DPTR ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(57): if(${info} MATCHES .*INFO:abi\\[([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(54): if(${info} MATCHES .*INFO:sizeof_dptr\\[0*([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(57): if(${info} MATCHES .*INFO:abi\\[([^]]*)\\].* ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(58): string(REGEX REPLACE .*INFO:abi\\[([^]]*)\\].* \\1 ABI_NAME ${info} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(62): if(ABI_SIZEOF_DPTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(63): set(CMAKE_${lang}_SIZEOF_DATA_PTR ${ABI_SIZEOF_DPTR} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(68): if(ABI_NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(69): set(CMAKE_${lang}_COMPILER_ABI ${ABI_NAME} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(73): set(implicit_dirs ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(74): set(implicit_libs ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(75): set(implicit_fwks ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(76): if(CMAKE_${lang}_VERBOSE_FLAG ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(77): CMAKE_PARSE_IMPLICIT_LINK_INFO(${OUTPUT} implicit_libs implicit_dirs implicit_fwks log ${CMAKE_${lang}_IMPLICIT_OBJECT_REGEX} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(20): set(implicit_libs_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(21): set(implicit_dirs_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(22): set(implicit_fwks_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(23): set(log ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(26): set(linker CMAKE_LINKER-NOTFOUND ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(27): if(CMAKE_LINKER ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(28): get_filename_component(linker ${CMAKE_LINKER} NAME ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(32): set(linker_regex ^( *|.*[/\\])(${linker}|ld|collect2)[^/\\]*( |$) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(33): set(linker_exclude_regex collect2 version ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(34): set(log ${log} link line regex: [${linker_regex}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(35): string(REGEX REPLACE \r?\n ; output_lines ${text} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(36): foreach(line IN LISTS output_lines ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(99): elseif(${line} MATCHES LPATH(=| is:? ) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(106): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(107): set(log ${log} ignore line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(37): set(cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(38): if(${line} MATCHES ${linker_regex} AND NOT ${line} MATCHES ${linker_exclude_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(40): if(XCODE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(50): if(UNIX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(51): separate_arguments(args UNIX_COMMAND ${line} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(55): list(GET args 0 cmd ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(57): if(${cmd} MATCHES ${linker_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(58): set(log ${log} link line: [${line}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(59): string(REGEX REPLACE ;-([LYz]); ;-\\1 args ${args} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(60): foreach(arg IN LISTS args ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(63): string(REGEX REPLACE ^-L dir ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(64): list(APPEND implicit_dirs_tmp ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(65): set(log ${log} arg [${arg}] ==> dir [${dir}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(68): string(REGEX REPLACE ^-l lib ${arg} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(69): list(APPEND implicit_libs_tmp ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(70): set(log ${log} arg [${arg}] ==> lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(61): if(${arg} MATCHES ^-L(.:)?[/\\] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(66): elseif(${arg} MATCHES ^-l[^:] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(71): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.a$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(75): elseif(${arg} MATCHES ^(.:)?[/\\].*\\.o$ AND obj_regex AND ${arg} MATCHES ${obj_regex} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(80): elseif(${arg} MATCHES ^-Y(P,)?[^0-9] ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(86): elseif(${arg} MATCHES ^-l: ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(90): elseif(${arg} MATCHES ^-z(all|default|weak)extract ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(94): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(95): set(log ${log} arg [${arg}] ==> ignore\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(98): break() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(112): if(${output_lines} MATCHES ;Library search paths:((;\t[^;]+)+) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(117): if(${output_lines} MATCHES ;Framework search paths:((;\t[^;]+)+) ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(125): set(implicit_libs ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(126): foreach(lib IN LISTS implicit_libs_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(129): elseif(IS_ABSOLUTE ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(135): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(136): list(APPEND implicit_libs ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(129): elseif(IS_ABSOLUTE ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(135): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(136): list(APPEND implicit_libs ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(129): elseif(IS_ABSOLUTE ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(135): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(136): list(APPEND implicit_libs ${lib} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(127): if(${lib} MATCHES ^(crt.*\\.o|gcc.*|System.*)$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(128): set(log ${log} remove lib [${lib}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(141): set(desc_dirs library ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(142): set(desc_fwks framework ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(143): foreach(t dirs fwks ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(144): set(implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(145): foreach(d IN LISTS implicit_${t}_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(146): get_filename_component(dir ${d} ABSOLUTE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(147): string(FIND ${dir} ${CMAKE_FILES_DIRECTORY}/ pos ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(148): if(NOT pos LESS 0 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(150): else() /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(151): set(msg ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(152): list(APPEND implicit_${t} ${dir} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(154): set(log ${log} collapse ${desc_${t}} dir [${d}] ==> [${dir}]${msg}\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(156): list(REMOVE_DUPLICATES implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(144): set(implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(145): foreach(d IN LISTS implicit_${t}_tmp ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(156): list(REMOVE_DUPLICATES implicit_${t} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(160): set(log ${log} implicit libs: [${implicit_libs}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(161): set(log ${log} implicit dirs: [${implicit_dirs}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(162): set(log ${log} implicit fwks: [${implicit_fwks}]\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(165): set(${lib_var} ${implicit_libs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(166): set(${dir_var} ${implicit_dirs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(167): set(${fwk_var} ${implicit_fwks} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake(168): set(${log_var} ${log} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(79): file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log Parsed ${lang} implicit link information from above output:\n${log}\n\n ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(85): if(${lang} MATCHES Fortran AND ${CMAKE_GENERATOR} MATCHES Visual Studio ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(107): if(DEFINED CMAKE_OSX_ARCHITECTURES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(113): set(CMAKE_${lang}_IMPLICIT_LINK_LIBRARIES ${implicit_libs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(114): set(CMAKE_${lang}_IMPLICIT_LINK_DIRECTORIES ${implicit_dirs} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(115): set(CMAKE_${lang}_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES ${implicit_fwks} PARENT_SCOPE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(118): if(CMAKE_LIBRARY_ARCHITECTURE_REGEX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(119): foreach(dir ${implicit_dirs} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake(120): if(${dir} MATCHES /lib/${CMAKE_LIBRARY_ARCHITECTURE_REGEX}$ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(71): configure_file(${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in ${CMAKE_PLATFORM_INFO_DIR}/CMakeCXXCompiler.cmake @ONLY IMMEDIATE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(76): include(${CMAKE_PLATFORM_INFO_DIR}/CMakeCXXCompiler.cmake ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(1): set(CMAKE_CXX_COMPILER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-g++ ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(2): set(CMAKE_CXX_COMPILER_ARG1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(3): set(CMAKE_CXX_COMPILER_ID GNU ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(4): set(CMAKE_CXX_COMPILER_VERSION 4.7.2 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(5): set(CMAKE_CXX_PLATFORM_ID Linux ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(7): set(CMAKE_AR /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ar ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(8): set(CMAKE_RANLIB /bulk/baustelle/raspberry/ptxdistpi/selected_toolchain/arm-1136jfs-linux-gnueabihf-ranlib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(9): set(CMAKE_LINKER /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/lib/wrapper/arm-1136jfs-linux-gnueabihf-ld ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(10): set(CMAKE_COMPILER_IS_GNUCXX 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(11): set(CMAKE_CXX_COMPILER_LOADED 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(12): set(CMAKE_CXX_COMPILER_WORKS TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(13): set(CMAKE_CXX_ABI_COMPILED TRUE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(14): set(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(15): set(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(16): if(CMAKE_COMPILER_IS_CYGWIN ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(21): set(CMAKE_CXX_COMPILER_ENV_VAR CXX ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(23): if(CMAKE_COMPILER_IS_MINGW ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(26): set(CMAKE_CXX_COMPILER_ID_RUN 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(27): set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(28): set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(29): set(CMAKE_CXX_LINKER_PREFERENCE 30 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(30): set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(33): set(CMAKE_CXX_SIZEOF_DATA_PTR 4 ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(34): set(CMAKE_CXX_COMPILER_ABI ELF ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(35): set(CMAKE_CXX_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(37): if(CMAKE_CXX_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(38): set(CMAKE_SIZEOF_VOID_P ${CMAKE_CXX_SIZEOF_DATA_PTR} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(41): if(CMAKE_CXX_COMPILER_ABI ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(42): set(CMAKE_INTERNAL_PLATFORM_ABI ${CMAKE_CXX_COMPILER_ABI} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(45): if(CMAKE_CXX_LIBRARY_ARCHITECTURE ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(52): set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES stdc++;m;c ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(53): set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/lib;/bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-target/usr/lib;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/lib/gcc/arm-1136jfs-linux-gnueabihf/4.7.2;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/lib/gcc;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/arm-1136jfs-linux-gnueabihf/lib;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/sysroot-arm-1136jfs-linux-gnueabihf/lib;/bulk/opt/OSELAS.Toolchain-2012.12.1/arm-1136jfs-linux-gnueabihf/gcc-4.7.2-glibc-2.16.0-binutils-2.22-kernel-3.6-sanitized/sysroot-arm-1136jfs-linux-gnueabihf/usr/lib ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3-build/CMakeFiles/2.8.11/CMakeCXXCompiler.cmake(54): set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(78): if(CMAKE_CXX_SIZEOF_DATA_PTR ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(79): foreach(f ${CMAKE_CXX_ABI_FILES} ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(82): unset(CMAKE_CXX_ABI_FILES ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/sysroot-host/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake(86): unset(__CMAKE_CXX_COMPILER_OUTPUT ) /bulk/baustelle/raspberry/ptxdistpi/platform-raspberrypi/build-target/raspicamtest-0.0.3/CMakeLists.txt(3): find_package(raspicam REQUIRED ) CMake Error at CMakeLists.txt:3 (find_package): By not providing "Findraspicam.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "raspicam", but CMake did not find one. Could not find a package configuration file provided by "raspicam" with any of the following names: raspicamConfig.cmake raspicam-config.cmake Add the installation prefix of "raspicam" to CMAKE_PREFIX_PATH or set "raspicam_DIR" to a directory containing one of the above files. If "raspicam" provides a separate development package or SDK, be sure it has been installed. -- Configuring incomplete, errors occurred! -- ptxdist mailing list ptxdist@pengutronix.de