cmake 3.16.5 Segmentation Violation

I am getting a segmentation violation when running a recompiled
‘cmake’. I rebuilt with debugging symbols; here are the results:

/var/tmp/portage/dev-util/cmake-3.16.5/image/usr/bin # gdb ./cmake
GNU gdb (Gentoo 9.1 vanilla) 9.1
Copyright © 2020 Free Software Foundation, Inc.

Reading symbols from ./cmake…
(gdb) run --version
Starting program:
/var/tmp/portage/dev-util/cmake-3.16.5/image/usr/bin/cmake --version
[Thread debugging using libthread_db enabled]
Using host libthread_db library “/lib/libthread_db.so.1”.
cmake version 3.16.5

CMake suite maintained and supported by Kitware (kitware.com/cmake).

Program received signal SIGSEGV, Segmentation fault.
0xb7de7296 in uv_loop_close (loop=0x0) at
/usr/src/debug/dev-libs/libuv-1.35.0/libuv-1.35.0/src/uv-common.c:757
757 if (uv__has_active_reqs(loop))
(gdb) up
#1 0x0053fab4 in main (ac=, av=0xb09a60)
at /var/tmp/portage/dev-util/cmake-3.16.5/work/cmake-3.16.5/Source/cmakemain.cxx:706
706 uv_loop_close(uv_default_loop());
(gdb) up
Initial frame selected; you cannot go up.
(gdb)

Who can I work with to debug this?

  • Matthew

We have released several CMake versions since 3.16.5. Please try 3.16.8 or 3.17.3 to see if the problem persists.

What version of libuv do you have installed?

I have version 1.35.0 of libuv.

  • Matthew

I am using the Gentoo Linux distribution. They have four version of
cmake in development:3.17.3, 3.17.2, 3.16.5, and 3.13.5.

https://packages.gentoo.org/packages/dev-util/cmake

Their libuv is similar: 1.38.0-r1, 1.37.0, and 1.35.0.

https://packages.gentoo.org/packages/dev-libs/libuv

Do they need to patch them for a known bug?

  • Matthew

Not that I know of, though it’s very strange that uv_default_loop() is returning NULL. 1.35.0 should be supported by CMake. Try 1.37.0 (and perhaps 1.38.0-r1) if you can.

Kyle Edwards,
the problem persists with cmake 3.17.3 and libuv 1.37.0:

gdb cmake

GNU gdb (Gentoo 9.1 vanilla) 9.1

Reading symbols from cmake…
(gdb) run --version
Starting program: /var/tmp/portage/dev-util/cmake-3.17.3/image/usr/bin/cmake --version
[Thread debugging using libthread_db enabled]
Using host libthread_db library “/lib/libthread_db.so.1”.
cmake version 3.17.3

CMake suite maintained and supported by Kitware (kitware.com/cmake).

Program received signal SIGSEGV, Segmentation fault.
0xb7de7316 in uv_loop_close (loop=0x0) at /usr/src/debug/dev-libs/libuv-1.37.0/libuv-1.37.0/src/uv-common.c:768
768 if (uv__has_active_reqs(loop))
(gdb) bt
#0 0xb7de7316 in uv_loop_close (loop=0x0) at /usr/src/debug/dev-libs/libuv-1.37.0/libuv-1.37.0/src/uv-common.c:768
#1 0x0054e59f in main (ac=, av=0xb55b50)
at /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmakemain.cxx:709
(gdb) up
#1 0x0054e59f in main (ac=, av=0xb55b50)
at /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmakemain.cxx:709
709 uv_loop_close(uv_default_loop());
(gdb)

  • Matthew

Here are the (lengthy) compiler arguments used:

readelf --string-dump=.GCC.command.line cmake | less

String dump of section ‘.GCC.command.line’:
[ 0] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3_build/Utilities
[ 4c] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Utilities
[ 92] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3_build/Source
[ db] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source
[ 11e] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser
[ 16d] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/CTest
[ 1b6] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/CPack
[ 1ff] -D_GNU_SOURCE
[ 20d] -isystem
/var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Utilities/std
[ 25d] -isystem /usr/include/jsoncpp
[ 27b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmakemain.cxx
[ 2c9] -march=pentium-m
[ 2da] -auxbase-strip CMakeFiles/cmake.dir/cmakemain.cxx.o
[ 30e] -ggdb
[ 314] -O2
[ 318] -Wno-deprecated-declarations
[ 335] -std=gnu++17
[ 342] -frecord-gcc-switches
[ 358] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmcmd.cxx
[ 3a2] -auxbase-strip CMakeFiles/cmake.dir/cmcmd.cxx.o
[ 3d2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDependsFortran.cxx
pentiumm-laptop /var/tmp/portage/dev-util/cmake-3.17.3/image/usr/bin #
readelf --string-dump=.GCC.command.line cmake

String dump of section ‘.GCC.command.line’:
[ 0] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3_build/Utilities
[ 4c] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Utilities
[ 92] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3_build/Source
[ db] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source
[ 11e] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser
[ 16d] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/CTest
[ 1b6] -I /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/CPack
[ 1ff] -D_GNU_SOURCE
[ 20d] -isystem
/var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Utilities/std
[ 25d] -isystem /usr/include/jsoncpp
[ 27b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmakemain.cxx
[ 2c9] -march=pentium-m
[ 2da] -auxbase-strip CMakeFiles/cmake.dir/cmakemain.cxx.o
[ 30e] -ggdb
[ 314] -O2
[ 318] -Wno-deprecated-declarations
[ 335] -std=gnu++17
[ 342] -frecord-gcc-switches
[ 358] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmcmd.cxx
[ 3a2] -auxbase-strip CMakeFiles/cmake.dir/cmcmd.cxx.o
[ 3d2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDependsFortran.cxx
[ 427] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDependsFortran.cxx.o
[ 465] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDocumentation.cxx
[ 4b9] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDocumentation.cxx.o
[ 4f6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDocumentationFormatter.cxx
[ 553] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmDocumentationFormatter.cxx.o
[ 599] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDocumentationSection.cxx
[ 5f4] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDocumentationSection.cxx.o
[ 638] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDynamicLoader.cxx
[ 68c] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDynamicLoader.cxx.o
[ 6c9] -D CMake_STAT_HAS_ST_MTIM=1
[ 6e5] -D CMake_STAT_HAS_ST_MTIMESPEC=0
[ 706] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileTime.cxx
[ 755] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileTime.cxx.o
[ 78d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFortranParserImpl.cxx
[ 7e5] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFortranParserImpl.cxx.o
[ 826] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratedFileStream.cxx
[ 880] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGeneratedFileStream.cxx.o
[ 8c3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLocalGenerator.cxx
[ 918] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLocalGenerator.cxx.o
[ 956] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmRulePlaceholderExpander.cxx
[ 9b4] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmRulePlaceholderExpander.cxx.o
[ 9fb] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMakefile.cxx
[ a4a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMakefile.cxx.o
[ a82] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmOutputConverter.cxx
[ ad8] -auxbase-strip CMakeFiles/CMakeLib.dir/cmOutputConverter.cxx.o
[ b17] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmNewLineStyle.cxx
[ b6a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmNewLineStyle.cxx.o
[ ba6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmPolicies.cxx
[ bf5] -auxbase-strip CMakeFiles/CMakeLib.dir/cmPolicies.cxx.o
[ c2d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQtAutoMocUic.cxx
[ c80] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQtAutoMocUic.cxx.o
[ cbc] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQtAutoRcc.cxx
[ d0c] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQtAutoRcc.cxx.o
[ d45] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmRST.cxx
[ d8f] -auxbase-strip CMakeFiles/CMakeLib.dir/cmRST.cxx.o
[ dc2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmScriptGenerator.cxx
[ e18] -auxbase-strip CMakeFiles/CMakeLib.dir/cmScriptGenerator.cxx.o
[ e57] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSourceFile.cxx
[ ea8] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSourceFile.cxx.o
[ ee2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSourceFileLocation.cxx
[ f3b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSourceFileLocation.cxx.o
[ f7d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSourceGroup.cxx
[ fcf] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSourceGroup.cxx.o
[ 100a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmState.cxx
[ 1056] -auxbase-strip CMakeFiles/CMakeLib.dir/cmState.cxx.o
[ 108b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmStateDirectory.cxx
[ 10e0] -auxbase-strip CMakeFiles/CMakeLib.dir/cmStateDirectory.cxx.o
[ 111e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmStateSnapshot.cxx
[ 1172] -auxbase-strip CMakeFiles/CMakeLib.dir/cmStateSnapshot.cxx.o
[ 11af] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmStringAlgorithms.cxx
[ 1206] -auxbase-strip CMakeFiles/CMakeLib.dir/cmStringAlgorithms.cxx.o
[ 1246] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSystemTools.cxx
[ 1298] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSystemTools.cxx.o
[ 12d3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTarget.cxx
[ 1320] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTarget.cxx.o
[ 1356] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetPropertyComputer.cxx
[ 13b3] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetPropertyComputer.cxx.o
[ 13f9] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTest.cxx
[ 1444] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTest.cxx.o
[ 1478] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTestGenerator.cxx
[ 14cc] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTestGenerator.cxx.o
[ 1509] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmUVProcessChain.cxx
[ 155e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmUVProcessChain.cxx.o
[ 159c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmVariableWatch.cxx
[ 15f0] -auxbase-strip CMakeFiles/CMakeLib.dir/cmVariableWatch.cxx.o
[ 162d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmVersion.cxx
[ 167b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmVersion.cxx.o
[ 16b2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmWorkerPool.cxx
[ 1703] -auxbase-strip CMakeFiles/CMakeLib.dir/cmWorkerPool.cxx.o
[ 173d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmWorkingDirectory.cxx
[ 1794] -auxbase-strip CMakeFiles/CMakeLib.dir/cmWorkingDirectory.cxx.o
[ 17d4] -D CMAKE_USE_WMAKE
[ 17e7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmake.cxx
[ 1831] -auxbase-strip CMakeFiles/CMakeLib.dir/cmake.cxx.o
[ 1864] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCommand.cxx
[ 18b2] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCommand.cxx.o
[ 18e9] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCommands.cxx
[ 1938] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCommands.cxx.o
[ 1970] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddCompileDefinitionsCommand.cxx
[ 19d3] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAddCompileDefinitionsCommand.cxx.o
[ 1a1f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddCompileOptionsCommand.cxx
[ 1a7e] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAddCompileOptionsCommand.cxx.o
[ 1ac6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddLinkOptionsCommand.cxx
[ 1b22] -auxbase-strip CMakeFiles/CMakeLib.dir/cmAddLinkOptionsCommand.cxx.o
[ 1b67] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddCustomCommandCommand.cxx
[ 1bc5] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAddCustomCommandCommand.cxx.o
[ 1c0c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddCustomTargetCommand.cxx
[ 1c69] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAddCustomTargetCommand.cxx.o
[ 1caf] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddDefinitionsCommand.cxx
[ 1d0b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmAddDefinitionsCommand.cxx.o
[ 1d50] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddDependenciesCommand.cxx
[ 1dad] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAddDependenciesCommand.cxx.o
[ 1df3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddExecutableCommand.cxx
[ 1e4e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmAddExecutableCommand.cxx.o
[ 1e92] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddLibraryCommand.cxx
[ 1eea] -auxbase-strip CMakeFiles/CMakeLib.dir/cmAddLibraryCommand.cxx.o
[ 1f2b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddSubDirectoryCommand.cxx
[ 1f88] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAddSubDirectoryCommand.cxx.o
[ 1fce] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAddTestCommand.cxx
[ 2023] -auxbase-strip CMakeFiles/CMakeLib.dir/cmAddTestCommand.cxx.o
[ 2061] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmAuxSourceDirectoryCommand.cxx
[ 20c1] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmAuxSourceDirectoryCommand.cxx.o
[ 210a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBreakCommand.cxx
[ 215d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmBreakCommand.cxx.o
[ 2199] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBuildCommand.cxx
[ 21ec] -auxbase-strip CMakeFiles/CMakeLib.dir/cmBuildCommand.cxx.o
[ 2228] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBuildNameCommand.cxx
[ 227f] -auxbase-strip CMakeFiles/CMakeLib.dir/cmBuildNameCommand.cxx.o
[ 22bf] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCMakeHostSystemInformationCommand.cxx
[ 2327] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmCMakeHostSystemInformationCommand.cxx.o
[ 2378] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCMakeMinimumRequired.cxx
[ 23d3] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCMakeMinimumRequired.cxx.o
[ 2417] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCMakePolicyCommand.cxx
[ 2470] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCMakePolicyCommand.cxx.o
[ 24b2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmConfigureFileCommand.cxx
[ 250d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmConfigureFileCommand.cxx.o
[ 2551] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmContinueCommand.cxx
[ 25a7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmContinueCommand.cxx.o
[ 25e6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCreateTestSourceList.cxx
[ 2641] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCreateTestSourceList.cxx.o
[ 2685] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDefinePropertyCommand.cxx
[ 26e1] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDefinePropertyCommand.cxx.o
[ 2726] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmEnableLanguageCommand.cxx
[ 2782] -auxbase-strip CMakeFiles/CMakeLib.dir/cmEnableLanguageCommand.cxx.o
[ 27c7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmEnableTestingCommand.cxx
[ 2822] -auxbase-strip CMakeFiles/CMakeLib.dir/cmEnableTestingCommand.cxx.o
[ 2866] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExecProgramCommand.cxx
[ 28bf] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExecProgramCommand.cxx.o
[ 2901] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExecuteProcessCommand.cxx
[ 295d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExecuteProcessCommand.cxx.o
[ 29a2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExpandedCommandArgument.cxx
[ 2a00] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExpandedCommandArgument.cxx.o
[ 2a47] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportCommand.cxx
[ 2a9b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExportCommand.cxx.o
[ 2ad8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportLibraryDependenciesCommand.cxx
[ 2b3f] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExportLibraryDependenciesCommand.cxx.o
[ 2b8f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFLTKWrapUICommand.cxx
[ 2be7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFLTKWrapUICommand.cxx.o
[ 2c28] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileCommand.cxx
[ 2c7a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileCommand.cxx.o
[ 2cb5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindFileCommand.cxx
[ 2d0b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindFileCommand.cxx.o
[ 2d4a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindLibraryCommand.cxx
[ 2da3] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindLibraryCommand.cxx.o
[ 2de5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindPackageCommand.cxx
[ 2e3e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindPackageCommand.cxx.o
[ 2e80] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindPathCommand.cxx
[ 2ed6] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindPathCommand.cxx.o
[ 2f15] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindProgramCommand.cxx
[ 2f6e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindProgramCommand.cxx.o
[ 2fb0] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmForEachCommand.cxx
[ 3005] -auxbase-strip CMakeFiles/CMakeLib.dir/cmForEachCommand.cxx.o
[ 3043] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFunctionBlocker.cxx
[ 3099] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFunctionBlocker.cxx.o
[ 30d8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFunctionCommand.cxx
[ 312e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFunctionCommand.cxx.o
[ 316d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetCMakePropertyCommand.cxx
[ 31cb] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGetCMakePropertyCommand.cxx.o
[ 3212] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetDirectoryPropertyCommand.cxx
[ 3274] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGetDirectoryPropertyCommand.cxx.o
[ 32bf] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetFilenameComponentCommand.cxx
[ 3321] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGetFilenameComponentCommand.cxx.o
[ 336c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetPropertyCommand.cxx
[ 33c5] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGetPropertyCommand.cxx.o
[ 3407] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetSourceFilePropertyCommand.cxx
[ 346a] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGetSourceFilePropertyCommand.cxx.o
[ 34b6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetTargetPropertyCommand.cxx
[ 3515] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGetTargetPropertyCommand.cxx.o
[ 355d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetTestPropertyCommand.cxx
[ 35ba] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGetTestPropertyCommand.cxx.o
[ 3600] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmHexFileConverter.cxx
[ 3657] -auxbase-strip CMakeFiles/CMakeLib.dir/cmHexFileConverter.cxx.o
[ 3697] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmIfCommand.cxx
[ 36e7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmIfCommand.cxx.o
[ 3720] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmIncludeCommand.cxx
[ 3775] -auxbase-strip CMakeFiles/CMakeLib.dir/cmIncludeCommand.cxx.o
[ 37b3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmIncludeDirectoryCommand.cxx
[ 3811] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmIncludeDirectoryCommand.cxx.o
[ 3858] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmIncludeExternalMSProjectCommand.cxx
[ 38be] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmIncludeExternalMSProjectCommand.cxx.o
[ 390d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmIncludeGuardCommand.cxx
[ 3967] -auxbase-strip CMakeFiles/CMakeLib.dir/cmIncludeGuardCommand.cxx.o
[ 39aa] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmIncludeRegularExpressionCommand.cxx
[ 3a10] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmIncludeRegularExpressionCommand.cxx.o
[ 3a5f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallCommand.cxx
[ 3ab4] -auxbase-strip CMakeFiles/CMakeLib.dir/cmInstallCommand.cxx.o
[ 3af2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallCommandArguments.cxx
[ 3b50] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallCommandArguments.cxx.o
[ 3b97] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallFilesCommand.cxx
[ 3bf1] -auxbase-strip CMakeFiles/CMakeLib.dir/cmInstallFilesCommand.cxx.o
[ 3c34] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallProgramsCommand.cxx
[ 3c91] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallProgramsCommand.cxx.o
[ 3cd7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallTargetsCommand.cxx
[ 3d33] -auxbase-strip CMakeFiles/CMakeLib.dir/cmInstallTargetsCommand.cxx.o
[ 3d78] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLinkDirectoriesCommand.cxx
[ 3dd5] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmLinkDirectoriesCommand.cxx.o
[ 3e1b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLinkLibrariesCommand.cxx
[ 3e76] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLinkLibrariesCommand.cxx.o
[ 3eba] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmListCommand.cxx
[ 3f0c] -auxbase-strip CMakeFiles/CMakeLib.dir/cmListCommand.cxx.o
[ 3f47] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLoadCacheCommand.cxx
[ 3f9e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLoadCacheCommand.cxx.o
[ 3fde] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLoadCommandCommand.cxx
[ 4037] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLoadCommandCommand.cxx.o
[ 4079] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMacroCommand.cxx
[ 40cc] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMacroCommand.cxx.o
[ 4108] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMakeDirectoryCommand.cxx
[ 4163] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMakeDirectoryCommand.cxx.o
[ 41a7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMarkAsAdvancedCommand.cxx
[ 4203] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMarkAsAdvancedCommand.cxx.o
[ 4248] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMathCommand.cxx
[ 429a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMathCommand.cxx.o
[ 42d5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMessageCommand.cxx
[ 432a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMessageCommand.cxx.o
[ 4368] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmOptionCommand.cxx
[ 43bc] -auxbase-strip CMakeFiles/CMakeLib.dir/cmOptionCommand.cxx.o
[ 43f9] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmOutputRequiredFilesCommand.cxx
[ 445a] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmOutputRequiredFilesCommand.cxx.o
[ 44a4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmParseArgumentsCommand.cxx
[ 4500] -auxbase-strip CMakeFiles/CMakeLib.dir/cmParseArgumentsCommand.cxx.o
[ 4545] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmPathLabel.cxx
[ 4595] -auxbase-strip CMakeFiles/CMakeLib.dir/cmPathLabel.cxx.o
[ 45ce] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmProjectCommand.cxx
[ 4623] -auxbase-strip CMakeFiles/CMakeLib.dir/cmProjectCommand.cxx.o
[ 4661] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQTWrapCPPCommand.cxx
[ 46b8] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQTWrapCPPCommand.cxx.o
[ 46f8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQTWrapUICommand.cxx
[ 474e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQTWrapUICommand.cxx.o
[ 478d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmRemoveCommand.cxx
[ 47e1] -auxbase-strip CMakeFiles/CMakeLib.dir/cmRemoveCommand.cxx.o
[ 481e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmRemoveDefinitionsCommand.cxx
[ 487d] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmRemoveDefinitionsCommand.cxx.o
[ 48c5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmReturnCommand.cxx
[ 4919] -auxbase-strip CMakeFiles/CMakeLib.dir/cmReturnCommand.cxx.o
[ 4956] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSearchPath.cxx
[ 49a7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSearchPath.cxx.o
[ 49e1] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSeparateArgumentsCommand.cxx
[ 4a40] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmSeparateArgumentsCommand.cxx.o
[ 4a88] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSetCommand.cxx
[ 4ad9] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSetCommand.cxx.o
[ 4b13] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSetDirectoryPropertiesCommand.cxx
[ 4b77] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmSetDirectoryPropertiesCommand.cxx.o
[ 4bc4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSetPropertyCommand.cxx
[ 4c1d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSetPropertyCommand.cxx.o
[ 4c5f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSetSourceFilesPropertiesCommand.cxx
[ 4cc5] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmSetSourceFilesPropertiesCommand.cxx.o
[ 4d14] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSetTargetPropertiesCommand.cxx
[ 4d75] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmSetTargetPropertiesCommand.cxx.o
[ 4dbf] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSetTestsPropertiesCommand.cxx
[ 4e1f] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmSetTestsPropertiesCommand.cxx.o
[ 4e68] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSiteNameCommand.cxx
[ 4ebe] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSiteNameCommand.cxx.o
[ 4efd] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSourceGroupCommand.cxx
[ 4f56] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSourceGroupCommand.cxx.o
[ 4f98] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmStringReplaceHelper.cxx
[ 4ff2] -auxbase-strip CMakeFiles/CMakeLib.dir/cmStringReplaceHelper.cxx.o
[ 5035] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmStringCommand.cxx
[ 5089] -auxbase-strip CMakeFiles/CMakeLib.dir/cmStringCommand.cxx.o
[ 50c6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSubcommandTable.cxx
[ 511c] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSubcommandTable.cxx.o
[ 515b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSubdirCommand.cxx
[ 51af] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSubdirCommand.cxx.o
[ 51ec] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmSubdirDependsCommand.cxx
[ 5247] -auxbase-strip CMakeFiles/CMakeLib.dir/cmSubdirDependsCommand.cxx.o
[ 528b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetCompileDefinitionsCommand.cxx
[ 52f1] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetCompileDefinitionsCommand.cxx.o
[ 5340] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetCompileFeaturesCommand.cxx
[ 53a3] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetCompileFeaturesCommand.cxx.o
[ 53ef] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetCompileOptionsCommand.cxx
[ 5451] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetCompileOptionsCommand.cxx.o
[ 549c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetIncludeDirectoriesCommand.cxx
[ 5502] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetIncludeDirectoriesCommand.cxx.o
[ 5551] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetLinkOptionsCommand.cxx
[ 55b0] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetLinkOptionsCommand.cxx.o
[ 55f8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetLinkDirectoriesCommand.cxx
[ 565b] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetLinkDirectoriesCommand.cxx.o
[ 56a7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetLinkLibrariesCommand.cxx
[ 5708] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetLinkLibrariesCommand.cxx.o
[ 5752] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetPrecompileHeadersCommand.cxx
[ 57b7] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmTargetPrecompileHeadersCommand.cxx.o
[ 5805] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetPropCommandBase.cxx
[ 5861] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTargetPropCommandBase.cxx.o
[ 58a6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTargetSourcesCommand.cxx
[ 5901] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTargetSourcesCommand.cxx.o
[ 5945] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTimestamp.cxx
[ 5995] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTimestamp.cxx.o
[ 59ce] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTryCompileCommand.cxx
[ 5a26] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTryCompileCommand.cxx.o
[ 5a67] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmTryRunCommand.cxx
[ 5abb] -auxbase-strip CMakeFiles/CMakeLib.dir/cmTryRunCommand.cxx.o
[ 5af8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmUnsetCommand.cxx
[ 5b4b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmUnsetCommand.cxx.o
[ 5b87] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmUseMangledMesaCommand.cxx
[ 5be3] -auxbase-strip CMakeFiles/CMakeLib.dir/cmUseMangledMesaCommand.cxx.o
[ 5c28] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmUtilitySourceCommand.cxx
[ 5c83] -auxbase-strip CMakeFiles/CMakeLib.dir/cmUtilitySourceCommand.cxx.o
[ 5cc7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmVariableRequiresCommand.cxx
[ 5d25] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmVariableRequiresCommand.cxx.o
[ 5d6c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmVariableWatchCommand.cxx
[ 5dc7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmVariableWatchCommand.cxx.o
[ 5e0b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmWhileCommand.cxx
[ 5e5e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmWhileCommand.cxx.o
[ 5e9a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmWriteFileCommand.cxx
[ 5ef1] -auxbase-strip CMakeFiles/CMakeLib.dir/cmWriteFileCommand.cxx.o
[ 5f31] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cm_codecvt.cxx
[ 5f80] -auxbase-strip CMakeFiles/CMakeLib.dir/cm_codecvt.cxx.o
[ 5fb8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/bindexplib.cxx
[ 6007] -auxbase-strip CMakeFiles/CMakeLib.dir/bindexplib.cxx.o
[ 603f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobalWatcomWMakeGenerator.cxx
[ 60a0] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGlobalWatcomWMakeGenerator.cxx.o
[ 60ea] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobalGhsMultiGenerator.cxx
[ 6148] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGlobalGhsMultiGenerator.cxx.o
[ 618f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLocalGhsMultiGenerator.cxx
[ 61ec] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmLocalGhsMultiGenerator.cxx.o
[ 6232] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGhsMultiTargetGenerator.cxx
[ 6290] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGhsMultiTargetGenerator.cxx.o
[ 62d7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGhsMultiGpj.cxx
[ 6329] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGhsMultiGpj.cxx.o
[ 6364] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobalNinjaGenerator.cxx
[ 63bf] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGlobalNinjaGenerator.cxx.o
[ 6403] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLocalNinjaGenerator.cxx
[ 645d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLocalNinjaGenerator.cxx.o
[ 64a0] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmNinjaTargetGenerator.cxx
[ 64fb] -auxbase-strip CMakeFiles/CMakeLib.dir/cmNinjaTargetGenerator.cxx.o
[ 653f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmNinjaNormalTargetGenerator.cxx
[ 65a0] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmNinjaNormalTargetGenerator.cxx.o
[ 65ea] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmNinjaUtilityTargetGenerator.cxx
[ 664c] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmNinjaUtilityTargetGenerator.cxx.o
[ 6697] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmNinjaLinkLineComputer.cxx
[ 66f3] -auxbase-strip CMakeFiles/CMakeLib.dir/cmNinjaLinkLineComputer.cxx.o
[ 6738] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmNinjaLinkLineDeviceComputer.cxx
[ 679a] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmNinjaLinkLineDeviceComputer.cxx.o
[ 67e5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmFortranLexer.cxx
[ 6844] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmFortranLexer.cxx.o
[ 688c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmFortranParser.cxx
[ 68ec] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmFortranParser.cxx.o
[ 6935] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmArchiveWrite.cxx
[ 6988] -auxbase-strip CMakeFiles/CMakeLib.dir/cmArchiveWrite.cxx.o
[ 69c4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmArgumentParser.cxx
[ 6a19] -auxbase-strip CMakeFiles/CMakeLib.dir/cmArgumentParser.cxx.o
[ 6a57] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCacheManager.cxx
[ 6aaa] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCacheManager.cxx.o
[ 6ae6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCheckCustomOutputs.cxx
[ 6b3f] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCheckCustomOutputs.cxx.o
[ 6b81] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCommandArgumentParserHelper.cxx
[ 6be3] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmCommandArgumentParserHelper.cxx.o
[ 6c2e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCommonTargetGenerator.cxx
[ 6c8a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCommonTargetGenerator.cxx.o
[ 6ccf] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmComputeLinkInformation.cxx
[ 6d2c] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmComputeLinkInformation.cxx.o
[ 6d72] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCryptoHash.cxx
[ 6dc3] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCryptoHash.cxx.o
[ 6dfd] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCurl.cxx
[ 6e48] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCurl.cxx.o
[ 6e7c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCustomCommand.cxx
[ 6ed0] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCustomCommand.cxx.o
[ 6f0d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCustomCommandGenerator.cxx
[ 6f6a] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmCustomCommandGenerator.cxx.o
[ 6fb0] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCustomCommandLines.cxx
[ 7009] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCustomCommandLines.cxx.o
[ 704b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDefinitions.cxx
[ 709d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDefinitions.cxx.o
[ 70d8] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDepends.cxx
[ 7126] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDepends.cxx.o
[ 715d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmELF.cxx
[ 71a7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmELF.cxx.o
[ 71da] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExprParserHelper.cxx
[ 7231] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExprParserHelper.cxx.o
[ 7271] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportBuildAndroidMKGenerator.cxx
[ 72d5] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExportBuildAndroidMKGenerator.cxx.o
[ 7322] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportBuildFileGenerator.cxx
[ 7381] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExportBuildFileGenerator.cxx.o
[ 73c9] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportFileGenerator.cxx
[ 7423] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExportFileGenerator.cxx.o
[ 7466] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportSet.cxx
[ 74b6] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExportSet.cxx.o
[ 74ef] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExternalMakefileProjectGenerator.cxx
[ 7556] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExternalMakefileProjectGenerator.cxx.o
[ 75a6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExtraCodeBlocksGenerator.cxx
[ 7605] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExtraCodeBlocksGenerator.cxx.o
[ 764d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExtraCodeLiteGenerator.cxx
[ 76aa] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExtraCodeLiteGenerator.cxx.o
[ 76f0] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExtraEclipseCDT4Generator.cxx
[ 7750] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExtraEclipseCDT4Generator.cxx.o
[ 7799] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExtraKateGenerator.cxx
[ 77f2] -auxbase-strip CMakeFiles/CMakeLib.dir/cmExtraKateGenerator.cxx.o
[ 7834] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExtraSublimeTextGenerator.cxx
[ 7894] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExtraSublimeTextGenerator.cxx.o
[ 78dd] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileAPI.cxx
[ 792b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileAPI.cxx.o
[ 7962] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileAPICache.cxx
[ 79b5] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileAPICache.cxx.o
[ 79f1] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileAPICodemodel.cxx
[ 7a48] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileAPICodemodel.cxx.o
[ 7a88] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileAPICMakeFiles.cxx
[ 7ae0] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileAPICMakeFiles.cxx.o
[ 7b21] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileCopier.cxx
[ 7b72] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileCopier.cxx.o
[ 7bac] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileInstaller.cxx
[ 7c00] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileInstaller.cxx.o
[ 7c3d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileLock.cxx
[ 7c8c] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileLock.cxx.o
[ 7cc4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileLockPool.cxx
[ 7d17] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileLockPool.cxx.o
[ 7d53] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileLockResult.cxx
[ 7da8] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileLockResult.cxx.o
[ 7de6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileTimeCache.cxx
[ 7e3a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileTimeCache.cxx.o
[ 7e77] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileTimes.cxx
[ 7ec7] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFileTimes.cxx.o
[ 7f00] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFSPermissions.cxx
[ 7f54] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFSPermissions.cxx.o
[ 7f91] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGccDepfileReader.cxx
[ 7fe8] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGccDepfileReader.cxx.o
[ 8028] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionEvaluationFile.cxx
[ 8090] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionEvaluationFile.cxx.o
[ 80e1] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpression.cxx
[ 813b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGeneratorExpression.cxx.o
[ 817e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorTarget.cxx
[ 81d4] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGeneratorTarget.cxx.o
[ 8213] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGetPipes.cxx
[ 8262] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGetPipes.cxx.o
[ 829a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobalCommonGenerator.cxx
[ 82f6] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGlobalCommonGenerator.cxx.o
[ 833b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobalGenerator.cxx
[ 8391] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGlobalGenerator.cxx.o
[ 83d0] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobalUnixMakefileGenerator3.cxx
[ 8433] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGlobalUnixMakefileGenerator3.cxx.o
[ 847f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGlobVerificationManager.cxx
[ 84dd] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGlobVerificationManager.cxx.o
[ 8524] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGraphVizWriter.cxx
[ 8579] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGraphVizWriter.cxx.o
[ 85b7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallGenerator.cxx
[ 860e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmInstallGenerator.cxx.o
[ 864e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallExportGenerator.cxx
[ 86ab] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallExportGenerator.cxx.o
[ 86f1] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstalledFile.cxx
[ 8745] -auxbase-strip CMakeFiles/CMakeLib.dir/cmInstalledFile.cxx.o
[ 8782] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallFilesGenerator.cxx
[ 87de] -auxbase-strip CMakeFiles/CMakeLib.dir/cmInstallFilesGenerator.cxx.o
[ 8823] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallScriptGenerator.cxx
[ 8880] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallScriptGenerator.cxx.o
[ 88c6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallSubdirectoryGenerator.cxx
[ 8929] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallSubdirectoryGenerator.cxx.o
[ 8975] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallTargetGenerator.cxx
[ 89d2] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallTargetGenerator.cxx.o
[ 8a18] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmInstallDirectoryGenerator.cxx
[ 8a78] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmInstallDirectoryGenerator.cxx.o
[ 8ac1] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLinkItem.cxx
[ 8b10] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLinkItem.cxx.o
[ 8b48] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLinkLineComputer.cxx
[ 8b9f] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLinkLineComputer.cxx.o
[ 8bdf] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLinkLineDeviceComputer.cxx
[ 8c3c] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmLinkLineDeviceComputer.cxx.o
[ 8c82] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmListFileCache.cxx
[ 8cd6] -auxbase-strip CMakeFiles/CMakeLib.dir/cmListFileCache.cxx.o
[ 8d13] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLocalCommonGenerator.cxx
[ 8d6e] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLocalCommonGenerator.cxx.o
[ 8db2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLocalUnixMakefileGenerator3.cxx
[ 8e14] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmLocalUnixMakefileGenerator3.cxx.o
[ 8e5f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMakefileTargetGenerator.cxx
[ 8ebd] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmMakefileTargetGenerator.cxx.o
[ 8f04] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMakefileExecutableTargetGenerator.cxx
[ 8f6c] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmMakefileExecutableTargetGenerator.cxx.o
[ 8fbd] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMakefileLibraryTargetGenerator.cxx
[ 9022] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmMakefileLibraryTargetGenerator.cxx.o
[ 9070] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMakefileUtilityTargetGenerator.cxx
[ 90d5] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmMakefileUtilityTargetGenerator.cxx.o
[ 9123] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMessenger.cxx
[ 9173] -auxbase-strip CMakeFiles/CMakeLib.dir/cmMessenger.cxx.o
[ 91ac] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmMSVC60LinkLineComputer.cxx
[ 9209] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmMSVC60LinkLineComputer.cxx.o
[ 924f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmOSXBundleGenerator.cxx
[ 92a8] -auxbase-strip CMakeFiles/CMakeLib.dir/cmOSXBundleGenerator.cxx.o
[ 92ea] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmOrderDirectories.cxx
[ 9341] -auxbase-strip CMakeFiles/CMakeLib.dir/cmOrderDirectories.cxx.o
[ 9381] -D KWSYS_ENCODING_DEFAULT_CODEPAGE=CP_UTF8
[ 93ac] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmProcessOutput.cxx
[ 9400] -auxbase-strip CMakeFiles/CMakeLib.dir/cmProcessOutput.cxx.o
[ 943d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmPropertyDefinitionMap.cxx
[ 9499] -auxbase-strip CMakeFiles/CMakeLib.dir/cmPropertyDefinitionMap.cxx.o
[ 94de] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmPropertyMap.cxx
[ 9530] -auxbase-strip CMakeFiles/CMakeLib.dir/cmPropertyMap.cxx.o
[ 956b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQtAutoGen.cxx
[ 95bb] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQtAutoGen.cxx.o
[ 95f4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQtAutoGenerator.cxx
[ 964a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQtAutoGenerator.cxx.o
[ 9689] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQtAutoGenGlobalInitializer.cxx
[ 96ea] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmQtAutoGenGlobalInitializer.cxx.o
[ 9734] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmQtAutoGenInitializer.cxx
[ 978f] -auxbase-strip CMakeFiles/CMakeLib.dir/cmQtAutoGenInitializer.cxx.o
[ 97d3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmRuntimeDependencyArchive.cxx
[ 9832] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmRuntimeDependencyArchive.cxx.o
[ 987a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmUuid.cxx
[ 98c5] -auxbase-strip CMakeFiles/CMakeLib.dir/cmUuid.cxx.o
[ 98f9] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmUVHandlePtr.cxx
[ 994b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmUVHandlePtr.cxx.o
[ 9986] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmXMLSafe.cxx
[ 99d4] -auxbase-strip CMakeFiles/CMakeLib.dir/cmXMLSafe.cxx.o
[ 9a0b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmXMLWriter.cxx
[ 9a5b] -auxbase-strip CMakeFiles/CMakeLib.dir/cmXMLWriter.cxx.o
[ 9a94] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmConditionEvaluator.cxx
[ 9aed] -auxbase-strip CMakeFiles/CMakeLib.dir/cmConditionEvaluator.cxx.o
[ 9b2f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCoreTryCompile.cxx
[ 9b84] -auxbase-strip CMakeFiles/CMakeLib.dir/cmCoreTryCompile.cxx.o
[ 9bc2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindBase.cxx
[ 9c11] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindBase.cxx.o
[ 9c49] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFindCommon.cxx
[ 9c9a] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFindCommon.cxx.o
[ 9cd4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmString.cxx
[ 9d21] -auxbase-strip CMakeFiles/CMakeLib.dir/cmString.cxx.o
[ 9d57] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cm_get_date.c
[ 9da5] -auxbase-strip CMakeFiles/CMakeLib.dir/cm_get_date.c.o
[ 9ddc] -std=gnu11
[ 9de7] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cm_utf8.c
[ 9e31] -auxbase-strip CMakeFiles/CMakeLib.dir/cm_utf8.c.o
[ 9e64] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmCommandArgumentLexer.cxx
[ 9ecb] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmCommandArgumentLexer.cxx.o
[ 9f1b] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmCommandArgumentParser.cxx
[ 9f83] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmCommandArgumentParser.cxx.o
[ 9fd4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmExprLexer.cxx
[ a030] -auxbase-strip CMakeFiles/CMakeLib.dir/LexerParser/cmExprLexer.cxx.o
[ a075] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmExprParser.cxx
[ a0d2] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmExprParser.cxx.o
[ a118] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmListFileLexer.c
[ a176] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmListFileLexer.c.o
[ a1bd] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsLinuxELFLinker.cxx
[ a21a] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsLinuxELFLinker.cxx.o
[ a260] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx
[ a2d8] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx.o
[ a339] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsMacOSMachOLinker.cxx
[ a398] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsMacOSMachOLinker.cxx.o
[ a3e0] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx
[ a458] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx.o
[ a4b9] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsWindowsPELinker.cxx
[ a517] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsWindowsPELinker.cxx.o
[ a55e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx
[ a5d7] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx.o
[ a639] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmComputeLinkDepends.cxx
[ a692] -auxbase-strip CMakeFiles/CMakeLib.dir/cmComputeLinkDepends.cxx.o
[ a6d4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmComputeTargetDepends.cxx
[ a72f] -auxbase-strip CMakeFiles/CMakeLib.dir/cmComputeTargetDepends.cxx.o
[ a773] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmCPackPropertiesGenerator.cxx
[ a7d2] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmCPackPropertiesGenerator.cxx.o
[ a81a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDependsC.cxx
[ a869] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDependsC.cxx.o
[ a8a1] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmDependsJava.cxx
[ a8f3] -auxbase-strip CMakeFiles/CMakeLib.dir/cmDependsJava.cxx.o
[ a92e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportInstallAndroidMKGenerator.cxx
[ a994] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExportInstallAndroidMKGenerator.cxx.o
[ a9e3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportInstallFileGenerator.cxx
[ aa44] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExportInstallFileGenerator.cxx.o
[ aa8e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmExportTryCompileFileGenerator.cxx
[ aaf2] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmExportTryCompileFileGenerator.cxx.o
[ ab3f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFilePathChecksum.cxx
[ ab96] -auxbase-strip CMakeFiles/CMakeLib.dir/cmFilePathChecksum.cxx.o
[ abd6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGccDepfileLexerHelper.cxx
[ ac32] -auxbase-strip CMakeFiles/CMakeLib.dir/cmGccDepfileLexerHelper.cxx.o
[ ac77] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionContext.cxx
[ acd8] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionContext.cxx.o
[ ad22] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionDAGChecker.cxx
[ ad86] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionDAGChecker.cxx.o
[ add3] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionEvaluator.cxx
[ ae36] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionEvaluator.cxx.o
[ ae82] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionLexer.cxx
[ aee1] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionLexer.cxx.o
[ af29] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionNode.cxx
[ af87] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionNode.cxx.o
[ afce] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmGeneratorExpressionParser.cxx
[ b02e] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmGeneratorExpressionParser.cxx.o
[ b077] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLinkItemGraphVisitor.cxx
[ b0d2] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLinkItemGraphVisitor.cxx.o
[ b116] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLDConfigLDConfigTool.cxx
[ b171] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLDConfigLDConfigTool.cxx.o
[ b1b5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmLDConfigTool.cxx
[ b208] -auxbase-strip CMakeFiles/CMakeLib.dir/cmLDConfigTool.cxx.o
[ b244] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmPropertyDefinition.cxx
[ b29d] -auxbase-strip CMakeFiles/CMakeLib.dir/cmPropertyDefinition.cxx.o
[ b2df] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/LexerParser/cmGccDepfileLexer.cxx
[ b341] -auxbase-strip
CMakeFiles/CMakeLib.dir/LexerParser/cmGccDepfileLexer.cxx.o
[ b38c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBase32.cxx
[ b3d9] -auxbase-strip CMakeFiles/CMakeLib.dir/cmBase32.cxx.o
[ b40f] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsLinker.cxx
[ b464] -auxbase-strip CMakeFiles/CMakeLib.dir/cmBinUtilsLinker.cxx.o
[ b4a2] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx
[ b513] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx.o
[ b56d] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx
[ b5e0] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx.o
[ b63c] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx
[ b6b5] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx.o
[ b717] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx
[ b789] -auxbase-strip
CMakeFiles/CMakeLib.dir/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx.o
[ b7e4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmComputeComponentGraph.cxx
[ b840] -auxbase-strip CMakeFiles/CMakeLib.dir/cmComputeComponentGraph.cxx.o
[ b885] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmServer.cxx
[ b8d2] -auxbase-strip CMakeFiles/CMakeServerLib.dir/cmServer.cxx.o
[ b90e] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmServerConnection.cxx
[ b965] -auxbase-strip
CMakeFiles/CMakeServerLib.dir/cmServerConnection.cxx.o
[ b9ab] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmServerProtocol.cxx
[ ba00] -auxbase-strip CMakeFiles/CMakeServerLib.dir/cmServerProtocol.cxx.o
[ ba44] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmConnection.cxx
[ ba95] -auxbase-strip CMakeFiles/CMakeServerLib.dir/cmConnection.cxx.o
[ bad5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmFileMonitor.cxx
[ bb27] -auxbase-strip CMakeFiles/CMakeServerLib.dir/cmFileMonitor.cxx.o
[ bb68] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmJsonObjects.cxx
[ bbba] -auxbase-strip CMakeFiles/CMakeServerLib.dir/cmJsonObjects.cxx.o
[ bbfb] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/cmPipeConnection.cxx
[ bc50] -auxbase-strip CMakeFiles/CMakeServerLib.dir/cmPipeConnection.cxx.o
[ bc94] -D KWSYS_NAMESPACE=cmsys
[ bcad] -D KWSYS_C_HAS_PTRDIFF_T=1
[ bcc8] -D KWSYS_C_HAS_SSIZE_T=1
[ bce1] -D KWSYS_C_HAS_CLOCK_GETTIME_MONOTONIC=1
[ bd0a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/ProcessUNIX.c
[ bd5e] -auxbase-strip CMakeFiles/cmsys.dir/ProcessUNIX.c.o
[ bd92] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/Terminal.c
[ bde3] -auxbase-strip CMakeFiles/cmsys.dir/Terminal.c.o
[ be14] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/System.c
[ be63] -auxbase-strip CMakeFiles/cmsys.dir/System.c.o
[ be92] -D KWSYS_STRING_C
[ bea4] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/String.c
[ bef3] -auxbase-strip CMakeFiles/cmsys.dir/String.c.o
[ bf22] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/Directory.cxx
[ bf76] -auxbase-strip CMakeFiles/cmsys.dir/Directory.cxx.o
[ bfaa] -D KWSYS_SUPPORTS_SHARED_LIBS=1
[ bfca] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/DynamicLoader.cxx
[ c022] -auxbase-strip CMakeFiles/cmsys.dir/DynamicLoader.cxx.o
[ c05a] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/EncodingCXX.cxx
[ c0b0] -auxbase-strip CMakeFiles/cmsys.dir/EncodingCXX.cxx.o
[ c0e6] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/Glob.cxx
[ c135] -auxbase-strip CMakeFiles/cmsys.dir/Glob.cxx.o
[ c164] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/RegularExpression.cxx
[ c1c0] -auxbase-strip CMakeFiles/cmsys.dir/RegularExpression.cxx.o
[ c1fc] -D KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=0
[ c223] -D KWSYS_CXX_HAS_SETENV=1
[ c23d] -D KWSYS_CXX_HAS_UNSETENV=1
[ c259] -D KWSYS_CXX_HAS_UTIMENSAT=1
[ c276] -D KWSYS_CXX_HAS_UTIMES=1
[ c290] -D KWSYS_CXX_STAT_HAS_ST_MTIM=1
[ c2b0] -D KWSYS_CXX_STAT_HAS_ST_MTIMESPEC=0
[ c2d5] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/SystemTools.cxx
[ c32b] -auxbase-strip CMakeFiles/cmsys.dir/SystemTools.cxx.o
[ c361] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/FStream.cxx
[ c3b3] -auxbase-strip CMakeFiles/cmsys.dir/FStream.cxx.o
[ c3e5] -D KWSYS_CXX_HAS_ATOL=1
[ c3fd] -D KWSYS_CXX_HAS_ATOLL=1
[ c416] -D KWSYS_CXX_HAS_GETLOADAVG=1
[ c434] -D KWSYS_CXX_HAS_RLIMIT64=1
[ c450] -D KWSYS_IOS_HAS_OSTREAM_LONG_LONG=1
[ c475] -D KWSYS_SYSTEMINFORMATION_HAS_BACKTRACE=1
[ c4a0] -D KWSYS_SYSTEMINFORMATION_HAS_CPP_DEMANGLE=1
[ c4ce] -D KWSYS_SYSTEMINFORMATION_HAS_SYMBOL_LOOKUP=1
[ c4fd] -D KWSYS_SYS_HAS_IFADDRS_H=1
[ c51a] -D KWSYS_USE_LONG_LONG=1
[ c533] -D SIZEOF_VOID_P=4
[ c546] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/SystemInformation.cxx
[ c5a2] -auxbase-strip CMakeFiles/cmsys.dir/SystemInformation.cxx.o
[ c5de] /var/tmp/portage/dev-util/cmake-3.17.3/work/cmake-3.17.3/Source/kwsys/EncodingC.c
[ c630] -auxbase-strip CMakeFiles/cmsys.dir/EncodingC.c.o

OK, I’ve tried to reproduce this in a Docker container but I’m not very familiar with Gentoo. I ran:

$ docker pull gentoo/stage3-amd64
$ docker run -it --rm gentoo/stage3-amd64
 $ emerge --sync
 $ emerge cmake
 $ cmake

and I did not see any segfaults. I’m guessing I need to provide some build flags. What other steps are necessary to reproduce this?

I would first run the 32-bit version, since that is what I am using.

  • Matthew

With my situation, you should be able to do something as simple as:

$ docker pull gentoo/stage3-x86
$ docker run -it --rm gentoo/stage3-x86
$ /usr/bin/cmake --version

  • Matthew

OK, I tried again:

$ docker pull gentoo/stage3-x86
$ docker run -it --rm gentoo/stage3-x86
 $ emerge --sync
 $ emerge cmake
 $ cmake

and I still didn’t see any segfaults. What build flags did you use?

I am rebuilding right now to optimize for debugging (-Og).

I can put a tarfile of the build tree onto Google Drive and share it with you. Shall I do that?

  • Matthew

(Attachment cmake is missing)

I figured most of this out.

The problem is in Source/cmakemain.cxx where it does not check for a returned error code from uv_default_loop().

uv_default_loop() returns an error code and the ‘uv_loop_t* loop’ parameter to uv_loop_close() is still set to NULL.

705 int ret = do_cmake(ac, av);
706 #ifndef CMAKE_BOOTSTRAP
707 cmDynamicLoader::FlushCache();
708 #endif
709 uv_loop_close(uv_default_loop()); <---- no error code checking
710 return ret;
711 }

uv_default_loop() calls up_loop_init().

In uv_loop_init() (libuv-1.37.0/src/unix/loop.c) line 88 it gets an error (-38) and it jumps to the fail_async_init() error handler:

88 err = uv_async_init(loop, &loop->wq_async, uv__work_done);

89 if (err) <---- An error is returned
90 goto fail_async_init; <---- Jump to error handler
91
(gdb) next
89 if (err)
(gdb) print err
$24 = -38

I believe a patch checking the return code of uv_default_loop() would be helpful. I’ll investigate why uv_async_init() is getting a --38 return code.

  • Matthew