View Issue Details [ Jump to Notes ] | [ Print ] | ||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||
0015880 | CMake | CMake | public | 2015-12-12 06:43 | 2016-06-10 14:31 | ||||
Reporter | Dennis Clarke | ||||||||
Assigned To | Kitware Robot | ||||||||
Priority | normal | Severity | major | Reproducibility | always | ||||
Status | closed | Resolution | moved | ||||||
Platform | Fujitsu M4000 SPARC VII+ | OS | Solaris 10 | OS Version | s10s_u11wos_24a | ||||
Product Version | CMake 3.4.1 | ||||||||
Target Version | Fixed in Version | ||||||||
Summary | 0015880: Trouble building CMake on Solaris 10 | ||||||||
Description | Extracted cmake-3.4.1 sources and did : 1) ./bootstrap This seemed to run fine. 2) /usr/local/bin/gmake This seems to run fine. 3) /usr/local/bin/gmake test This step produces many failures. | ||||||||
Steps To Reproduce | 1) Extract cmake source. 2) Set up environemt for reasonable compile with CFLAGS and CXXFLAGS that enable later debuging if needed. AR=/usr/ccs/bin/ar AS=/usr/ccs/bin/as BUILD=/usr/local/build CC=/opt/solarisstudio12.4/bin/cc CFLAGS=-errfmt=error -erroff=%none -errshort=full -xstrconst -xildoff -m64 \ -xmemalign=8s -xnolibmil -Xa -xcode=pic32 -xregs=no%appl -xlibmieee -mc -g -xs \ -ftrap=%none -Qy -xbuiltin=%none -xdebugformat=dwarf -xunroll=1 \ -xtarget=ultraT2 -xcache=8/16/4:4096/64/16 CONFIG_SHELL=/usr/local/bin/bash CPPFLAGS=-I/usr/local/include -D_TS_ERRNO -D_POSIX_PTHREAD_SEMANTICS -D_LARGEFILE64_SOURCE CXXFLAGS=-dalign -erroff=%none -errtags=yes -ftrap=%none -g -xcode=pic32 -m64 \ -mc -xunroll=1 -xbuiltin=%none -xtarget=ultraT2 -xcache=8/16/4:4096/64/16 \ -xdepend=no -xnolibmopt -xlinkopt=0 -xnolibmil -xregs=no%appl -xs \ -D_POSIX_PTHREAD_SEMANTICS -D_LARGEFILE64_SOURCE -D_TS_ERRNO CXX=/opt/solarisstudio12.4/bin/CC EDITOR=/usr/xpg6/bin/vi GREP=/usr/local/bin/ggrep HOME=/export/home/dclarke LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 LC_TIME=en_US.UTF-8 LD_OPTIONS=-64 -R/usr/local/lib/:/usr/local/lib -L/usr/local/lib/:/usr/local/lib LD_RUN_PATH=/usr/local/lib LD=/usr/ccs/bin/sparcv9/ld LIBTOOL=/usr/local/bin/libtool M4=/usr/local/bin/gm4 MAKE=/usr/local/bin/gmake MANPATH=/usr/share/man:/usr/X11/share/man NM=/usr/ccs/bin/sparcv9/nm -p PAGER=/usr/xpg4/bin/more PATH=/usr/xpg6/bin:/usr/xpg4/bin:/usr/ccs/bin:/opt/solarisstudio12.4/bin:/usr/bin:/sbin:/bin:/usr/sbin:/usr/dt/bin:/usr/openwin/bin:/opt/schily/bin PERL=/usr/local/bin/perl PKG_CONFIG_PATH=/usr/local/lib/pkgconfig PWD=/usr/local/build/cmake-3.4.1_SunOS5.10_sparcv9.001 SED=/usr/local/bin/gsed SHELL=/usr/xpg4/bin/sh SHLVL=1 SRC=/usr/local/src TERM=xterm TZ=GMT0 VISUAL=/usr/xpg6/bin/vi XTERM_LOCALE=en_US.UTF-8 3) run bootstrap and see output as detailed in attached log file cmake-3.4.1_SunOS5.10_sparcv9.001.bootstrap.log.gz 4) run GNU gmake and see output as detailed in log file cmake-3.4.1_SunOS5.10_sparcv9.001.build.log 5) run GNU make test and see many failures detailed in log file cmake-3.4.1_SunOS5.10_sparcv9.001.test.log | ||||||||
Additional Information | Any test failure from the test suite is reasonable grounds to reject install of the software. If there is some way to determine that these failures are false or not relevant then that would allow the cmake to be installed. At the moment, even the very first test fails : Running tests... Test project /usr/local/build/cmake-3.4.1_SunOS5.10_sparcv9.001 Guessing configuration NoConfig Start 1: SystemInformationNew 1/417 Test #1: SystemInformationNew .............................***Failed 3.33 sec etc. I will say that some strange output was seen during the bootstrap phase thus : -- Check size of __int64 -- Check size of __int64 - failed This integer type is not defined within IEEE Std 1003.1, 2013 Edition nor in ISO/IEC 9899:1990 Programming language - C or anywhere else I can find. The leading double underscore suggests this is some internal typedef buried somewhere. I also see a ton of failures for curl interfaces and yet I do have curl 7.45.0 installed : curl 7.45.0 (sparc-sun-solaris2.10) libcurl/7.45.0 OpenSSL/1.0.2e zlib/1.2.8 libidn/1.29 libssh2/1.4.3 Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp scp sftp smb smbs smtp smtps telnet tftp Features: IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP UnixSockets Most likely this is a PATH issue. Not sure why cmake needs access to curl in any case. Is there a way to build a minimal cmake that will pass its own test suite on a production Solaris 10 server? | ||||||||
Tags | No tags attached. | ||||||||
Attached Files | ![]() ![]() | ||||||||
Relationships | ||||||||||||||||
|
Relationships |
Notes | |
(0039971) Rolf Eike Beer (developer) 2015-12-12 07:09 |
CMake isn't expected to find everything it checks for during configuration. The __int64 types for example are defined by Microsoft compilers before they started supporting <cstdint>. There are nightly builds on Solaris 10 machines (at least what I can tell from the build names), see here: https://open.cdash.org/index.php?project=CMake [^] . Those have few failures. It would be helpful if you could include the complete test logs, they are in the Testing/ subdirectory. Or run "ctest -V" and pipe the output to a file. |
(0039972) Dennis Clarke (reporter) 2015-12-12 07:58 |
I am slowly learning that this mantis interface will time out or throw away my entry if I am not careful. so I will start over again. I tried another bootstrap with different options and I am in the middle of that now. Not sure what the benefit will be. I can not reach the link you posted .. it does not respond and most likely won't help me as those test machines are not accessible so that I could see what else is on them. Most likely a collection of other GNU tools and various things to allow cmake to compile. I attached the log files in a compressed tarball. Hope I can work forwards on this and get a valid cmake because I need it to compile MySQL from sources. |
(0039979) Brad King (manager) 2015-12-14 08:55 |
For reference, additional problems on the same platform are reported in 0015881, 0015882, 0015883 but we're closing those as duplicates to keep discussion of the trouble focused in one place. |
(0039983) Brad King (manager) 2015-12-14 09:21 |
Issues 0015881 and 0015882 appear to be related to difficulty using system-installed libraries, but this issue reports success in building CMake with the default options. The attempt here seems like a better starting point to get a working CMake. The link in 0015880:0039971 is valid but some older browsers may have trouble with the SSL cert. The dashboard shows two separate Solaris 10 machines with the Studio 12.4 compiler, and both compile successfully. The only test failures are related to the C++11 support as discussed here: http://thread.gmane.org/gmane.comp.programming.tools.cmake.devel/14544 [^] but that should not be a problem for building MySQL. If you have a successful compilation of CMake, even if 'ctest' reports some failures, you should still be able to use it to build MySQL. |
(0039984) Brad King (manager) 2015-12-14 10:30 |
$ uname -mpvsr SunOS 5.10 Generic_147440-01 sun4u sparc $ wget -c https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] $ shasum -a 256 cmake-3.4.1.tar.gz d41462bdd80dc37f0d5608167b354bb3af8c068eee640be04c907154c5c113e2 cmake-3.4.1.tar.gz $ gunzip cmake-3.4.1.tar.gz $ tar xf cmake-3.4.1.tar $ mkdir cmake-3.4.1-build $ cd cmake-3.4.1-build $ export CC=/opt/solarisstudio12.4/bin/suncc CXX=/opt/solarisstudio12.4/bin/sunCC FC=/opt/solarisstudio12.4/bin/sunf95 $ $CC -V cc: Sun C 5.13 SunOS_sparc 2014/10/20 $ $CXX -V CC: Sun C++ 5.13 SunOS_sparc 2014/10/20 $ ../cmake-3.4.1/bootstrap --prefix=$HOME/cmake-3.4.1-install ...(bootstrap compilation finishes and runs its cmake for the main configuration)... -- The C compiler identification is SunPro 5.13.0 -- The CXX compiler identification is SunPro 5.13.0 ... CMake has bootstrapped. Now run gmake. $ gmake -j 8 $ gmake install $ echo $? 0 |
(0040033) Dennis Clarke (reporter) 2016-01-01 01:39 |
Your process does not work on a Solaris 10 system unless you have some magic installed. I am not sure where you gat shasum from. That does not exist in a Solaris system anywhere. However gmake does. In any case here is what fails on a bare bones Solaris 10 server : Last login: Sun Dec 27 11:13:55 2015 from ns1-int Oracle Corporation SunOS 5.10 Generic Patch January 2005 mercury $ pwd /export/home/dclarke mercury $ uname -a SunOS mercury 5.10 Generic_150401-31 i86pc i386 i86pc I know. This is not a SPARC system. Yet. I have plenty of both but this is the first test run following in your footsteps. mercury $ psrinfo -pv The physical processor has 8 virtual processors (1 3 5 7 9 11 13 15) x86 (chipid 0x0 GenuineIntel family 6 model 44 step 2 clock 2400 MHz) Intel(r) Xeon(r) CPU E5620 @ 2.40GHz The physical processor has 8 virtual processors (0 2 4 6 8 10 12 14) x86 (chipid 0x1 GenuineIntel family 6 model 44 step 2 clock 2400 MHz) Intel(r) Xeon(r) CPU E5620 @ 2.40GHz mercury $ mercury $ /usr/sfw/bin/wget https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] --2016-01-01 04:47:40-- https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] Resolving cmake.org... 66.194.253.19 Connecting to cmake.org|66.194.253.19|:443... connected. ERROR: cannot verify cmake.org's certificate, issued by `/C=US/O=DigiCert Inc/CN=DigiCert SHA2 Secure Server CA': Unable to locally verify the issuer's authority. ERROR: certificate common name `*.kitware.com' doesn't match requested host name `cmake.org'. To connect to cmake.org insecurely, use `--no-check-certificate'. mercury $ mercury $ /usr/sfw/bin/wget --no-check-certificate https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] --2016-01-01 04:48:01-- https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] Resolving cmake.org... 66.194.253.19 Connecting to cmake.org|66.194.253.19|:443... connected. WARNING: cannot verify cmake.org's certificate, issued by `/C=US/O=DigiCert Inc/CN=DigiCert SHA2 Secure Server CA': Unable to locally verify the issuer's authority. WARNING: certificate common name `*.kitware.com' doesn't match requested host name `cmake.org'. HTTP request sent, awaiting response... 200 OK Length: 6721965 (6.4M) [application/x-gzip] Saving to: `cmake-3.4.1.tar.gz' 100%[==========================================================================================>] 6,721,965 583K/s in 11s 2016-01-01 04:48:13 (585 KB/s) - `cmake-3.4.1.tar.gz' saved [6721965/6721965] mercury $ which shasum no shasum in /usr/xpg6/bin /usr/xpg4/bin /usr/ccs/bin /usr/bin /opt/solarisstudio12.4/bin /sbin /bin /usr/sbin /usr/dt/bin /usr/openwin/bin /usr/X11/bin /opt/schily/bin /usr/local/ssl/bin mercury $ mercury $ digest -a sha256 cmake-3.4.1.tar.gz d41462bdd80dc37f0d5608167b354bb3af8c068eee640be04c907154c5c113e2 mercury $ mercury $ gunzip cmake-3.4.1.tar.gz mercury $ pwd /export/home/dclarke mercury $ tar xf cmake-3.4.1.tar mercury $ mkdir cmake-3.4.1-build mercury $ cd cmake-3.4.1-build mercury $ export CC=/opt/solarisstudio12.4/bin/suncc CXX=/opt/solarisstudio12.4/bin/sunCC FC=/opt/solarisstudio12.4/bin/sunf95 Comment : why? The compilers all exist in /usr/bin mercury $ ls -l /usr/bin/cc /usr/bin/CC /usr/bin/f95 lrwxrwxrwx 1 root root 29 Dec 19 04:43 /usr/bin/CC -> /opt/solarisstudio12.4/bin/CC lrwxrwxrwx 1 root root 29 Dec 19 04:43 /usr/bin/cc -> /opt/solarisstudio12.4/bin/cc lrwxrwxrwx 1 root root 30 Dec 19 04:43 /usr/bin/f95 -> /opt/solarisstudio12.4/bin/f95 mercury $ env | sort AR=/usr/ccs/bin/ar AS=/usr/ccs/bin/as CC=/opt/solarisstudio12.4/bin/suncc COLUMNS=132 CONFIG_SHELL=/bin/bash CXX=/opt/solarisstudio12.4/bin/sunCC EDITOR=/usr/xpg6/bin/vi FC=/opt/solarisstudio12.4/bin/sunf95 HOME=/export/home/dclarke LANG=C LC_ALL=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LD=/usr/ccs/bin/amd64/ld LINES=43 LOGNAME=dclarke MAIL=/usr/mail/dclarke NM=/usr/xpg4/bin/nm -p PATH=/usr/xpg6/bin:/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/opt/solarisstudio12.4/bin:/sbin:/bin:/usr/sbin:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/opt/schily/bin:/usr/local/ssl/bin PWD=/export/home/dclarke/cmake-3.4.1-build SHELL=/sbin/sh SSH_CLIENT=192.168.35.19 35629 443 SSH_CONNECTION=192.168.35.19 35629 192.168.35.99 443 SSH_TTY=/dev/pts/1 TERM=vt100 TZ=GMT0 USER=dclarke VISUAL=/usr/xpg6/bin/vi XTERM_LOCALE=C _=/usr/xpg4/bin/env mercury $ pwd /export/home/dclarke/cmake-3.4.1-build mercury $ date Fri Jan 1 04:51:59 GMT 2016 mercury $ $CC -V cc: Sun C 5.13 SunOS_i386 2014/10/20 mercury $ $CXX -V CC: Sun C++ 5.13 SunOS_i386 2014/10/20 mercury $ ../cmake-3.4.1/bootstrap --prefix=$HOME/cmake-3.4.1-install --------------------------------------------- CMake 3.4.1, Copyright 2000-2015 Kitware, Inc. C compiler on this system is: /opt/solarisstudio12.4/bin/suncc C++ compiler on this system is: /opt/solarisstudio12.4/bin/sunCC Makefile processor on this system is: make /opt/solarisstudio12.4/bin/sunCC is not GNU compiler /opt/solarisstudio12.4/bin/sunCC is SolarisStudio compiler /opt/solarisstudio12.4/bin/sunCC has setenv /opt/solarisstudio12.4/bin/sunCC has unsetenv /opt/solarisstudio12.4/bin/sunCC does not have environ in stdlib.h /opt/solarisstudio12.4/bin/sunCC has stl wstring /opt/solarisstudio12.4/bin/sunCC has struct stat with st_mtim member --------------------------------------------- /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmake.cxx -o cmake.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmakemain.cxx -o cmakemain.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmcmd.cxx -o cmcmd.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCommandArgumentLexer.cxx -o cmCommandArgumentLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCommandArgumentParser.cxx -o cmCommandArgumentParser.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCommandArgumentParserHelper.cxx -o cmCommandArgumentParserHelper.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCommonTargetGenerator.cxx -o cmCommonTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCPackPropertiesGenerator.cxx -o cmCPackPropertiesGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmDefinitions.cxx -o cmDefinitions.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmDepends.cxx -o cmDepends.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmDependsC.cxx -o cmDependsC.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmDocumentationFormatter.cxx -o cmDocumentationFormatter.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmPolicies.cxx -o cmPolicies.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmProperty.cxx -o cmProperty.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmPropertyMap.cxx -o cmPropertyMap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmPropertyDefinition.cxx -o cmPropertyDefinition.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmPropertyDefinitionMap.cxx -o cmPropertyDefinitionMap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmMakeDepend.cxx -o cmMakeDepend.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmMakefile.cxx -o cmMakefile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExportFileGenerator.cxx -o cmExportFileGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExportInstallFileGenerator.cxx -o cmExportInstallFileGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExportTryCompileFileGenerator.cxx -o cmExportTryCompileFileGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExportSet.cxx -o cmExportSet.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExportSetMap.cxx -o cmExportSetMap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExternalMakefileProjectGenerator.cxx -o cmExternalMakefileProjectGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionEvaluationFile.cxx -o cmGeneratorExpressionEvaluationFile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratedFileStream.cxx -o cmGeneratedFileStream.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorTarget.cxx -o cmGeneratorTarget.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionContext.cxx -o cmGeneratorExpressionContext.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionDAGChecker.cxx -o cmGeneratorExpressionDAGChecker.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionEvaluator.cxx -o cmGeneratorExpressionEvaluator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionLexer.cxx -o cmGeneratorExpressionLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionNode.cxx -o cmGeneratorExpressionNode.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpressionParser.cxx -o cmGeneratorExpressionParser.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGeneratorExpression.cxx -o cmGeneratorExpression.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGlobalCommonGenerator.cxx -o cmGlobalCommonGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGlobalGenerator.cxx -o cmGlobalGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstallDirectoryGenerator.cxx -o cmInstallDirectoryGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmLocalCommonGenerator.cxx -o cmLocalCommonGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmLocalGenerator.cxx -o cmLocalGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstalledFile.cxx -o cmInstalledFile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstallGenerator.cxx -o cmInstallGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstallExportGenerator.cxx -o cmInstallExportGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstallFilesGenerator.cxx -o cmInstallFilesGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstallScriptGenerator.cxx -o cmInstallScriptGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmInstallTargetGenerator.cxx -o cmInstallTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmScriptGenerator.cxx -o cmScriptGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmSourceFile.cxx -o cmSourceFile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmSourceFileLocation.cxx -o cmSourceFileLocation.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmState.cxx -o cmState.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmSystemTools.cxx -o cmSystemTools.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmTestGenerator.cxx -o cmTestGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmVersion.cxx -o cmVersion.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmFileTimeComparison.cxx -o cmFileTimeComparison.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmGlobalUnixMakefileGenerator3.cxx -o cmGlobalUnixMakefileGenerator3.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmLocalUnixMakefileGenerator3.cxx -o cmLocalUnixMakefileGenerator3.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmMakefileExecutableTargetGenerator.cxx -o cmMakefileExecutableTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmMakefileLibraryTargetGenerator.cxx -o cmMakefileLibraryTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmMakefileTargetGenerator.cxx -o cmMakefileTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmMakefileUtilityTargetGenerator.cxx -o cmMakefileUtilityTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmOutputConverter.cxx -o cmOutputConverter.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmOSXBundleGenerator.cxx -o cmOSXBundleGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmNewLineStyle.cxx -o cmNewLineStyle.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmBootstrapCommands1.cxx -o cmBootstrapCommands1.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmBootstrapCommands2.cxx -o cmBootstrapCommands2.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCommandsForBootstrap.cxx -o cmCommandsForBootstrap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmTarget.cxx -o cmTarget.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmTest.cxx -o cmTest.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCustomCommand.cxx -o cmCustomCommand.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCustomCommandGenerator.cxx -o cmCustomCommandGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmCacheManager.cxx -o cmCacheManager.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmListFileCache.cxx -o cmListFileCache.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmComputeLinkDepends.cxx -o cmComputeLinkDepends.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmComputeLinkInformation.cxx -o cmComputeLinkInformation.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmOrderDirectories.cxx -o cmOrderDirectories.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmComputeTargetDepends.cxx -o cmComputeTargetDepends.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmComputeComponentGraph.cxx -o cmComputeComponentGraph.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExprLexer.cxx -o cmExprLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExprParser.cxx -o cmExprParser.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmExprParserHelper.cxx -o cmExprParserHelper.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/cmake-3.4.1/Source/cmListFileLexer.c -o cmListFileLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/Directory.cxx -o Directory.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/EncodingCXX.cxx -o EncodingCXX.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/FStream.cxx -o FStream.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/Glob.cxx -o Glob.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/RegularExpression.cxx -o RegularExpression.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -DKWSYS_CXX_HAS_SETENV=1 -DKWSYS_CXX_HAS_UNSETENV=1 -DKWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=0 -DKWSYS_CXX_HAS_UTIMENSAT=0 -DKWSYS_CXX_HAS_UTIMES=0 -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/SystemTools.cxx -o SystemTools.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/EncodingC.c -o EncodingC.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/ProcessUNIX.c -o ProcessUNIX.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -DKWSYS_STRING_C -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/String.c -o String.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/System.c -o System.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/cmake-3.4.1/Source/kwsys/Terminal.c -o Terminal.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/cmake-3.4.1/Source -I/export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk cmake.o cmakemain.o cmcmd.o cmCommandArgumentLexer.o cmCommandArgumentParser.o cmCommandArgumentParserHelper.o cmCommonTargetGenerator.o cmCPackPropertiesGenerator.o cmDefinitions.o cmDepends.o cmDependsC.o cmDocumentationFormatter.o cmPolicies.o cmProperty.o cmPropertyMap.o cmPropertyDefinition.o cmPropertyDefinitionMap.o cmMakeDepend.o cmMakefile.o cmExportFileGenerator.o cmExportInstallFileGenerator.o cmExportTryCompileFileGenerator.o cmExportSet.o cmExportSetMap.o cmExternalMakefileProjectGenerator.o cmGeneratorExpressionEvaluationFile.o cmGeneratedFileStream.o cmGeneratorTarget.o cmGeneratorExpressionContext.o cmGeneratorExpressionDAGChecker.o cmGeneratorExpressionEvaluator.o cmGeneratorExpressionLexer.o cmGeneratorExpressionNode.o cmGeneratorExpressionParser.o cmGeneratorExpression.o cmGlobalCommonGenerator.o cmGlobalGenerator.o cmInstallDirectoryGenerator.o cmLocalCommonGenerator.o cmLocalGenerator.o cmInstalledFile.o cmInstallGenerator.o cmInstallExportGenerator.o cmInstallFilesGenerator.o cmInstallScriptGenerator.o cmInstallTargetGenerator.o cmScriptGenerator.o cmSourceFile.o cmSourceFileLocation.o cmState.o cmSystemTools.o cmTestGenerator.o cmVersion.o cmFileTimeComparison.o cmGlobalUnixMakefileGenerator3.o cmLocalUnixMakefileGenerator3.o cmMakefileExecutableTargetGenerator.o cmMakefileLibraryTargetGenerator.o cmMakefileTargetGenerator.o cmMakefileUtilityTargetGenerator.o cmOutputConverter.o cmOSXBundleGenerator.o cmNewLineStyle.o cmBootstrapCommands1.o cmBootstrapCommands2.o cmCommandsForBootstrap.o cmTarget.o cmTest.o cmCustomCommand.o cmCustomCommandGenerator.o cmCacheManager.o cmListFileCache.o cmComputeLinkDepends.o cmComputeLinkInformation.o cmOrderDirectories.o cmComputeTargetDepends.o cmComputeComponentGraph.o cmExprLexer.o cmExprParser.o cmExprParserHelper.o cmListFileLexer.o Directory.o EncodingCXX.o FStream.o Glob.o RegularExpression.o SystemTools.o EncodingC.o ProcessUNIX.o String.o System.o Terminal.o -o cmake loading initial cache file /export/home/dclarke/cmake-3.4.1-build/Bootstrap.cmk/InitialCacheFlags.cmake -- The C compiler identification is SunPro 5.13.0 -- The CXX compiler identification is SunPro 5.13.0 -- Check for working C compiler: /opt/solarisstudio12.4/bin/suncc -- Check for working C compiler: /opt/solarisstudio12.4/bin/suncc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /opt/solarisstudio12.4/bin/sunCC -- Check for working CXX compiler: /opt/solarisstudio12.4/bin/sunCC -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Checking if compiler supports C++11 unordered_map -- Checking if compiler supports C++11 unordered_map - no -- Looking for unsetenv -- Looking for unsetenv - found -- Looking for environ -- Looking for environ - not found -- Checking whether header cstdio is available -- Checking whether header cstdio is available - yes -- Checking for Large File Support -- Checking for Large File Support - yes -- Checking whether struct stat has st_mtim member -- Checking whether struct stat has st_mtim member - yes -- Checking whether C++ compiler has 'long long' -- Checking whether C++ compiler has 'long long' - yes -- Checking whether C++ compiler has '__int64' -- Checking whether C++ compiler has '__int64' - no -- Checking for C type size macros -- Checking for C type size macros - compiled -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of char -- Check size of char - done -- Check size of short -- Check size of short - done -- Check size of int -- Check size of int - done -- Check size of long -- Check size of long - done -- Check size of long long -- Check size of long long - done -- Check size of __int64 -- Check size of __int64 - failed -- Checking whether char is signed -- Checking whether char is signed - yes -- Checking whether wstring is available -- Checking whether wstring is available - yes -- Checking if istream supports long long -- Checking if istream supports long long - yes -- Checking if ostream supports long long -- Checking if ostream supports long long - yes -- Checking whether C compiler has ptrdiff_t in stddef.h -- Checking whether C compiler has ptrdiff_t in stddef.h - yes -- Checking whether C compiler has ssize_t in unistd.h -- Checking whether C compiler has ssize_t in unistd.h - yes -- Checking whether CXX compiler has setenv -- Checking whether CXX compiler has setenv - yes -- Checking whether CXX compiler has unsetenv -- Checking whether CXX compiler has unsetenv - yes -- Checking whether CXX compiler has environ in stdlib.h -- Checking whether CXX compiler has environ in stdlib.h - no -- Checking whether CXX compiler has utimes -- Checking whether CXX compiler has utimes - yes -- Checking whether CXX compiler has utimensat -- Checking whether CXX compiler has utimensat - yes -- Looking for include files sys/types.h, ifaddrs.h -- Looking for include files sys/types.h, ifaddrs.h - not found -- Checking whether CXX compiler has rlimit64 -- Checking whether CXX compiler has rlimit64 - yes -- Checking whether CXX compiler has atol -- Checking whether CXX compiler has atol - yes -- Checking whether CXX compiler has atoll -- Checking whether CXX compiler has atoll - yes -- Checking whether CXX compiler has _atoi64 -- Checking whether CXX compiler has _atoi64 - no -- Looking for C++ include execinfo.h -- Looking for C++ include execinfo.h - not found -- Checking whether CXX compiler has getloadavg -- Checking whether CXX compiler has getloadavg - no -- Looking for connect in socket;dl -- Looking for connect in socket;dl - found -- Looking for gethostbyname in c -- Looking for gethostbyname in c - not found -- Looking for recv in network;socket;dl -- Looking for recv in network;socket;dl - not found -- Looking for gethostbyname in nsl;socket;dl -- Looking for gethostbyname in nsl;socket;dl - found -- Looking for gethostname -- Looking for gethostname - found -- Looking for idna_to_ascii_lz in idn;nsl;socket;dl -- Looking for idna_to_ascii_lz in idn;nsl;socket;dl - found -- Looking for dlopen in idn;nsl;socket;dl -- Looking for dlopen in idn;nsl;socket;dl - found -- Looking for include file stdio.h -- Looking for include file stdio.h - found -- Looking for include files stdio.h, inttypes.h -- Looking for include files stdio.h, inttypes.h - found -- Looking for 3 include files stdio.h, ..., sys/filio.h -- Looking for 3 include files stdio.h, ..., sys/filio.h - found -- Looking for 4 include files stdio.h, ..., sys/ioctl.h -- Looking for 4 include files stdio.h, ..., sys/ioctl.h - found -- Looking for 5 include files stdio.h, ..., sys/param.h -- Looking for 5 include files stdio.h, ..., sys/param.h - found -- Looking for 6 include files stdio.h, ..., sys/poll.h -- Looking for 6 include files stdio.h, ..., sys/poll.h - found -- Looking for 7 include files stdio.h, ..., sys/resource.h -- Looking for 7 include files stdio.h, ..., sys/resource.h - found -- Looking for 8 include files stdio.h, ..., sys/select.h -- Looking for 8 include files stdio.h, ..., sys/select.h - found -- Looking for 9 include files stdio.h, ..., sys/socket.h -- Looking for 9 include files stdio.h, ..., sys/socket.h - found -- Looking for 10 include files stdio.h, ..., sys/sockio.h -- Looking for 10 include files stdio.h, ..., sys/sockio.h - found -- Looking for 11 include files stdio.h, ..., sys/stat.h -- Looking for 11 include files stdio.h, ..., sys/stat.h - found -- Looking for 12 include files stdio.h, ..., sys/time.h -- Looking for 12 include files stdio.h, ..., sys/time.h - found -- Looking for 14 include files stdio.h, ..., sys/uio.h -- Looking for 14 include files stdio.h, ..., sys/uio.h - found -- Looking for 15 include files stdio.h, ..., sys/un.h -- Looking for 15 include files stdio.h, ..., sys/un.h - found -- Looking for 16 include files stdio.h, ..., sys/utime.h -- Looking for 16 include files stdio.h, ..., sys/utime.h - found -- Looking for 17 include files stdio.h, ..., alloca.h -- Looking for 17 include files stdio.h, ..., alloca.h - found -- Looking for 18 include files stdio.h, ..., arpa/inet.h -- Looking for 18 include files stdio.h, ..., arpa/inet.h - found -- Looking for 19 include files stdio.h, ..., arpa/tftp.h -- Looking for 19 include files stdio.h, ..., arpa/tftp.h - found -- Looking for 20 include files stdio.h, ..., assert.h -- Looking for 20 include files stdio.h, ..., assert.h - found -- Looking for 21 include files stdio.h, ..., crypto.h -- Looking for 21 include files stdio.h, ..., crypto.h - not found -- Looking for 21 include files stdio.h, ..., des.h -- Looking for 21 include files stdio.h, ..., des.h - not found -- Looking for 21 include files stdio.h, ..., err.h -- Looking for 21 include files stdio.h, ..., err.h - not found -- Looking for 21 include files stdio.h, ..., errno.h -- Looking for 21 include files stdio.h, ..., errno.h - found -- Looking for 22 include files stdio.h, ..., fcntl.h -- Looking for 22 include files stdio.h, ..., fcntl.h - found -- Looking for 23 include files stdio.h, ..., idn-free.h -- Looking for 23 include files stdio.h, ..., idn-free.h - not found -- Looking for 23 include files stdio.h, ..., ifaddrs.h -- Looking for 23 include files stdio.h, ..., ifaddrs.h - not found -- Looking for 23 include files stdio.h, ..., io.h -- Looking for 23 include files stdio.h, ..., io.h - not found -- Looking for 23 include files stdio.h, ..., krb.h -- Looking for 23 include files stdio.h, ..., krb.h - not found -- Looking for 23 include files stdio.h, ..., libgen.h -- Looking for 23 include files stdio.h, ..., libgen.h - found -- Looking for 24 include files stdio.h, ..., limits.h -- Looking for 24 include files stdio.h, ..., limits.h - found -- Looking for 25 include files stdio.h, ..., locale.h -- Looking for 25 include files stdio.h, ..., locale.h - found -- Looking for 26 include files stdio.h, ..., net/if.h -- Looking for 26 include files stdio.h, ..., net/if.h - found -- Looking for 27 include files stdio.h, ..., netdb.h -- Looking for 27 include files stdio.h, ..., netdb.h - found -- Looking for 28 include files stdio.h, ..., netinet/in.h -- Looking for 28 include files stdio.h, ..., netinet/in.h - found -- Looking for 29 include files stdio.h, ..., netinet/tcp.h -- Looking for 29 include files stdio.h, ..., netinet/tcp.h - found -- Looking for 30 include files stdio.h, ..., pem.h -- Looking for 30 include files stdio.h, ..., pem.h - not found -- Looking for 30 include files stdio.h, ..., poll.h -- Looking for 30 include files stdio.h, ..., poll.h - found -- Looking for 31 include files stdio.h, ..., pwd.h -- Looking for 31 include files stdio.h, ..., pwd.h - found -- Looking for 32 include files stdio.h, ..., rsa.h -- Looking for 32 include files stdio.h, ..., rsa.h - not found -- Looking for 32 include files stdio.h, ..., setjmp.h -- Looking for 32 include files stdio.h, ..., setjmp.h - found -- Looking for 33 include files stdio.h, ..., sgtty.h -- Looking for 33 include files stdio.h, ..., sgtty.h - found -- Looking for 34 include files stdio.h, ..., signal.h -- Looking for 34 include files stdio.h, ..., signal.h - found -- Looking for 35 include files stdio.h, ..., ssl.h -- Looking for 35 include files stdio.h, ..., ssl.h - not found -- Looking for 35 include files stdio.h, ..., stdbool.h -- Looking for 35 include files stdio.h, ..., stdbool.h - not found -- Looking for 37 include files stdio.h, ..., stdlib.h -- Looking for 37 include files stdio.h, ..., stdlib.h - found -- Looking for 38 include files stdio.h, ..., string.h -- Looking for 38 include files stdio.h, ..., string.h - found -- Looking for 39 include files stdio.h, ..., strings.h -- Looking for 39 include files stdio.h, ..., strings.h - found -- Looking for 40 include files stdio.h, ..., stropts.h -- Looking for 40 include files stdio.h, ..., stropts.h - found -- Looking for 41 include files stdio.h, ..., termio.h -- Looking for 41 include files stdio.h, ..., termio.h - found -- Looking for 42 include files stdio.h, ..., termios.h -- Looking for 42 include files stdio.h, ..., termios.h - found -- Looking for 43 include files stdio.h, ..., time.h -- Looking for 43 include files stdio.h, ..., time.h - found -- Looking for 44 include files stdio.h, ..., tld.h -- Looking for 44 include files stdio.h, ..., tld.h - not found -- Looking for 44 include files stdio.h, ..., unistd.h -- Looking for 44 include files stdio.h, ..., unistd.h - found -- Looking for 45 include files stdio.h, ..., utime.h -- Looking for 45 include files stdio.h, ..., utime.h - found -- Looking for 46 include files stdio.h, ..., x509.h -- Looking for 46 include files stdio.h, ..., x509.h - not found -- Looking for 46 include files stdio.h, ..., process.h -- Looking for 46 include files stdio.h, ..., process.h - not found -- Looking for 47 include files stdio.h, ..., dlfcn.h -- Looking for 47 include files stdio.h, ..., dlfcn.h - found -- Looking for 48 include files stdio.h, ..., malloc.h -- Looking for 48 include files stdio.h, ..., malloc.h - found -- Looking for 49 include files stdio.h, ..., memory.h -- Looking for 49 include files stdio.h, ..., memory.h - found -- Looking for 50 include files stdio.h, ..., netinet/if_ether.h -- Looking for 50 include files stdio.h, ..., netinet/if_ether.h - found -- Looking for 52 include files stdio.h, ..., sockio.h -- Looking for 52 include files stdio.h, ..., sockio.h - not found -- Looking for 52 include files stdio.h, ..., sys/utsname.h -- Looking for 52 include files stdio.h, ..., sys/utsname.h - found -- Looking for 53 include files stdio.h, ..., idna.h -- Looking for 53 include files stdio.h, ..., idna.h - not found -- Check size of size_t -- Check size of size_t - done -- Check size of ssize_t -- Check size of ssize_t - done -- Check size of long long -- Check size of long long - done -- Check size of long -- Check size of long - done -- Check size of short -- Check size of short - done -- Check size of int -- Check size of int - done -- Check size of __int64 -- Check size of __int64 - failed -- Check size of time_t -- Check size of time_t - done -- Check size of off_t -- Check size of off_t - done -- Looking for basename -- Looking for basename - found -- Looking for socket -- Looking for socket - found -- Looking for poll -- Looking for poll - found -- Looking for select -- Looking for select - found -- Looking for strdup -- Looking for strdup - found -- Looking for strstr -- Looking for strstr - found -- Looking for strtok_r -- Looking for strtok_r - found -- Looking for strftime -- Looking for strftime - found -- Looking for uname -- Looking for uname - found -- Looking for strcasecmp -- Looking for strcasecmp - found -- Looking for stricmp -- Looking for stricmp - not found -- Looking for strcmpi -- Looking for strcmpi - not found -- Looking for strncmpi -- Looking for strncmpi - not found -- Looking for alarm -- Looking for alarm - found -- Looking for gethostbyaddr -- Looking for gethostbyaddr - not found -- Looking for gethostbyaddr_r -- Looking for gethostbyaddr_r - not found -- Looking for gettimeofday -- Looking for gettimeofday - found -- Looking for inet_addr -- Looking for inet_addr - not found -- Looking for inet_ntoa -- Looking for inet_ntoa - not found -- Looking for inet_ntoa_r -- Looking for inet_ntoa_r - not found -- Looking for tcsetattr -- Looking for tcsetattr - found -- Looking for tcgetattr -- Looking for tcgetattr - found -- Looking for perror -- Looking for perror - found -- Looking for closesocket -- Looking for closesocket - not found -- Looking for setvbuf -- Looking for setvbuf - found -- Looking for sigsetjmp -- Looking for sigsetjmp - found -- Looking for getpass_r -- Looking for getpass_r - not found -- Looking for strlcat -- Looking for strlcat - found -- Looking for getpwuid -- Looking for getpwuid - found -- Looking for geteuid -- Looking for geteuid - found -- Looking for utime -- Looking for utime - found -- Looking for gmtime_r -- Looking for gmtime_r - found -- Looking for localtime_r -- Looking for localtime_r - found -- Looking for gethostbyname -- Looking for gethostbyname - not found -- Looking for gethostbyname_r -- Looking for gethostbyname_r - not found -- Looking for signal -- Looking for signal - found -- Looking for SIGALRM -- Looking for SIGALRM - found -- Looking for strtoll -- Looking for strtoll - found -- Looking for _strtoi64 -- Looking for _strtoi64 - not found -- Looking for strerror_r -- Looking for strerror_r - found -- Looking for siginterrupt -- Looking for siginterrupt - found -- Looking for fork -- Looking for fork - found -- Looking for getaddrinfo -- Looking for getaddrinfo - found -- Looking for freeaddrinfo -- Looking for freeaddrinfo - found -- Looking for freeifaddrs -- Looking for freeifaddrs - not found -- Looking for pipe -- Looking for pipe - found -- Looking for ftruncate -- Looking for ftruncate - found -- Looking for getprotobyname -- Looking for getprotobyname - found -- Looking for getrlimit -- Looking for getrlimit - found -- Looking for idn_free -- Looking for idn_free - not found -- Looking for idna_strerror -- Looking for idna_strerror - not found -- Looking for tld_strerror -- Looking for tld_strerror - not found -- Looking for setlocale -- Looking for setlocale - found -- Looking for setrlimit -- Looking for setrlimit - found -- Looking for fcntl -- Looking for fcntl - found -- Looking for ioctl -- Looking for ioctl - found -- Looking for setsockopt -- Looking for setsockopt - found -- Looking for inet_pton -- Looking for inet_pton - not found -- Looking for sigaction -- Looking for sigaction - found -- Performing Curl Test HAVE_FCNTL_O_NONBLOCK -- Performing Curl Test HAVE_FCNTL_O_NONBLOCK - Success -- Performing Curl Test HAVE_IOCTLSOCKET -- Performing Curl Test HAVE_IOCTLSOCKET - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO -- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTL_FIONBIO -- Performing Curl Test HAVE_IOCTL_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR -- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR - Failed -- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK -- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK - Failed -- Performing Curl Test HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID -- Performing Curl Test HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID - Failed -- Performing Curl Test TIME_WITH_SYS_TIME -- Performing Curl Test TIME_WITH_SYS_TIME - Success -- Performing Curl Test HAVE_O_NONBLOCK -- Performing Curl Test HAVE_O_NONBLOCK - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5 -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5 - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7 -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7 - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8 -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8 - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3 -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3 - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5 -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5 - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6 -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6 - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6_REENTRANT - Failed -- Performing Curl Test HAVE_SOCKLEN_T -- Performing Curl Test HAVE_SOCKLEN_T - Success -- Performing Curl Test HAVE_IN_ADDR_T -- Performing Curl Test HAVE_IN_ADDR_T - Success -- Performing Curl Test HAVE_BOOL_T -- Performing Curl Test HAVE_BOOL_T - Failed -- Performing Curl Test STDC_HEADERS -- Performing Curl Test STDC_HEADERS - Success -- Performing Curl Test RETSIGTYPE_TEST -- Performing Curl Test RETSIGTYPE_TEST - Success -- Performing Curl Test HAVE_INET_NTOA_R_DECL -- Performing Curl Test HAVE_INET_NTOA_R_DECL - Failed -- Performing Curl Test HAVE_INET_NTOA_R_DECL_REENTRANT -- Performing Curl Test HAVE_INET_NTOA_R_DECL_REENTRANT - Failed -- Performing Curl Test HAVE_FILE_OFFSET_BITS -- Performing Curl Test HAVE_FILE_OFFSET_BITS - Success -- Performing Curl Test HAVE_GLIBC_STRERROR_R -- Performing Curl Test HAVE_GLIBC_STRERROR_R - Failed -- Performing Curl Test HAVE_POSIX_STRERROR_R -- Performing Curl Test HAVE_POSIX_STRERROR_R - Success -- Check size of curl_off_t -- Check size of curl_off_t - failed -- Check size of socklen_t -- Check size of socklen_t - done -- Performing Test curl_cv_recv -- Performing Test curl_cv_recv - Success -- Performing Test curl_cv_func_recv_test -- Performing Test curl_cv_func_recv_test - Success -- Tested: int recv(int, void *, size_t, int) -- Performing Test curl_cv_send -- Performing Test curl_cv_send - Success -- Performing Test curl_cv_func_send_test -- Performing Test curl_cv_func_send_test - Success -- Tested: int send(int, const void *, size_t, int) -- Performing Test HAVE_MSG_NOSIGNAL -- Performing Test HAVE_MSG_NOSIGNAL - Failed -- Performing Test HAVE_STRUCT_TIMEVAL -- Performing Test HAVE_STRUCT_TIMEVAL - Success -- Performing Test HAVE_POLL_FINE -- Performing Test HAVE_POLL_FINE - Success -- Check size of sig_atomic_t -- Check size of sig_atomic_t - done -- Performing Test HAVE_SIG_ATOMIC_T_NOT_VOLATILE -- Performing Test HAVE_SIG_ATOMIC_T_NOT_VOLATILE - Success -- Check size of struct sockaddr_storage -- Check size of struct sockaddr_storage - done -- Performing Test HAVE_RESTRICT -- Performing Test HAVE_RESTRICT - Success -- Performing Test HAVE___RESTRICT -- Performing Test HAVE___RESTRICT - Failed -- Performing Test HAVE_INLINE -- Performing Test HAVE_INLINE - Failed -- Performing Test HAVE___INLINE -- Performing Test HAVE___INLINE - Failed -- Looking for byteswap.h -- Looking for byteswap.h - not found -- Looking for sys/sysctl.h -- Looking for sys/sysctl.h - not found -- Check size of _Bool -- Check size of _Bool - done -- Performing Test HAVE_BSWAP_16 -- Performing Test HAVE_BSWAP_16 - Failed -- Performing Test HAVE_BSWAP_32 -- Performing Test HAVE_BSWAP_32 - Failed -- Performing Test HAVE_BSWAP_64 -- Performing Test HAVE_BSWAP_64 - Failed -- Check if the system is big endian -- Searching 16 bit integer -- Check size of unsigned short -- Check size of unsigned short - done -- Using unsigned short -- Check if the system is big endian - little endian -- Check size of int16_t -- Check size of int16_t - done -- Check size of int32_t -- Check size of int32_t - done -- Check size of int64_t -- Check size of int64_t - done -- Check size of intmax_t -- Check size of intmax_t - done -- Check size of uint8_t -- Check size of uint8_t - done -- Check size of uint16_t -- Check size of uint16_t - done -- Check size of uint32_t -- Check size of uint32_t - done -- Check size of uint64_t -- Check size of uint64_t - done -- Check size of uintmax_t -- Check size of uintmax_t - done -- Check size of short -- Check size of short - done -- Check size of int -- Check size of int - done -- Check size of long -- Check size of long - done -- Check size of long long -- Check size of long long - done -- Check size of unsigned short -- Check size of unsigned short - done -- Check size of unsigned -- Check size of unsigned - done -- Check size of unsigned long -- Check size of unsigned long - done -- Check size of unsigned long long -- Check size of unsigned long long - done -- Check size of size_t -- Check size of size_t - done -- Check size of __int64 -- Check size of __int64 - failed -- Check size of unsigned __int64 -- Check size of unsigned __int64 - failed -- Check size of uintptr_t -- Check size of uintptr_t - done -- Found ZLIB: cmzlib -- Found BZip2: cmbzip2 (found version "1.0.5") -- Looking for BZ2_bzCompressInit -- Looking for BZ2_bzCompressInit - not found -- Performing Test HAVE_DIRENT_H -- Performing Test HAVE_DIRENT_H - Success -- Looking for include files sys/types.h, ctype.h -- Looking for include files sys/types.h, ctype.h - found -- Looking for 3 include files sys/types.h, ..., copyfile.h -- Looking for 3 include files sys/types.h, ..., copyfile.h - not found -- Looking for 3 include files sys/types.h, ..., direct.h -- Looking for 3 include files sys/types.h, ..., direct.h - not found -- Looking for 5 include files sys/types.h, ..., ext2fs/ext2_fs.h -- Looking for 5 include files sys/types.h, ..., ext2fs/ext2_fs.h - not found -- Performing Test HAVE_WORKING_EXT2_IOC_GETFLAGS -- Performing Test HAVE_WORKING_EXT2_IOC_GETFLAGS - Failed -- Looking for 6 include files sys/types.h, ..., grp.h -- Looking for 6 include files sys/types.h, ..., grp.h - found -- Looking for 8 include files sys/types.h, ..., langinfo.h -- Looking for 8 include files sys/types.h, ..., langinfo.h - found -- Looking for 10 include files sys/types.h, ..., linux/types.h -- Looking for 10 include files sys/types.h, ..., linux/types.h - not found -- Looking for 10 include files sys/types.h, ..., linux/fiemap.h -- Looking for 10 include files sys/types.h, ..., linux/fiemap.h - not found -- Looking for 10 include files sys/types.h, ..., linux/fs.h -- Looking for 10 include files sys/types.h, ..., linux/fs.h - not found -- Looking for 10 include files sys/types.h, ..., linux/magic.h -- Looking for 10 include files sys/types.h, ..., linux/magic.h - not found -- Looking for 12 include files sys/types.h, ..., paths.h -- Looking for 12 include files sys/types.h, ..., paths.h - not found -- Looking for 14 include files sys/types.h, ..., regex.h -- Looking for 14 include files sys/types.h, ..., regex.h - found -- Looking for 16 include files sys/types.h, ..., spawn.h -- Looking for 16 include files sys/types.h, ..., spawn.h - found -- Looking for 17 include files sys/types.h, ..., stdarg.h -- Looking for 17 include files sys/types.h, ..., stdarg.h - found -- Looking for 22 include files sys/types.h, ..., sys/acl.h -- Looking for 22 include files sys/types.h, ..., sys/acl.h - found -- Looking for 23 include files sys/types.h, ..., sys/cdefs.h -- Looking for 23 include files sys/types.h, ..., sys/cdefs.h - not found -- Looking for 24 include files sys/types.h, ..., sys/mkdev.h -- Looking for 24 include files sys/types.h, ..., sys/mkdev.h - found -- Looking for 25 include files sys/types.h, ..., sys/mount.h -- Looking for 25 include files sys/types.h, ..., sys/mount.h - found -- Looking for 30 include files sys/types.h, ..., sys/statfs.h -- Looking for 30 include files sys/types.h, ..., sys/statfs.h - found -- Looking for 31 include files sys/types.h, ..., sys/statvfs.h -- Looking for 31 include files sys/types.h, ..., sys/statvfs.h - found -- Looking for 35 include files sys/types.h, ..., sys/vfs.h -- Looking for 35 include files sys/types.h, ..., sys/vfs.h - found -- Looking for 36 include files sys/types.h, ..., sys/wait.h -- Looking for 36 include files sys/types.h, ..., sys/wait.h - found -- Looking for 40 include files sys/types.h, ..., wchar.h -- Looking for 40 include files sys/types.h, ..., wchar.h - found -- Looking for 41 include files sys/types.h, ..., wctype.h -- Looking for 41 include files sys/types.h, ..., wctype.h - found -- Looking for 42 include files sys/types.h, ..., windows.h -- Looking for 42 include files sys/types.h, ..., windows.h - not found -- Looking for 42 include files sys/types.h, ..., wincrypt.h -- Looking for 42 include files sys/types.h, ..., wincrypt.h - not found -- Looking for 42 include files sys/types.h, ..., winioctl.h -- Looking for 42 include files sys/types.h, ..., winioctl.h - not found -- Performing Test SAFE_TO_DEFINE_EXTENSIONS -- Performing Test SAFE_TO_DEFINE_EXTENSIONS - Success -- Looking for MD5Init in md -- Looking for MD5Init in md - found -- Looking for _CrtSetReportMode -- Looking for _CrtSetReportMode - not found -- Looking for chflags -- Looking for chflags - not found -- Looking for chown -- Looking for chown - found -- Looking for chroot -- Looking for chroot - found -- Looking for ctime_r -- Looking for ctime_r - found -- Looking for dirfd -- Looking for dirfd - not found -- Looking for fchdir -- Looking for fchdir - found -- Looking for fchflags -- Looking for fchflags - not found -- Looking for fchmod -- Looking for fchmod - found -- Looking for fchown -- Looking for fchown - found -- Looking for fdopendir -- Looking for fdopendir - found -- Looking for fstat -- Looking for fstat - found -- Looking for fstatat -- Looking for fstatat - found -- Looking for fstatfs -- Looking for fstatfs - found -- Looking for fstatvfs -- Looking for fstatvfs - found -- Looking for futimens -- Looking for futimens - found -- Looking for futimes -- Looking for futimes - not found -- Looking for futimesat -- Looking for futimesat - found -- Looking for getgrgid_r -- Looking for getgrgid_r - found -- Looking for getgrnam_r -- Looking for getgrnam_r - found -- Looking for getpwnam_r -- Looking for getpwnam_r - found -- Looking for getpwuid_r -- Looking for getpwuid_r - found -- Looking for getpid -- Looking for getpid - found -- Looking for getvfsbyname -- Looking for getvfsbyname - not found -- Looking for lchflags -- Looking for lchflags - not found -- Looking for lchmod -- Looking for lchmod - not found -- Looking for lchown -- Looking for lchown - found -- Looking for link -- Looking for link - found -- Looking for lstat -- Looking for lstat - found -- Looking for lutimes -- Looking for lutimes - not found -- Looking for mbrtowc -- Looking for mbrtowc - found -- Looking for memmove -- Looking for memmove - found -- Looking for mkdir -- Looking for mkdir - found -- Looking for mkfifo -- Looking for mkfifo - found -- Looking for mknod -- Looking for mknod - found -- Looking for mkstemp -- Looking for mkstemp - found -- Looking for nl_langinfo -- Looking for nl_langinfo - found -- Looking for openat -- Looking for openat - found -- Looking for posix_spawnp -- Looking for posix_spawnp - found -- Looking for readlink -- Looking for readlink - found -- Looking for setenv -- Looking for setenv - found -- Looking for statfs -- Looking for statfs - found -- Looking for statvfs -- Looking for statvfs - found -- Looking for strchr -- Looking for strchr - found -- Looking for strerror -- Looking for strerror - found -- Looking for strncpy_s -- Looking for strncpy_s - not found -- Looking for strrchr -- Looking for strrchr - found -- Looking for symlink -- Looking for symlink - found -- Looking for timegm -- Looking for timegm - not found -- Looking for tzset -- Looking for tzset - found -- Looking for utimes -- Looking for utimes - found -- Looking for utimensat -- Looking for utimensat - found -- Looking for vfork -- Looking for vfork - found -- Looking for wcrtomb -- Looking for wcrtomb - found -- Looking for wcscmp -- Looking for wcscmp - found -- Looking for wcscpy -- Looking for wcscpy - found -- Looking for wcslen -- Looking for wcslen - found -- Looking for wctomb -- Looking for wctomb - found -- Looking for _ctime64_s -- Looking for _ctime64_s - not found -- Looking for _fseeki64 -- Looking for _fseeki64 - not found -- Looking for _get_timezone -- Looking for _get_timezone - not found -- Looking for _localtime64_s -- Looking for _localtime64_s - not found -- Looking for _mkgmtime64 -- Looking for _mkgmtime64 - not found -- Looking for cygwin_conv_path -- Looking for cygwin_conv_path - not found -- Looking for fseeko -- Looking for fseeko - found -- Looking for vprintf -- Looking for vprintf - found -- Looking for wmemcmp -- Looking for wmemcmp - found -- Looking for wmemcpy -- Looking for wmemcpy - found -- Performing Test HAVE_READDIR_R -- Performing Test HAVE_READDIR_R - Failed -- Performing Test HAVE_READLINKAT -- Performing Test HAVE_READLINKAT - Failed -- Performing Test MAJOR_IN_MKDEV -- Performing Test MAJOR_IN_MKDEV - Success -- Performing Test MAJOR_IN_SYSMACROS -- Performing Test MAJOR_IN_SYSMACROS - Success -- Looking for EFTYPE -- Looking for EFTYPE - not found -- Looking for EILSEQ -- Looking for EILSEQ - found -- Looking for D_MD_ORDER -- Looking for D_MD_ORDER - not found -- Looking for INT64_MAX -- Looking for INT64_MAX - found -- Looking for INT64_MIN -- Looking for INT64_MIN - found -- Looking for UINT32_MAX -- Looking for UINT32_MAX - found -- Looking for UINT64_MAX -- Looking for UINT64_MAX - found -- Looking for SIZE_MAX -- Looking for SIZE_MAX - found -- Looking for SSIZE_MAX -- Looking for SSIZE_MAX - found -- Performing Test HAVE_STRUCT_TM_TM_GMTOFF -- Performing Test HAVE_STRUCT_TM_TM_GMTOFF - Failed -- Performing Test HAVE_STRUCT_TM___TM_GMTOFF -- Performing Test HAVE_STRUCT_TM___TM_GMTOFF - Failed -- Performing Test HAVE_STRUCT_STATFS_F_NAMEMAX -- Performing Test HAVE_STRUCT_STATFS_F_NAMEMAX - Failed -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIME -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIME - Failed -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC - Failed -- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC -- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC - Failed -- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC -- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC - Success -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_N -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_N - Failed -- Performing Test HAVE_STRUCT_STAT_ST_UMTIME -- Performing Test HAVE_STRUCT_STAT_ST_UMTIME - Failed -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_USEC -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_USEC - Failed -- Performing Test HAVE_STRUCT_STAT_ST_BLKSIZE -- Performing Test HAVE_STRUCT_STAT_ST_BLKSIZE - Success -- Performing Test HAVE_STRUCT_STAT_ST_FLAGS -- Performing Test HAVE_STRUCT_STAT_ST_FLAGS - Failed -- Performing Test HAVE_STRUCT_STATVFS_F_IOSIZE -- Performing Test HAVE_STRUCT_STATVFS_F_IOSIZE - Failed -- Check size of dev_t -- Check size of dev_t - done -- Check size of gid_t -- Check size of gid_t - done -- Check size of id_t -- Check size of id_t - done -- Check size of mode_t -- Check size of mode_t - done -- Check size of off_t -- Check size of off_t - done -- Check size of size_t -- Check size of size_t - done -- Check size of ssize_t -- Check size of ssize_t - done -- Check size of uid_t -- Check size of uid_t - done -- Check size of pid_t -- Check size of pid_t - done -- Check size of intptr_t -- Check size of intptr_t - done -- Check size of wchar_t -- Check size of wchar_t - done -- Checking _FILE_OFFSET_BITS for large files -- Checking _FILE_OFFSET_BITS for large files - needed -- Checking support for ARCHIVE_CRYPTO_MD5_LIBC -- Checking support for ARCHIVE_CRYPTO_MD5_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBC -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC2 -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC2 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC2 -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC2 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC2 -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC2 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC3 -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC3 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC3 -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC3 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC3 -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC3 -- not found -- Checking support for ARCHIVE_CRYPTO_MD5_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_MD5_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_MD5_LIBMD -- Checking support for ARCHIVE_CRYPTO_MD5_LIBMD -- found -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBMD -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBMD -- not found -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBMD -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBMD -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBMD -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBMD -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBMD -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBMD -- not found -- Check if the system is big endian -- Searching 16 bit integer -- Using unsigned short -- Check if the system is big endian - little endian -- Looking for elf.h -- Looking for elf.h - found -- Looking for a Fortran compiler -- Looking for a Fortran compiler - /opt/solarisstudio12.4/bin/sunf95 -- Configuring done -- Generating done -- Build files have been written to: /export/home/dclarke/cmake-3.4.1-build --------------------------------------------- CMake has bootstrapped. Now run make. mercury $ /usr/bin/time -p /usr/sfw/bin/gmake -j 8 > ../cmake-3.4.1-build_gmake.log 2>&1 mercury $ tail ../cmake-3.4.1-build_gmake.log [ 25%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/x86.c.o [ 26%] Linking C static library libcmliblzma.a [ 26%] Built target cmliblzma [ 26%] Linking CXX static library libcmsys.a [ 26%] Built target cmsys gmake: *** [all] Error 2 real 5.49 user 24.79 sys 2.44 mercury $ |
(0040034) Dennis Clarke (reporter) 2016-01-01 02:48 |
I want to ensure that you can see there is no magic here and nothing up my sleeves. Let's try this from scratch on the Fujitsu M4000 and I shall show every step including power up ( serial number masked out ). Also I looked in various places for whatever dependencies or prerequisites are needed but could not find such docs. Looked here there and everywhere. See https://cmake.org/cmake/help/v3.4/release/3.4.html [^] https://cmake.org/documentation/ [^] Nice site however. Very clean and quick. Anyways, on with the M4000 process : XSCF> poweron -d 00 DomainIDs to power on:00 Continue? [y|n] :y 00 :Powering on *Note* This command only issues the instruction to power-on. The result of the instruction can be checked by the "showlogs power". XSCF> XSCF> console -d 00 Console contents may be logged. Connect to DomainID 0?[y|n] :y POST Sequence 01 CPU Check POST Sequence 02 Banner LSB#00 (XSB#00-0): POST 2.17.0 (2011/11/17 10:29) POST Sequence 03 Fatal Check POST Sequence 04 CPU Register POST Sequence 05 STICK POST Sequence 06 MMU POST Sequence 07 Memory Initialize POST Sequence 08 Memory POST Sequence 09 Raw UE In Cache POST Sequence 0A Floating Point Unit POST Sequence 0B SC POST Sequence 0C Cacheable Instruction POST Sequence 0D Softint POST Sequence 0E CPU Cross Call POST Sequence 0F CMU-CH POST Sequence 10 PCI-CH POST Sequence 11 Master Device POST Sequence 12 DSCP POST Sequence 13 SC Check Before STICK Diag POST Sequence 14 STICK Stop POST Sequence 15 STICK Start POST Sequence 16 Error CPU Check POST Sequence 17 System Configuration POST Sequence 18 System Status Check POST Sequence 19 System Status Check After Sync POST Sequence 1A OpenBoot Start... POST Sequence Complete. SPARC Enterprise M4000 Server, using Domain console Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. Copyright (c) 2012, Oracle and/or its affiliates and Fujitsu Limited. All rights reserved. OpenBoot 4.33.5.d, 131072 MB memory installed, Serial #xxxxxxxx. Ethernet address 0:21:28:xx:xx:xx, Host ID: xxxxxxxx. {0} ok boot Boot device: /pci@0,600000/pci@0/pci@8/pci@0/scsi@1/disk@0,0:a File and args: SunOS Release 5.10 Version Generic_150400-31 64-bit Copyright (c) 1983, 2015, Oracle and/or its affiliates. All rights reserved. Hostname: u235 u235 console login: Let's do this over a network login and not from the XSCF control ports. u235 $ uname -a SunOS u235 5.10 Generic_150400-31 sun4u sparc SUNW,SPARC-Enterprise u235 $ cat /etc/release Oracle Solaris 10 1/13 s10s_u11wos_24a SPARC Copyright (c) 1983, 2013, Oracle and/or its affiliates. All rights reserved. Assembled 17 January 2013 u235 $ psrinfo -pv The physical processor has 8 virtual processors (0-7) SPARC64-VII+ (portid 1024 impl 0x7 ver 0xc1 clock 2660 MHz) The physical processor has 8 virtual processors (8-15) SPARC64-VII+ (portid 1032 impl 0x7 ver 0xc1 clock 2660 MHz) The physical processor has 8 virtual processors (16-23) SPARC64-VII+ (portid 1040 impl 0x7 ver 0xc1 clock 2660 MHz) The physical processor has 8 virtual processors (24-31) SPARC64-VII+ (portid 1048 impl 0x7 ver 0xc1 clock 2660 MHz) u235 $ fpversion A SPARC-based CPU is available. Kernel says main memory's clock rate is 1012.0 MHz. Sun-4 floating-point controller version 0 found. An UltraSPARC chip is available. Use "-xtarget=sparc64viiplus -xcache=64/64/2:11264/256/11" code-generation option. Hostid = 0xXXXXXXXX. u235 $ date Fri Jan 1 07:23:28 GMT 2016 u235 $ cd Downloads u235 $ pwd /export/home/dclarke/Downloads u235 $ /usr/sfw/bin/wget --no-check-certificate https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] --2016-01-01 07:24:26-- https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz [^] Resolving cmake.org... 66.194.253.19 Connecting to cmake.org|66.194.253.19|:443... connected. WARNING: cannot verify cmake.org's certificate, issued by `/C=US/O=DigiCert Inc/CN=DigiCert SHA2 Secure Server CA': Unable to locally verify the issuer's authority. WARNING: certificate common name `*.kitware.com' doesn't match requested host name `cmake.org'. HTTP request sent, awaiting response... 200 OK Length: 6721965 (6.4M) [application/x-gzip] Saving to: `cmake-3.4.1.tar.gz' 0K ........ ........ ........ ........ ........ ........ 46% 581K 6s 3072K ........ ........ ........ ........ ........ ........ 93% 577K 1s 6144K ...... 100% 591K=11s 2016-01-01 07:24:37 (579 KB/s) - `cmake-3.4.1.tar.gz' saved [6721965/6721965] u235 $ digest -a sha256 Downloads/cmake-3.4.1.tar.gz d41462bdd80dc37f0d5608167b354bb3af8c068eee640be04c907154c5c113e2 u235 $ PATH=/usr/xpg6/bin:/usr/xpg4/bin:/usr/ccs/bin:/opt/solarisstudio12.4/bin:/sbin:/bin:/usr/sbin u235 $ export PATH NOTE: That PATH is as dictated in standards(5) for POSIX.1-2001 and SUSv3 compliance. u235 $ cc -V cc: Sun C 5.13 SunOS_sparc 2014/10/20 u235 $ CC -V CC: Sun C++ 5.13 SunOS_sparc 2014/10/20 u235 $ pwd /export/home/dclarke u235 $ mkdir test u235 $ cd test u235 $ gzip -dc ../Downloads/cmake-3.4.1.tar.gz | tar -xf - u235 $ mkdir cmake-3.4.1-build u235 $ cd cmake-3.4.1-build u235 $ export CC=/opt/solarisstudio12.4/bin/suncc CXX=/opt/solarisstudio12.4/bin/sunCC FC=/opt/solarisstudio12.4/bin/sunf95 u235 $ env | sort CC=/opt/solarisstudio12.4/bin/suncc COLUMNS=132 CXX=/opt/solarisstudio12.4/bin/sunCC EDITOR=/usr/xpg4/bin/vi FC=/opt/solarisstudio12.4/bin/sunf95 HOME=/export/home/dclarke LANG=C LC_ALL=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LINES=43 LOGNAME=dclarke MAIL=/usr/mail/dclarke PATH=/usr/xpg6/bin:/usr/xpg4/bin:/usr/ccs/bin:/opt/solarisstudio12.4/bin:/sbin:/bin:/usr/sbin PWD=/export/home/dclarke/test/cmake-3.4.1-build SHELL=/sbin/sh SSH_CLIENT=192.168.35.19 35707 443 SSH_CONNECTION=192.168.35.19 35707 192.168.35.232 443 SSH_TTY=/dev/pts/1 TERM=xterm TZ=GMT0 USER=dclarke VISUAL=/usr/xpg4/bin/vi XTERM_LOCALE=C _=/usr/xpg4/bin/env u235 $ pwd /export/home/dclarke/test/cmake-3.4.1-build u235 $ date Fri Jan 1 07:31:50 GMT 2016 u235 $ ../cmake-3.4.1/bootstrap --prefix=$HOME/cmake-3.4.1-install --------------------------------------------- CMake 3.4.1, Copyright 2000-2015 Kitware, Inc. C compiler on this system is: /opt/solarisstudio12.4/bin/suncc C++ compiler on this system is: /opt/solarisstudio12.4/bin/sunCC Makefile processor on this system is: make /opt/solarisstudio12.4/bin/sunCC is not GNU compiler /opt/solarisstudio12.4/bin/sunCC is SolarisStudio compiler /opt/solarisstudio12.4/bin/sunCC has setenv /opt/solarisstudio12.4/bin/sunCC has unsetenv /opt/solarisstudio12.4/bin/sunCC does not have environ in stdlib.h /opt/solarisstudio12.4/bin/sunCC has stl wstring /opt/solarisstudio12.4/bin/sunCC has struct stat with st_mtim member --------------------------------------------- /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmake.cxx -o cmake.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmakemain.cxx -o cmakemain.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmcmd.cxx -o cmcmd.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCommandArgumentLexer.cxx -o cmCommandArgumentLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCommandArgumentParser.cxx -o cmCommandArgumentParser.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCommandArgumentParserHelper.cxx -o cmCommandArgumentParserHelper.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCommonTargetGenerator.cxx -o cmCommonTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCPackPropertiesGenerator.cxx -o cmCPackPropertiesGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmDefinitions.cxx -o cmDefinitions.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmDepends.cxx -o cmDepends.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmDependsC.cxx -o cmDependsC.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmDocumentationFormatter.cxx -o cmDocumentationFormatter.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmPolicies.cxx -o cmPolicies.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmProperty.cxx -o cmProperty.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmPropertyMap.cxx -o cmPropertyMap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmPropertyDefinition.cxx -o cmPropertyDefinition.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmPropertyDefinitionMap.cxx -o cmPropertyDefinitionMap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmMakeDepend.cxx -o cmMakeDepend.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmMakefile.cxx -o cmMakefile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExportFileGenerator.cxx -o cmExportFileGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExportInstallFileGenerator.cxx -o cmExportInstallFileGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExportTryCompileFileGenerator.cxx -o cmExportTryCompileFileGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExportSet.cxx -o cmExportSet.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExportSetMap.cxx -o cmExportSetMap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExternalMakefileProjectGenerator.cxx -o cmExternalMakefileProjectGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionEvaluationFile.cxx -o cmGeneratorExpressionEvaluationFile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratedFileStream.cxx -o cmGeneratedFileStream.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorTarget.cxx -o cmGeneratorTarget.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionContext.cxx -o cmGeneratorExpressionContext.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionDAGChecker.cxx -o cmGeneratorExpressionDAGChecker.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionEvaluator.cxx -o cmGeneratorExpressionEvaluator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionLexer.cxx -o cmGeneratorExpressionLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionNode.cxx -o cmGeneratorExpressionNode.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpressionParser.cxx -o cmGeneratorExpressionParser.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGeneratorExpression.cxx -o cmGeneratorExpression.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGlobalCommonGenerator.cxx -o cmGlobalCommonGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGlobalGenerator.cxx -o cmGlobalGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstallDirectoryGenerator.cxx -o cmInstallDirectoryGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmLocalCommonGenerator.cxx -o cmLocalCommonGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmLocalGenerator.cxx -o cmLocalGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstalledFile.cxx -o cmInstalledFile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstallGenerator.cxx -o cmInstallGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstallExportGenerator.cxx -o cmInstallExportGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstallFilesGenerator.cxx -o cmInstallFilesGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstallScriptGenerator.cxx -o cmInstallScriptGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmInstallTargetGenerator.cxx -o cmInstallTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmScriptGenerator.cxx -o cmScriptGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmSourceFile.cxx -o cmSourceFile.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmSourceFileLocation.cxx -o cmSourceFileLocation.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmState.cxx -o cmState.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmSystemTools.cxx -o cmSystemTools.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmTestGenerator.cxx -o cmTestGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmVersion.cxx -o cmVersion.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmFileTimeComparison.cxx -o cmFileTimeComparison.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmGlobalUnixMakefileGenerator3.cxx -o cmGlobalUnixMakefileGenerator3.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmLocalUnixMakefileGenerator3.cxx -o cmLocalUnixMakefileGenerator3.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmMakefileExecutableTargetGenerator.cxx -o cmMakefileExecutableTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmMakefileLibraryTargetGenerator.cxx -o cmMakefileLibraryTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmMakefileTargetGenerator.cxx -o cmMakefileTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmMakefileUtilityTargetGenerator.cxx -o cmMakefileUtilityTargetGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmOutputConverter.cxx -o cmOutputConverter.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmOSXBundleGenerator.cxx -o cmOSXBundleGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmNewLineStyle.cxx -o cmNewLineStyle.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmBootstrapCommands1.cxx -o cmBootstrapCommands1.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmBootstrapCommands2.cxx -o cmBootstrapCommands2.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCommandsForBootstrap.cxx -o cmCommandsForBootstrap.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmTarget.cxx -o cmTarget.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmTest.cxx -o cmTest.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCustomCommand.cxx -o cmCustomCommand.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCustomCommandGenerator.cxx -o cmCustomCommandGenerator.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmCacheManager.cxx -o cmCacheManager.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmListFileCache.cxx -o cmListFileCache.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmComputeLinkDepends.cxx -o cmComputeLinkDepends.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmComputeLinkInformation.cxx -o cmComputeLinkInformation.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmOrderDirectories.cxx -o cmOrderDirectories.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmComputeTargetDepends.cxx -o cmComputeTargetDepends.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmComputeComponentGraph.cxx -o cmComputeComponentGraph.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExprLexer.cxx -o cmExprLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExprParser.cxx -o cmExprParser.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmExprParserHelper.cxx -o cmExprParserHelper.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -c /export/home/dclarke/test/cmake-3.4.1/Source/cmListFileLexer.c -o cmListFileLexer.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/Directory.cxx -o Directory.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/EncodingCXX.cxx -o EncodingCXX.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/FStream.cxx -o FStream.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/Glob.cxx -o Glob.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/RegularExpression.cxx -o RegularExpression.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -DKWSYS_CXX_HAS_SETENV=1 -DKWSYS_CXX_HAS_UNSETENV=1 -DKWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=0 -DKWSYS_CXX_HAS_UTIMENSAT=0 -DKWSYS_CXX_HAS_UTIMES=0 -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/SystemTools.cxx -o SystemTools.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/EncodingC.c -o EncodingC.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/ProcessUNIX.c -o ProcessUNIX.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -DKWSYS_STRING_C -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/String.c -o String.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/System.c -o System.o /opt/solarisstudio12.4/bin/suncc -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /export/home/dclarke/test/cmake-3.4.1/Source/kwsys/Terminal.c -o Terminal.o /opt/solarisstudio12.4/bin/sunCC -library=stlport4 -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk -I/export/home/dclarke/test/cmake-3.4.1/Source -I/export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk cmake.o cmakemain.o cmcmd.o cmCommandArgumentLexer.o cmCommandArgumentParser.o cmCommandArgumentParserHelper.o cmCommonTargetGenerator.o cmCPackPropertiesGenerator.o cmDefinitions.o cmDepends.o cmDependsC.o cmDocumentationFormatter.o cmPolicies.o cmProperty.o cmPropertyMap.o cmPropertyDefinition.o cmPropertyDefinitionMap.o cmMakeDepend.o cmMakefile.o cmExportFileGenerator.o cmExportInstallFileGenerator.o cmExportTryCompileFileGenerator.o cmExportSet.o cmExportSetMap.o cmExternalMakefileProjectGenerator.o cmGeneratorExpressionEvaluationFile.o cmGeneratedFileStream.o cmGeneratorTarget.o cmGeneratorExpressionContext.o cmGeneratorExpressionDAGChecker.o cmGeneratorExpressionEvaluator.o cmGeneratorExpressionLexer.o cmGeneratorExpressionNode.o cmGeneratorExpressionParser.o cmGeneratorExpression.o cmGlobalCommonGenerator.o cmGlobalGenerator.o cmInstallDirectoryGenerator.o cmLocalCommonGenerator.o cmLocalGenerator.o cmInstalledFile.o cmInstallGenerator.o cmInstallExportGenerator.o cmInstallFilesGenerator.o cmInstallScriptGenerator.o cmInstallTargetGenerator.o cmScriptGenerator.o cmSourceFile.o cmSourceFileLocation.o cmState.o cmSystemTools.o cmTestGenerator.o cmVersion.o cmFileTimeComparison.o cmGlobalUnixMakefileGenerator3.o cmLocalUnixMakefileGenerator3.o cmMakefileExecutableTargetGenerator.o cmMakefileLibraryTargetGenerator.o cmMakefileTargetGenerator.o cmMakefileUtilityTargetGenerator.o cmOutputConverter.o cmOSXBundleGenerator.o cmNewLineStyle.o cmBootstrapCommands1.o cmBootstrapCommands2.o cmCommandsForBootstrap.o cmTarget.o cmTest.o cmCustomCommand.o cmCustomCommandGenerator.o cmCacheManager.o cmListFileCache.o cmComputeLinkDepends.o cmComputeLinkInformation.o cmOrderDirectories.o cmComputeTargetDepends.o cmComputeComponentGraph.o cmExprLexer.o cmExprParser.o cmExprParserHelper.o cmListFileLexer.o Directory.o EncodingCXX.o FStream.o Glob.o RegularExpression.o SystemTools.o EncodingC.o ProcessUNIX.o String.o System.o Terminal.o -o cmake loading initial cache file /export/home/dclarke/test/cmake-3.4.1-build/Bootstrap.cmk/InitialCacheFlags.cmake -- The C compiler identification is SunPro 5.13.0 -- The CXX compiler identification is SunPro 5.13.0 -- Check for working C compiler: /opt/solarisstudio12.4/bin/suncc -- Check for working C compiler: /opt/solarisstudio12.4/bin/suncc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /opt/solarisstudio12.4/bin/sunCC -- Check for working CXX compiler: /opt/solarisstudio12.4/bin/sunCC -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Checking if compiler supports C++11 unordered_map -- Checking if compiler supports C++11 unordered_map - no -- Looking for unsetenv -- Looking for unsetenv - found -- Looking for environ -- Looking for environ - not found -- Checking whether header cstdio is available -- Checking whether header cstdio is available - yes -- Checking for Large File Support -- Checking for Large File Support - yes -- Checking whether struct stat has st_mtim member -- Checking whether struct stat has st_mtim member - yes -- Checking whether C++ compiler has 'long long' -- Checking whether C++ compiler has 'long long' - yes -- Checking whether C++ compiler has '__int64' -- Checking whether C++ compiler has '__int64' - no -- Checking for C type size macros -- Checking for C type size macros - compiled -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of char -- Check size of char - done -- Check size of short -- Check size of short - done -- Check size of int -- Check size of int - done -- Check size of long -- Check size of long - done -- Check size of long long -- Check size of long long - done -- Check size of __int64 -- Check size of __int64 - failed -- Checking whether char is signed -- Checking whether char is signed - yes -- Checking whether wstring is available -- Checking whether wstring is available - yes -- Checking if istream supports long long -- Checking if istream supports long long - yes -- Checking if ostream supports long long -- Checking if ostream supports long long - yes -- Checking whether C compiler has ptrdiff_t in stddef.h -- Checking whether C compiler has ptrdiff_t in stddef.h - yes -- Checking whether C compiler has ssize_t in unistd.h -- Checking whether C compiler has ssize_t in unistd.h - yes -- Checking whether CXX compiler has setenv -- Checking whether CXX compiler has setenv - yes -- Checking whether CXX compiler has unsetenv -- Checking whether CXX compiler has unsetenv - yes -- Checking whether CXX compiler has environ in stdlib.h -- Checking whether CXX compiler has environ in stdlib.h - no -- Checking whether CXX compiler has utimes -- Checking whether CXX compiler has utimes - yes -- Checking whether CXX compiler has utimensat -- Checking whether CXX compiler has utimensat - yes -- Looking for include files sys/types.h, ifaddrs.h -- Looking for include files sys/types.h, ifaddrs.h - not found -- Checking whether CXX compiler has rlimit64 -- Checking whether CXX compiler has rlimit64 - yes -- Checking whether CXX compiler has atol -- Checking whether CXX compiler has atol - yes -- Checking whether CXX compiler has atoll -- Checking whether CXX compiler has atoll - yes -- Checking whether CXX compiler has _atoi64 -- Checking whether CXX compiler has _atoi64 - no -- Looking for C++ include execinfo.h -- Looking for C++ include execinfo.h - not found -- Checking whether CXX compiler has getloadavg -- Checking whether CXX compiler has getloadavg - no -- Looking for connect in socket;dl -- Looking for connect in socket;dl - found -- Looking for gethostbyname in c -- Looking for gethostbyname in c - not found -- Looking for recv in network;socket;dl -- Looking for recv in network;socket;dl - not found -- Looking for gethostbyname in nsl;socket;dl -- Looking for gethostbyname in nsl;socket;dl - found -- Looking for gethostname -- Looking for gethostname - found -- Looking for idna_to_ascii_lz in idn;nsl;socket;dl -- Looking for idna_to_ascii_lz in idn;nsl;socket;dl - found -- Looking for dlopen in idn;nsl;socket;dl -- Looking for dlopen in idn;nsl;socket;dl - found -- Looking for include file stdio.h -- Looking for include file stdio.h - found -- Looking for include files stdio.h, inttypes.h -- Looking for include files stdio.h, inttypes.h - found -- Looking for 3 include files stdio.h, ..., sys/filio.h -- Looking for 3 include files stdio.h, ..., sys/filio.h - found -- Looking for 4 include files stdio.h, ..., sys/ioctl.h -- Looking for 4 include files stdio.h, ..., sys/ioctl.h - found -- Looking for 5 include files stdio.h, ..., sys/param.h -- Looking for 5 include files stdio.h, ..., sys/param.h - found -- Looking for 6 include files stdio.h, ..., sys/poll.h -- Looking for 6 include files stdio.h, ..., sys/poll.h - found -- Looking for 7 include files stdio.h, ..., sys/resource.h -- Looking for 7 include files stdio.h, ..., sys/resource.h - found -- Looking for 8 include files stdio.h, ..., sys/select.h -- Looking for 8 include files stdio.h, ..., sys/select.h - found -- Looking for 9 include files stdio.h, ..., sys/socket.h -- Looking for 9 include files stdio.h, ..., sys/socket.h - found -- Looking for 10 include files stdio.h, ..., sys/sockio.h -- Looking for 10 include files stdio.h, ..., sys/sockio.h - found -- Looking for 11 include files stdio.h, ..., sys/stat.h -- Looking for 11 include files stdio.h, ..., sys/stat.h - found -- Looking for 12 include files stdio.h, ..., sys/time.h -- Looking for 12 include files stdio.h, ..., sys/time.h - found -- Looking for 14 include files stdio.h, ..., sys/uio.h -- Looking for 14 include files stdio.h, ..., sys/uio.h - found -- Looking for 15 include files stdio.h, ..., sys/un.h -- Looking for 15 include files stdio.h, ..., sys/un.h - found -- Looking for 16 include files stdio.h, ..., sys/utime.h -- Looking for 16 include files stdio.h, ..., sys/utime.h - found -- Looking for 17 include files stdio.h, ..., alloca.h -- Looking for 17 include files stdio.h, ..., alloca.h - found -- Looking for 18 include files stdio.h, ..., arpa/inet.h -- Looking for 18 include files stdio.h, ..., arpa/inet.h - found -- Looking for 19 include files stdio.h, ..., arpa/tftp.h -- Looking for 19 include files stdio.h, ..., arpa/tftp.h - found -- Looking for 20 include files stdio.h, ..., assert.h -- Looking for 20 include files stdio.h, ..., assert.h - found -- Looking for 21 include files stdio.h, ..., crypto.h -- Looking for 21 include files stdio.h, ..., crypto.h - not found -- Looking for 21 include files stdio.h, ..., des.h -- Looking for 21 include files stdio.h, ..., des.h - not found -- Looking for 21 include files stdio.h, ..., err.h -- Looking for 21 include files stdio.h, ..., err.h - not found -- Looking for 21 include files stdio.h, ..., errno.h -- Looking for 21 include files stdio.h, ..., errno.h - found -- Looking for 22 include files stdio.h, ..., fcntl.h -- Looking for 22 include files stdio.h, ..., fcntl.h - found -- Looking for 23 include files stdio.h, ..., idn-free.h -- Looking for 23 include files stdio.h, ..., idn-free.h - not found -- Looking for 23 include files stdio.h, ..., ifaddrs.h -- Looking for 23 include files stdio.h, ..., ifaddrs.h - not found -- Looking for 23 include files stdio.h, ..., io.h -- Looking for 23 include files stdio.h, ..., io.h - not found -- Looking for 23 include files stdio.h, ..., krb.h -- Looking for 23 include files stdio.h, ..., krb.h - not found -- Looking for 23 include files stdio.h, ..., libgen.h -- Looking for 23 include files stdio.h, ..., libgen.h - found -- Looking for 24 include files stdio.h, ..., limits.h -- Looking for 24 include files stdio.h, ..., limits.h - found -- Looking for 25 include files stdio.h, ..., locale.h -- Looking for 25 include files stdio.h, ..., locale.h - found -- Looking for 26 include files stdio.h, ..., net/if.h -- Looking for 26 include files stdio.h, ..., net/if.h - found -- Looking for 27 include files stdio.h, ..., netdb.h -- Looking for 27 include files stdio.h, ..., netdb.h - found -- Looking for 28 include files stdio.h, ..., netinet/in.h -- Looking for 28 include files stdio.h, ..., netinet/in.h - found -- Looking for 29 include files stdio.h, ..., netinet/tcp.h -- Looking for 29 include files stdio.h, ..., netinet/tcp.h - found -- Looking for 30 include files stdio.h, ..., pem.h -- Looking for 30 include files stdio.h, ..., pem.h - not found -- Looking for 30 include files stdio.h, ..., poll.h -- Looking for 30 include files stdio.h, ..., poll.h - found -- Looking for 31 include files stdio.h, ..., pwd.h -- Looking for 31 include files stdio.h, ..., pwd.h - found -- Looking for 32 include files stdio.h, ..., rsa.h -- Looking for 32 include files stdio.h, ..., rsa.h - not found -- Looking for 32 include files stdio.h, ..., setjmp.h -- Looking for 32 include files stdio.h, ..., setjmp.h - found -- Looking for 33 include files stdio.h, ..., sgtty.h -- Looking for 33 include files stdio.h, ..., sgtty.h - found -- Looking for 34 include files stdio.h, ..., signal.h -- Looking for 34 include files stdio.h, ..., signal.h - found -- Looking for 35 include files stdio.h, ..., ssl.h -- Looking for 35 include files stdio.h, ..., ssl.h - not found -- Looking for 35 include files stdio.h, ..., stdbool.h -- Looking for 35 include files stdio.h, ..., stdbool.h - not found -- Looking for 37 include files stdio.h, ..., stdlib.h -- Looking for 37 include files stdio.h, ..., stdlib.h - found -- Looking for 38 include files stdio.h, ..., string.h -- Looking for 38 include files stdio.h, ..., string.h - found -- Looking for 39 include files stdio.h, ..., strings.h -- Looking for 39 include files stdio.h, ..., strings.h - found -- Looking for 40 include files stdio.h, ..., stropts.h -- Looking for 40 include files stdio.h, ..., stropts.h - found -- Looking for 41 include files stdio.h, ..., termio.h -- Looking for 41 include files stdio.h, ..., termio.h - found -- Looking for 42 include files stdio.h, ..., termios.h -- Looking for 42 include files stdio.h, ..., termios.h - found -- Looking for 43 include files stdio.h, ..., time.h -- Looking for 43 include files stdio.h, ..., time.h - found -- Looking for 44 include files stdio.h, ..., tld.h -- Looking for 44 include files stdio.h, ..., tld.h - not found -- Looking for 44 include files stdio.h, ..., unistd.h -- Looking for 44 include files stdio.h, ..., unistd.h - found -- Looking for 45 include files stdio.h, ..., utime.h -- Looking for 45 include files stdio.h, ..., utime.h - found -- Looking for 46 include files stdio.h, ..., x509.h -- Looking for 46 include files stdio.h, ..., x509.h - not found -- Looking for 46 include files stdio.h, ..., process.h -- Looking for 46 include files stdio.h, ..., process.h - not found -- Looking for 47 include files stdio.h, ..., dlfcn.h -- Looking for 47 include files stdio.h, ..., dlfcn.h - found -- Looking for 48 include files stdio.h, ..., malloc.h -- Looking for 48 include files stdio.h, ..., malloc.h - found -- Looking for 49 include files stdio.h, ..., memory.h -- Looking for 49 include files stdio.h, ..., memory.h - found -- Looking for 50 include files stdio.h, ..., netinet/if_ether.h -- Looking for 50 include files stdio.h, ..., netinet/if_ether.h - found -- Looking for 52 include files stdio.h, ..., sockio.h -- Looking for 52 include files stdio.h, ..., sockio.h - not found -- Looking for 52 include files stdio.h, ..., sys/utsname.h -- Looking for 52 include files stdio.h, ..., sys/utsname.h - found -- Looking for 53 include files stdio.h, ..., idna.h -- Looking for 53 include files stdio.h, ..., idna.h - not found -- Check size of size_t -- Check size of size_t - done -- Check size of ssize_t -- Check size of ssize_t - done -- Check size of long long -- Check size of long long - done -- Check size of long -- Check size of long - done -- Check size of short -- Check size of short - done -- Check size of int -- Check size of int - done -- Check size of __int64 -- Check size of __int64 - failed -- Check size of time_t -- Check size of time_t - done -- Check size of off_t -- Check size of off_t - done -- Looking for basename -- Looking for basename - found -- Looking for socket -- Looking for socket - found -- Looking for poll -- Looking for poll - found -- Looking for select -- Looking for select - found -- Looking for strdup -- Looking for strdup - found -- Looking for strstr -- Looking for strstr - found -- Looking for strtok_r -- Looking for strtok_r - found -- Looking for strftime -- Looking for strftime - found -- Looking for uname -- Looking for uname - found -- Looking for strcasecmp -- Looking for strcasecmp - found -- Looking for stricmp -- Looking for stricmp - not found -- Looking for strcmpi -- Looking for strcmpi - not found -- Looking for strncmpi -- Looking for strncmpi - not found -- Looking for alarm -- Looking for alarm - found -- Looking for gethostbyaddr -- Looking for gethostbyaddr - not found -- Looking for gethostbyaddr_r -- Looking for gethostbyaddr_r - not found -- Looking for gettimeofday -- Looking for gettimeofday - found -- Looking for inet_addr -- Looking for inet_addr - not found -- Looking for inet_ntoa -- Looking for inet_ntoa - not found -- Looking for inet_ntoa_r -- Looking for inet_ntoa_r - not found -- Looking for tcsetattr -- Looking for tcsetattr - found -- Looking for tcgetattr -- Looking for tcgetattr - found -- Looking for perror -- Looking for perror - found -- Looking for closesocket -- Looking for closesocket - not found -- Looking for setvbuf -- Looking for setvbuf - found -- Looking for sigsetjmp -- Looking for sigsetjmp - found -- Looking for getpass_r -- Looking for getpass_r - not found -- Looking for strlcat -- Looking for strlcat - found -- Looking for getpwuid -- Looking for getpwuid - found -- Looking for geteuid -- Looking for geteuid - found -- Looking for utime -- Looking for utime - found -- Looking for gmtime_r -- Looking for gmtime_r - found -- Looking for localtime_r -- Looking for localtime_r - found -- Looking for gethostbyname -- Looking for gethostbyname - not found -- Looking for gethostbyname_r -- Looking for gethostbyname_r - not found -- Looking for signal -- Looking for signal - found -- Looking for SIGALRM -- Looking for SIGALRM - found -- Looking for strtoll -- Looking for strtoll - found -- Looking for _strtoi64 -- Looking for _strtoi64 - not found -- Looking for strerror_r -- Looking for strerror_r - found -- Looking for siginterrupt -- Looking for siginterrupt - found -- Looking for fork -- Looking for fork - found -- Looking for getaddrinfo -- Looking for getaddrinfo - found -- Looking for freeaddrinfo -- Looking for freeaddrinfo - found -- Looking for freeifaddrs -- Looking for freeifaddrs - not found -- Looking for pipe -- Looking for pipe - found -- Looking for ftruncate -- Looking for ftruncate - found -- Looking for getprotobyname -- Looking for getprotobyname - found -- Looking for getrlimit -- Looking for getrlimit - found -- Looking for idn_free -- Looking for idn_free - not found -- Looking for idna_strerror -- Looking for idna_strerror - not found -- Looking for tld_strerror -- Looking for tld_strerror - not found -- Looking for setlocale -- Looking for setlocale - found -- Looking for setrlimit -- Looking for setrlimit - found -- Looking for fcntl -- Looking for fcntl - found -- Looking for ioctl -- Looking for ioctl - found -- Looking for setsockopt -- Looking for setsockopt - found -- Looking for inet_pton -- Looking for inet_pton - not found -- Looking for sigaction -- Looking for sigaction - found -- Performing Curl Test HAVE_FCNTL_O_NONBLOCK -- Performing Curl Test HAVE_FCNTL_O_NONBLOCK - Success -- Performing Curl Test HAVE_IOCTLSOCKET -- Performing Curl Test HAVE_IOCTLSOCKET - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO -- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTL_FIONBIO -- Performing Curl Test HAVE_IOCTL_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR -- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR - Failed -- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK -- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK - Failed -- Performing Curl Test HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID -- Performing Curl Test HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID - Failed -- Performing Curl Test TIME_WITH_SYS_TIME -- Performing Curl Test TIME_WITH_SYS_TIME - Success -- Performing Curl Test HAVE_O_NONBLOCK -- Performing Curl Test HAVE_O_NONBLOCK - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5 -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5 - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7 -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7 - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8 -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8 - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYADDR_R_5_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYADDR_R_7_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYADDR_R_8_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3 -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3 - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5 -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5 - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6 -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6 - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT - Failed -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6_REENTRANT -- Performing Curl Test HAVE_GETHOSTBYNAME_R_6_REENTRANT - Failed -- Performing Curl Test HAVE_SOCKLEN_T -- Performing Curl Test HAVE_SOCKLEN_T - Success -- Performing Curl Test HAVE_IN_ADDR_T -- Performing Curl Test HAVE_IN_ADDR_T - Success -- Performing Curl Test HAVE_BOOL_T -- Performing Curl Test HAVE_BOOL_T - Failed -- Performing Curl Test STDC_HEADERS -- Performing Curl Test STDC_HEADERS - Success -- Performing Curl Test RETSIGTYPE_TEST -- Performing Curl Test RETSIGTYPE_TEST - Success -- Performing Curl Test HAVE_INET_NTOA_R_DECL -- Performing Curl Test HAVE_INET_NTOA_R_DECL - Failed -- Performing Curl Test HAVE_INET_NTOA_R_DECL_REENTRANT -- Performing Curl Test HAVE_INET_NTOA_R_DECL_REENTRANT - Failed -- Performing Curl Test HAVE_FILE_OFFSET_BITS -- Performing Curl Test HAVE_FILE_OFFSET_BITS - Success -- Performing Curl Test HAVE_GLIBC_STRERROR_R -- Performing Curl Test HAVE_GLIBC_STRERROR_R - Failed -- Performing Curl Test HAVE_POSIX_STRERROR_R -- Performing Curl Test HAVE_POSIX_STRERROR_R - Success -- Check size of curl_off_t -- Check size of curl_off_t - failed -- Check size of socklen_t -- Check size of socklen_t - done -- Performing Test curl_cv_recv -- Performing Test curl_cv_recv - Success -- Performing Test curl_cv_func_recv_test -- Performing Test curl_cv_func_recv_test - Success -- Tested: int recv(int, void *, size_t, int) -- Performing Test curl_cv_send -- Performing Test curl_cv_send - Success -- Performing Test curl_cv_func_send_test -- Performing Test curl_cv_func_send_test - Success -- Tested: int send(int, const void *, size_t, int) -- Performing Test HAVE_MSG_NOSIGNAL -- Performing Test HAVE_MSG_NOSIGNAL - Failed -- Performing Test HAVE_STRUCT_TIMEVAL -- Performing Test HAVE_STRUCT_TIMEVAL - Success -- Performing Test HAVE_POLL_FINE -- Performing Test HAVE_POLL_FINE - Success -- Check size of sig_atomic_t -- Check size of sig_atomic_t - done -- Performing Test HAVE_SIG_ATOMIC_T_NOT_VOLATILE -- Performing Test HAVE_SIG_ATOMIC_T_NOT_VOLATILE - Success -- Check size of struct sockaddr_storage -- Check size of struct sockaddr_storage - done -- Performing Test HAVE_RESTRICT -- Performing Test HAVE_RESTRICT - Success -- Performing Test HAVE___RESTRICT -- Performing Test HAVE___RESTRICT - Failed -- Performing Test HAVE_INLINE -- Performing Test HAVE_INLINE - Failed -- Performing Test HAVE___INLINE -- Performing Test HAVE___INLINE - Failed -- Looking for byteswap.h -- Looking for byteswap.h - not found -- Looking for sys/sysctl.h -- Looking for sys/sysctl.h - not found -- Check size of _Bool -- Check size of _Bool - done -- Performing Test HAVE_BSWAP_16 -- Performing Test HAVE_BSWAP_16 - Failed -- Performing Test HAVE_BSWAP_32 -- Performing Test HAVE_BSWAP_32 - Failed -- Performing Test HAVE_BSWAP_64 -- Performing Test HAVE_BSWAP_64 - Failed -- Check if the system is big endian -- Searching 16 bit integer -- Check size of unsigned short -- Check size of unsigned short - done -- Using unsigned short -- Check if the system is big endian - big endian -- Check size of int16_t -- Check size of int16_t - done -- Check size of int32_t -- Check size of int32_t - done -- Check size of int64_t -- Check size of int64_t - done -- Check size of intmax_t -- Check size of intmax_t - done -- Check size of uint8_t -- Check size of uint8_t - done -- Check size of uint16_t -- Check size of uint16_t - done -- Check size of uint32_t -- Check size of uint32_t - done -- Check size of uint64_t -- Check size of uint64_t - done -- Check size of uintmax_t -- Check size of uintmax_t - done -- Check size of short -- Check size of short - done -- Check size of int -- Check size of int - done -- Check size of long -- Check size of long - done -- Check size of long long -- Check size of long long - done -- Check size of unsigned short -- Check size of unsigned short - done -- Check size of unsigned -- Check size of unsigned - done -- Check size of unsigned long -- Check size of unsigned long - done -- Check size of unsigned long long -- Check size of unsigned long long - done -- Check size of size_t -- Check size of size_t - done -- Check size of __int64 -- Check size of __int64 - failed -- Check size of unsigned __int64 -- Check size of unsigned __int64 - failed -- Check size of uintptr_t -- Check size of uintptr_t - done -- Found ZLIB: cmzlib -- Found BZip2: cmbzip2 (found version "1.0.5") -- Looking for BZ2_bzCompressInit -- Looking for BZ2_bzCompressInit - not found -- Performing Test HAVE_DIRENT_H -- Performing Test HAVE_DIRENT_H - Success -- Looking for include files sys/types.h, ctype.h -- Looking for include files sys/types.h, ctype.h - found -- Looking for 3 include files sys/types.h, ..., copyfile.h -- Looking for 3 include files sys/types.h, ..., copyfile.h - not found -- Looking for 3 include files sys/types.h, ..., direct.h -- Looking for 3 include files sys/types.h, ..., direct.h - not found -- Looking for 5 include files sys/types.h, ..., ext2fs/ext2_fs.h -- Looking for 5 include files sys/types.h, ..., ext2fs/ext2_fs.h - not found -- Performing Test HAVE_WORKING_EXT2_IOC_GETFLAGS -- Performing Test HAVE_WORKING_EXT2_IOC_GETFLAGS - Failed -- Looking for 6 include files sys/types.h, ..., grp.h -- Looking for 6 include files sys/types.h, ..., grp.h - found -- Looking for 8 include files sys/types.h, ..., langinfo.h -- Looking for 8 include files sys/types.h, ..., langinfo.h - found -- Looking for 10 include files sys/types.h, ..., linux/types.h -- Looking for 10 include files sys/types.h, ..., linux/types.h - not found -- Looking for 10 include files sys/types.h, ..., linux/fiemap.h -- Looking for 10 include files sys/types.h, ..., linux/fiemap.h - not found -- Looking for 10 include files sys/types.h, ..., linux/fs.h -- Looking for 10 include files sys/types.h, ..., linux/fs.h - not found -- Looking for 10 include files sys/types.h, ..., linux/magic.h -- Looking for 10 include files sys/types.h, ..., linux/magic.h - not found -- Looking for 12 include files sys/types.h, ..., paths.h -- Looking for 12 include files sys/types.h, ..., paths.h - not found -- Looking for 14 include files sys/types.h, ..., regex.h -- Looking for 14 include files sys/types.h, ..., regex.h - found -- Looking for 16 include files sys/types.h, ..., spawn.h -- Looking for 16 include files sys/types.h, ..., spawn.h - found -- Looking for 17 include files sys/types.h, ..., stdarg.h -- Looking for 17 include files sys/types.h, ..., stdarg.h - found -- Looking for 22 include files sys/types.h, ..., sys/acl.h -- Looking for 22 include files sys/types.h, ..., sys/acl.h - found -- Looking for 23 include files sys/types.h, ..., sys/cdefs.h -- Looking for 23 include files sys/types.h, ..., sys/cdefs.h - not found -- Looking for 24 include files sys/types.h, ..., sys/mkdev.h -- Looking for 24 include files sys/types.h, ..., sys/mkdev.h - found -- Looking for 25 include files sys/types.h, ..., sys/mount.h -- Looking for 25 include files sys/types.h, ..., sys/mount.h - found -- Looking for 30 include files sys/types.h, ..., sys/statfs.h -- Looking for 30 include files sys/types.h, ..., sys/statfs.h - found -- Looking for 31 include files sys/types.h, ..., sys/statvfs.h -- Looking for 31 include files sys/types.h, ..., sys/statvfs.h - found -- Looking for 35 include files sys/types.h, ..., sys/vfs.h -- Looking for 35 include files sys/types.h, ..., sys/vfs.h - found -- Looking for 36 include files sys/types.h, ..., sys/wait.h -- Looking for 36 include files sys/types.h, ..., sys/wait.h - found -- Looking for 40 include files sys/types.h, ..., wchar.h -- Looking for 40 include files sys/types.h, ..., wchar.h - found -- Looking for 41 include files sys/types.h, ..., wctype.h -- Looking for 41 include files sys/types.h, ..., wctype.h - found -- Looking for 42 include files sys/types.h, ..., windows.h -- Looking for 42 include files sys/types.h, ..., windows.h - not found -- Looking for 42 include files sys/types.h, ..., wincrypt.h -- Looking for 42 include files sys/types.h, ..., wincrypt.h - not found -- Looking for 42 include files sys/types.h, ..., winioctl.h -- Looking for 42 include files sys/types.h, ..., winioctl.h - not found -- Performing Test SAFE_TO_DEFINE_EXTENSIONS -- Performing Test SAFE_TO_DEFINE_EXTENSIONS - Success -- Looking for MD5Init in md -- Looking for MD5Init in md - found -- Looking for _CrtSetReportMode -- Looking for _CrtSetReportMode - not found -- Looking for chflags -- Looking for chflags - not found -- Looking for chown -- Looking for chown - found -- Looking for chroot -- Looking for chroot - found -- Looking for ctime_r -- Looking for ctime_r - found -- Looking for dirfd -- Looking for dirfd - not found -- Looking for fchdir -- Looking for fchdir - found -- Looking for fchflags -- Looking for fchflags - not found -- Looking for fchmod -- Looking for fchmod - found -- Looking for fchown -- Looking for fchown - found -- Looking for fdopendir -- Looking for fdopendir - found -- Looking for fstat -- Looking for fstat - found -- Looking for fstatat -- Looking for fstatat - found -- Looking for fstatfs -- Looking for fstatfs - found -- Looking for fstatvfs -- Looking for fstatvfs - found -- Looking for futimens -- Looking for futimens - found -- Looking for futimes -- Looking for futimes - not found -- Looking for futimesat -- Looking for futimesat - found -- Looking for getgrgid_r -- Looking for getgrgid_r - found -- Looking for getgrnam_r -- Looking for getgrnam_r - found -- Looking for getpwnam_r -- Looking for getpwnam_r - found -- Looking for getpwuid_r -- Looking for getpwuid_r - found -- Looking for getpid -- Looking for getpid - found -- Looking for getvfsbyname -- Looking for getvfsbyname - not found -- Looking for lchflags -- Looking for lchflags - not found -- Looking for lchmod -- Looking for lchmod - not found -- Looking for lchown -- Looking for lchown - found -- Looking for link -- Looking for link - found -- Looking for lstat -- Looking for lstat - found -- Looking for lutimes -- Looking for lutimes - not found -- Looking for mbrtowc -- Looking for mbrtowc - found -- Looking for memmove -- Looking for memmove - found -- Looking for mkdir -- Looking for mkdir - found -- Looking for mkfifo -- Looking for mkfifo - found -- Looking for mknod -- Looking for mknod - found -- Looking for mkstemp -- Looking for mkstemp - found -- Looking for nl_langinfo -- Looking for nl_langinfo - found -- Looking for openat -- Looking for openat - found -- Looking for posix_spawnp -- Looking for posix_spawnp - found -- Looking for readlink -- Looking for readlink - found -- Looking for setenv -- Looking for setenv - found -- Looking for statfs -- Looking for statfs - found -- Looking for statvfs -- Looking for statvfs - found -- Looking for strchr -- Looking for strchr - found -- Looking for strerror -- Looking for strerror - found -- Looking for strncpy_s -- Looking for strncpy_s - not found -- Looking for strrchr -- Looking for strrchr - found -- Looking for symlink -- Looking for symlink - found -- Looking for timegm -- Looking for timegm - not found -- Looking for tzset -- Looking for tzset - found -- Looking for utimes -- Looking for utimes - found -- Looking for utimensat -- Looking for utimensat - found -- Looking for vfork -- Looking for vfork - found -- Looking for wcrtomb -- Looking for wcrtomb - found -- Looking for wcscmp -- Looking for wcscmp - found -- Looking for wcscpy -- Looking for wcscpy - found -- Looking for wcslen -- Looking for wcslen - found -- Looking for wctomb -- Looking for wctomb - found -- Looking for _ctime64_s -- Looking for _ctime64_s - not found -- Looking for _fseeki64 -- Looking for _fseeki64 - not found -- Looking for _get_timezone -- Looking for _get_timezone - not found -- Looking for _localtime64_s -- Looking for _localtime64_s - not found -- Looking for _mkgmtime64 -- Looking for _mkgmtime64 - not found -- Looking for cygwin_conv_path -- Looking for cygwin_conv_path - not found -- Looking for fseeko -- Looking for fseeko - found -- Looking for vprintf -- Looking for vprintf - found -- Looking for wmemcmp -- Looking for wmemcmp - found -- Looking for wmemcpy -- Looking for wmemcpy - found -- Performing Test HAVE_READDIR_R -- Performing Test HAVE_READDIR_R - Failed -- Performing Test HAVE_READLINKAT -- Performing Test HAVE_READLINKAT - Failed -- Performing Test MAJOR_IN_MKDEV -- Performing Test MAJOR_IN_MKDEV - Success -- Performing Test MAJOR_IN_SYSMACROS -- Performing Test MAJOR_IN_SYSMACROS - Success -- Looking for EFTYPE -- Looking for EFTYPE - not found -- Looking for EILSEQ -- Looking for EILSEQ - found -- Looking for D_MD_ORDER -- Looking for D_MD_ORDER - not found -- Looking for INT64_MAX -- Looking for INT64_MAX - found -- Looking for INT64_MIN -- Looking for INT64_MIN - found -- Looking for UINT32_MAX -- Looking for UINT32_MAX - found -- Looking for UINT64_MAX -- Looking for UINT64_MAX - found -- Looking for SIZE_MAX -- Looking for SIZE_MAX - found -- Looking for SSIZE_MAX -- Looking for SSIZE_MAX - found -- Performing Test HAVE_STRUCT_TM_TM_GMTOFF -- Performing Test HAVE_STRUCT_TM_TM_GMTOFF - Failed -- Performing Test HAVE_STRUCT_TM___TM_GMTOFF -- Performing Test HAVE_STRUCT_TM___TM_GMTOFF - Failed -- Performing Test HAVE_STRUCT_STATFS_F_NAMEMAX -- Performing Test HAVE_STRUCT_STATFS_F_NAMEMAX - Failed -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIME -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIME - Failed -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC -- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC - Failed -- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC -- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC - Failed -- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC -- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC - Success -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_N -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_N - Failed -- Performing Test HAVE_STRUCT_STAT_ST_UMTIME -- Performing Test HAVE_STRUCT_STAT_ST_UMTIME - Failed -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_USEC -- Performing Test HAVE_STRUCT_STAT_ST_MTIME_USEC - Failed -- Performing Test HAVE_STRUCT_STAT_ST_BLKSIZE -- Performing Test HAVE_STRUCT_STAT_ST_BLKSIZE - Success -- Performing Test HAVE_STRUCT_STAT_ST_FLAGS -- Performing Test HAVE_STRUCT_STAT_ST_FLAGS - Failed -- Performing Test HAVE_STRUCT_STATVFS_F_IOSIZE -- Performing Test HAVE_STRUCT_STATVFS_F_IOSIZE - Failed -- Check size of dev_t -- Check size of dev_t - done -- Check size of gid_t -- Check size of gid_t - done -- Check size of id_t -- Check size of id_t - done -- Check size of mode_t -- Check size of mode_t - done -- Check size of off_t -- Check size of off_t - done -- Check size of size_t -- Check size of size_t - done -- Check size of ssize_t -- Check size of ssize_t - done -- Check size of uid_t -- Check size of uid_t - done -- Check size of pid_t -- Check size of pid_t - done -- Check size of intptr_t -- Check size of intptr_t - done -- Check size of wchar_t -- Check size of wchar_t - done -- Checking _FILE_OFFSET_BITS for large files -- Checking _FILE_OFFSET_BITS for large files - needed -- Checking support for ARCHIVE_CRYPTO_MD5_LIBC -- Checking support for ARCHIVE_CRYPTO_MD5_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBC -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC2 -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC2 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC2 -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC2 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC2 -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC2 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC3 -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC3 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC3 -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC3 -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC3 -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC3 -- not found -- Checking support for ARCHIVE_CRYPTO_MD5_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_MD5_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA384_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBSYSTEM -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBSYSTEM -- not found -- Checking support for ARCHIVE_CRYPTO_MD5_LIBMD -- Checking support for ARCHIVE_CRYPTO_MD5_LIBMD -- found -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBMD -- Checking support for ARCHIVE_CRYPTO_RMD160_LIBMD -- not found -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBMD -- Checking support for ARCHIVE_CRYPTO_SHA1_LIBMD -- not found -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBMD -- Checking support for ARCHIVE_CRYPTO_SHA256_LIBMD -- not found -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBMD -- Checking support for ARCHIVE_CRYPTO_SHA512_LIBMD -- not found -- Check if the system is big endian -- Searching 16 bit integer -- Using unsigned short -- Check if the system is big endian - big endian -- Looking for cbreak in /usr/local/lib/libncurses.a -- Looking for cbreak in /usr/local/lib/libncurses.a - not found -- Looking for elf.h -- Looking for elf.h - found -- Looking for a Fortran compiler -- Looking for a Fortran compiler - /opt/solarisstudio12.4/bin/sunf95 -- Configuring done -- Generating done -- Build files have been written to: /export/home/dclarke/test/cmake-3.4.1-build --------------------------------------------- CMake has bootstrapped. Now run make. u235 $ u235 $ /usr/bin/time -p /usr/sfw/bin/gmake -j 8 > ../cmake-3.4.1-build_gmake.log 2>&1 u235 $ tail ../cmake-3.4.1-build_gmake.log [100%] Building CXX object Source/CMakeFiles/CTestLib.dir/CTest/cmCTestGIT.cxx.o [100%] Building CXX object Source/CMakeFiles/CTestLib.dir/CTest/cmCTestHG.cxx.o [100%] Building CXX object Source/CMakeFiles/CTestLib.dir/CTest/cmCTestP4.cxx.o [100%] Linking CXX static library libCTestLib.a [100%] Built target CTestLib gmake: *** [all] Error 2 real 112.81 user 762.74 sys 59.10 Looking into the log file I see that the Makefile must be borked in that the -m64 option was missing or some other such error and the link stage did not know that we are in a 64-bit world : [ 93%] Linking CXX executable ../bin/ccmake [ 93%] Building CXX object Source/CMakeFiles/CTestLib.dir/CTest/cmParseGTMCoverage.cxx.o [ 93%] Building CXX object Source/CMakeFiles/CTestLib.dir/CTest/cmParseJacocoCoverage.cxx.o [ 93%] Building CXX object Source/CMakeFiles/CPackLib.dir/CPack/cmCPack7zGenerator.cxx.o ld: warning: file /usr/local/lib/libncurses.a(lib_addch.o): wrong ELF class: ELFCLASS64 Undefined first referenced symbol in file move CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o initscr CMakeFiles/ccmake.dir/CursesDialog/ccmake.cxx.o winsnstr CursesDialog/form/libcmForm.a(frm_driver.c.o) erase CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o winch CursesDialog/form/libcmForm.a(frm_driver.c.o) wmove CursesDialog/form/libcmForm.a(frm_driver.c.o) wclrtobot CursesDialog/form/libcmForm.a(frm_driver.c.o) wclrtoeol CursesDialog/form/libcmForm.a(frm_driver.c.o) is_linetouched CursesDialog/form/libcmForm.a(frm_driver.c.o) winsdelln CursesDialog/form/libcmForm.a(frm_driver.c.o) cbreak CMakeFiles/ccmake.dir/CursesDialog/ccmake.cxx.o delwin CursesDialog/form/libcmForm.a(frm_driver.c.o) derwin CursesDialog/form/libcmForm.a(frm_driver.c.o) endwin CMakeFiles/ccmake.dir/CursesDialog/ccmake.cxx.o keypad CMakeFiles/ccmake.dir/CursesDialog/cmCursesMainForm.cxx.o newpad CursesDialog/form/libcmForm.a(frm_driver.c.o) noecho CMakeFiles/ccmake.dir/CursesDialog/ccmake.cxx.o printw CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o stdscr CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o waddnstr CursesDialog/form/libcmForm.a(frm_driver.c.o) waddch CursesDialog/form/libcmForm.a(frm_driver.c.o) wdelch CursesDialog/form/libcmForm.a(frm_driver.c.o) werase CursesDialog/form/libcmForm.a(frm_driver.c.o) wgetch CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o winsch CursesDialog/form/libcmForm.a(frm_driver.c.o) wattr_on CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o wrefresh CMakeFiles/ccmake.dir/CursesDialog/cmCursesOptionsWidget.cxx.o refresh CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o wbkgdset CursesDialog/form/libcmForm.a(frm_driver.c.o) wcursyncup CursesDialog/form/libcmForm.a(frm_driver.c.o) clearok CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o copywin CursesDialog/form/libcmForm.a(frm_driver.c.o) wtouchln CMakeFiles/ccmake.dir/CursesDialog/cmCursesOptionsWidget.cxx.o wattr_off CMakeFiles/ccmake.dir/CursesDialog/cmCursesLongMessageForm.cxx.o winnstr CursesDialog/form/libcmForm.a(frm_driver.c.o) wsyncup CursesDialog/form/libcmForm.a(frm_driver.c.o) ld: fatal: symbol referencing errors. No output written to ../bin/ccmake gmake[2]: *** [bin/ccmake] Error 2 gmake[1]: *** [Source/CMakeFiles/ccmake.dir/all] Error 2 gmake[1]: *** Waiting for unfinished jobs.... So that is borked. I could probably do the link stage manually with correct CFLAGS or just edit the Makefile .. if there is one. u235 $ find . -type f -name Makefile ./Makefile ./Utilities/Makefile ./Utilities/cmexpat/Makefile ./Utilities/cmzlib/Makefile ./Utilities/KWStyle/Makefile ./Utilities/cmlibarchive/Makefile ./Utilities/cmlibarchive/libarchive/Makefile ./Utilities/KWIML/test/Makefile ./Utilities/KWIML/Makefile ./Utilities/Doxygen/Makefile ./Utilities/cmjsoncpp/Makefile ./Utilities/Sphinx/Makefile ./Utilities/cmcompress/Makefile ./Utilities/cmliblzma/Makefile ./Utilities/cmcurl/lib/Makefile ./Utilities/cmcurl/Makefile ./Utilities/cmbzip2/Makefile ./Auxiliary/Makefile ./Auxiliary/bash-completion/Makefile ./Source/kwsys/Makefile ./Source/CursesDialog/form/Makefile ./Source/Makefile ./Tests/CMakeTests/Makefile ./Tests/FindGTK2/Makefile ./Tests/CMakeLib/PseudoMemcheck/NoLog/Makefile ./Tests/CMakeLib/PseudoMemcheck/Makefile ./Tests/CMakeLib/Makefile ./Tests/RunCMake/Makefile ./Tests/Makefile ./Tests/FindThreads/Makefile ./Tests/CMakeOnly/Makefile ./Tests/CMakeFiles/CheckFortran/Makefile ./Tests/FindPackageModeMakefileTest/Makefile ./Bootstrap.cmk/Makefile Great .. a whole pile of Makefile's to search through to see where the link stage flags are borked. Anyways .. another failure here. |
(0040035) Dennis Clarke (reporter) 2016-01-01 03:06 |
A thought just struck me .. why is the build process looking into the /usr/local directory at all? That is just wrong. Unless CMake has a bucket of things needed that are supposed to be in /usr/local as if this were linux? I will try again but this time I will totally hide anything that I had built in the /usr/local directory. That is no ones business at all unless you are on linux. As root : u235 # mv /usr/local /usr/local_ u235 # ls -lad /usr/local_ drwxr-xr-x 19 root root 20 Jan 1 07:11 /usr/local_ u235 # chmod 000 /usr/local_ u235 # ls -lad /usr/local_ d--------- 19 root root 20 Jan 1 07:11 /usr/local_ Back in my home dir as a normal user : u235 $ rm -rf test u235 $ mkdir test u235 $ cd test u235 $ gzip -dc ../Downloads/cmake-3.4.1.tar.gz | tar -xf - u235 $ mkdir cmake-3.4.1-build u235 $ cd cmake-3.4.1-build u235 $ env | sort CC=/opt/solarisstudio12.4/bin/suncc COLUMNS=132 CXX=/opt/solarisstudio12.4/bin/sunCC EDITOR=/usr/xpg4/bin/vi FC=/opt/solarisstudio12.4/bin/sunf95 HOME=/export/home/dclarke LANG=C LC_ALL=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LINES=43 LOGNAME=dclarke MAIL=/usr/mail/dclarke PATH=/usr/xpg6/bin:/usr/xpg4/bin:/usr/ccs/bin:/opt/solarisstudio12.4/bin:/sbin:/bin:/usr/sbin PWD=/export/home/dclarke/test/cmake-3.4.1-build SHELL=/sbin/sh SSH_CLIENT=192.168.35.19 35707 443 SSH_CONNECTION=192.168.35.19 35707 192.168.35.232 443 SSH_TTY=/dev/pts/1 TERM=xterm TZ=GMT0 USER=dclarke VISUAL=/usr/xpg4/bin/vi XTERM_LOCALE=C _=/usr/xpg4/bin/env u235 $ date Fri Jan 1 07:55:54 GMT 2016 u235 $ ../cmake-3.4.1/bootstrap --prefix=$HOME/cmake-3.4.1-install > ../cmake-3.4.1_bootstrap.log 2>&1 u235 $ tail ../cmake-3.4.1_bootstrap.log -- Check if the system is big endian - big endian -- Looking for elf.h -- Looking for elf.h - found -- Looking for a Fortran compiler -- Looking for a Fortran compiler - /opt/solarisstudio12.4/bin/sunf95 -- Configuring done -- Generating done -- Build files have been written to: /export/home/dclarke/test/cmake-3.4.1-build --------------------------------------------- CMake has bootstrapped. Now run make. u235 $ /usr/bin/time -p /usr/sfw/bin/gmake -j 8 > ../cmake-3.4.1-build_gmake.log 2>&1 u235 $ tail ../cmake-3.4.1-build_gmake.log [ 25%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/x86.c.o [ 26%] Linking C static library libcmliblzma.a [ 26%] Built target cmliblzma [ 26%] Linking CXX static library libcmsys.a [ 26%] Built target cmsys gmake: *** [all] Error 2 real 5.01 user 20.88 sys 3.18 u235 $ Exactly as I thought. CMake has a bucket of dependencies that need to hide in /usr/local in order for this to work. So now I have to wonder what those dependencies are. |
(0040150) Brad King (manager) 2016-01-07 15:39 |
For reference, in the session reported in 0015880:0039984: $ type -p shasum /opt/csw/bin/shasum $ find /usr/local /usr/local There is nothing in /usr/local. It is not a machine that I administrate though so I don't know what else has been installed elsewhere. |
(0040151) Brad King (manager) 2016-01-07 15:45 |
Without explicitly asking to use system-installed dependencies CMake has none beyond the compiler IIRC. It builds them all from in-source copies. The only exception is curses or ncurses that is used to build ccmake if found. If curses is not found then ccmake is not built. It may be that CMake is finding a curses in /usr/local on your system. You can explicitly disable any attempt to use curses: ../cmake-3.4.1/bootstrap --prefix=$HOME/cmake-3.4.1-install -- -DBUILD_CursesDialog=OFF BTW, you can add "VERBOSE=1" to your make command to get more output. Also to help debug this please use a serial build so log lines all stay in order: /usr/bin/time -p /usr/sfw/bin/gmake VERBOSE=1 > ../cmake-3.4.1-build_gmake.log 2>&1 Please attach the resulting log. |
(0040203) Dennis Clarke (reporter) 2016-01-12 12:06 |
"Without explicitly asking to use system-installed dependencies CMake has none beyond the compiler IIRC. It builds them all from in-source copies." That isn't happening here. Also the server you are using clearly has stuff in it from various places. It may be worth while to try this on a clean system with a baseline C99 compiler toolset ( Oracle Studio 12.4 ) and then see what happens. Feel free to email me a SSH public key and I will make it happen. There is a real measurable problem here and you can not see it on whatever server you are using. Having said all that .. sure I will run your bootstrap, again, with the options you list above. |
(0042901) Kitware Robot (administrator) 2016-06-10 14:29 |
Resolving issue as `moved`. This issue tracker is no longer used. Further discussion of this issue may take place in the current CMake Issues page linked in the banner at the top of this page. |
Notes |
Issue History | |||
Date Modified | Username | Field | Change |
2015-12-12 06:43 | Dennis Clarke | New Issue | |
2015-12-12 06:43 | Dennis Clarke | File Added: cmake_3.4.1_logs.tar.xz | |
2015-12-12 07:09 | Rolf Eike Beer | Note Added: 0039971 | |
2015-12-12 07:55 | Dennis Clarke | File Added: cmake-3.4.1_SunOS5.10_sparcv9.001_Testing.tar.xz | |
2015-12-12 07:58 | Dennis Clarke | Note Added: 0039972 | |
2015-12-14 08:49 | Brad King | Relationship added | related to 0015881 |
2015-12-14 08:50 | Brad King | Relationship added | related to 0015882 |
2015-12-14 08:50 | Brad King | Relationship added | related to 0015883 |
2015-12-14 08:54 | Brad King | Summary | Many test failures with cmake 3.4.1 testsuite => Trouble building CMake on Solaris 10 |
2015-12-14 08:54 | Brad King | Additional Information Updated | |
2015-12-14 08:55 | Brad King | Note Added: 0039979 | |
2015-12-14 08:55 | Brad King | Relationship replaced | has duplicate 0015881 |
2015-12-14 08:56 | Brad King | Relationship replaced | has duplicate 0015882 |
2015-12-14 08:56 | Brad King | Relationship replaced | has duplicate 0015883 |
2015-12-14 09:21 | Brad King | Note Added: 0039983 | |
2015-12-14 10:30 | Brad King | Note Added: 0039984 | |
2016-01-01 01:39 | Dennis Clarke | Note Added: 0040033 | |
2016-01-01 02:48 | Dennis Clarke | Note Added: 0040034 | |
2016-01-01 03:06 | Dennis Clarke | Note Added: 0040035 | |
2016-01-07 15:39 | Brad King | Note Added: 0040150 | |
2016-01-07 15:45 | Brad King | Note Added: 0040151 | |
2016-01-12 12:06 | Dennis Clarke | Note Added: 0040203 | |
2016-06-10 14:29 | Kitware Robot | Note Added: 0042901 | |
2016-06-10 14:29 | Kitware Robot | Status | new => resolved |
2016-06-10 14:29 | Kitware Robot | Resolution | open => moved |
2016-06-10 14:29 | Kitware Robot | Assigned To | => Kitware Robot |
2016-06-10 14:31 | Kitware Robot | Status | resolved => closed |
Issue History |
Copyright © 2000 - 2018 MantisBT Team |