clang_parseTransitionUnit2 gives error

Enes Albay albayenes at gmail.com
Sun Apr 17 08:34:47 BST 2022


Sorry for the late reply. I tried LIBGL_ALWAYS_INDIRECT=1 ./helloworld from
stackoverflow.


I attached LD_DEBUG=libs output with Qt and without Qt to this email.





On Fri, Apr 15, 2022 at 2:02 AM Sven Brauch <mail at svenbrauch.de> wrote:

> Hi,
>
> which solution did you try? The actual answer (not the comments) sounds
> plausible, we have heard of similar issues before, but that might not be
> easy to do on your system.
>
> Maybe you can get further info with LD_DEBUG=libs set and checking if
> indeed two different versions of libclang are loaded along the road?
>
> Greetings,
> Sven
>
>
> On 4/14/22 23:26, Enes Albay wrote:
> >
> > I guess I found the reason for the error. Clang works if I comment out
> > the line "QApplication app(argc, argv);" Otherwise It gives error like
> this:
> >
> > $ ./helloworld
> > 4
> > Unable to parse translation unit. Quitting.
> >
> > As far as I understand this bug is related to this one
> > https://stackoverflow.com/questions/17953156/cannot-use-libclang-with-qt
> > <
> https://stackoverflow.com/questions/17953156/cannot-use-libclang-with-qt>
> >
> > But the solution suggested in stackoverflow does not work for me. Do you
> > have any idea ?
> >
> > /******************MAIN **************************/
> > #include <QApplication>
> > #include "clang-c/Index.h"
> >
> > #include <iostream>
> > using namespace std;
> >
> > int main (int argc, char *argv[])
> > {
> >      QApplication app(argc, argv);
> >     CXIndex index = clang_createIndex(0, 0);
> >    CXTranslationUnit unit = nullptr;
> >
> >    CXErrorCode code = clang_parseTranslationUnit2(
> >      index,
> >      "/media/enes/MyFiles/programming/cpp/cmakeExamples/ex1/main.cpp",
> > nullptr, 0,
> >      nullptr, 0,
> >      CXTranslationUnit_None, &unit);
> >
> >    cerr << code << endl;
> >    if (code != CXError_Success) {
> >      cerr << "Unable to parse translation unit. Quitting." << endl;
> >      exit(-1);
> >    }
> >
> >    return 0;
> > }
> >
> >
> > # CMakeLists.txt
> >
> > cmake_minimum_required(VERSION 3.0)
> >
> > project (helloworld)
> >
> > set(LLVM_ROOT /usr/lib/llvm-13)
> > set(QT_MIN_VERSION "5.15.2")
> >
> > # Find Qt modules
> > find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
> >      Core    # QCommandLineParser, QStringLiteral
> >      Widgets # QApplication
> > )
> >
> > find_program(LLVM_CONFIG_EXECUTABLE NAMES llvm-config HINTS
> > ${LLVM_ROOT}/bin DOC "llvm-config executable" NO_DEFAULT_PATH)
> > message(${LLVM_CONFIG_EXECUTABLE})
> > set(Clang_DIR /usr/lib/llvm-13/cmake)
> >
> > # Find CMake file for Clang
> > find_package(Clang REQUIRED)
> >
> > execute_process(
> >          COMMAND ${LLVM_CONFIG_EXECUTABLE} --includedir
> >          OUTPUT_VARIABLE LLVM_INCLUDE_DIRS
> >          OUTPUT_STRIP_TRAILING_WHITESPACE
> >          )
> >
> > message(${LLVM_INCLUDE_DIRS})
> >
> > execute_process(
> >          COMMAND ${LLVM_CONFIG_EXECUTABLE} --libdir
> >          OUTPUT_VARIABLE LLVM_LIBRARY_DIRS
> >          OUTPUT_STRIP_TRAILING_WHITESPACE
> >          )
> >
> > include_directories(${LLVM_INCLUDE_DIRS})
> >
> > set(helloworld_SRCS main.cpp)
> > add_executable(helloworld ${helloworld_SRCS})
> > target_link_libraries(helloworld
> >      Qt5::Widgets
> >      /usr/lib/llvm-13/lib/libclang.so
> >      /usr/lib/llvm-13/lib/libclang-cpp.so.13
> > )
> > ~
> >
> >
> >
> > On Tue, Apr 12, 2022 at 6:37 PM Milian Wolff <mail at milianw.de
> > <mailto:mail at milianw.de>> wrote:
> >
> >     On Tuesday, April 12, 2022 5:33:38 PM CEST Enes Albay wrote:
> >      > I found something. After removing clang and llvm from my system I
> >     get the
> >      > following error which is the same as before removing clang.
> >      >
> >      > I think the actual problem is clang_parseTranslationUnit2 can not
> >     call
> >      > clang even before removing clang
> >      >
> >      > Is there a way to verify such a situation?
> >
> >     We use libclang directly, not clang. Try to ldd on the
> >     kdevclangsupport or use
> >     gdb and `info shared` to see where it loads that from. You didn't
> >     remove all
> >     of that yet apparently.
> >
> >     --
> >     Milian Wolff
> >     http://milianw.de <http://milianw.de>
> >
> >
> >
> >
> > --
> > Enes Albay
>


-- 
Enes Albay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kdevelop-devel/attachments/20220417/c85eae39/attachment-0001.htm>
-------------- next part --------------
      4568:	find library=libQt5Widgets.so.5 [0]; searching
      4568:	 search path=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell:/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu/tls:/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell:/home/enes/kde/usr/lib/x86_64-linux-gnu/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu:tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
      4568:	  trying file=tls/haswell/x86_64/libQt5Widgets.so.5
      4568:	  trying file=tls/haswell/libQt5Widgets.so.5
      4568:	  trying file=tls/x86_64/libQt5Widgets.so.5
      4568:	  trying file=tls/libQt5Widgets.so.5
      4568:	  trying file=haswell/x86_64/libQt5Widgets.so.5
      4568:	  trying file=haswell/libQt5Widgets.so.5
      4568:	  trying file=x86_64/libQt5Widgets.so.5
      4568:	  trying file=libQt5Widgets.so.5
      4568:	 search path=/usr/lib/llvm-11/lib/tls/haswell/x86_64:/usr/lib/llvm-11/lib/tls/haswell:/usr/lib/llvm-11/lib/tls/x86_64:/usr/lib/llvm-11/lib/tls:/usr/lib/llvm-11/lib/haswell/x86_64:/usr/lib/llvm-11/lib/haswell:/usr/lib/llvm-11/lib/x86_64:/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      4568:	  trying file=/usr/lib/llvm-11/lib/tls/haswell/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/tls/haswell/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/tls/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/tls/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/haswell/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/haswell/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/x86_64/libQt5Widgets.so.5
      4568:	  trying file=/usr/lib/llvm-11/lib/libQt5Widgets.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Widgets.so.5
      4568:	
      4568:	find library=libclang-11.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libclang-11.so.1
      4568:	  trying file=tls/haswell/libclang-11.so.1
      4568:	  trying file=tls/x86_64/libclang-11.so.1
      4568:	  trying file=tls/libclang-11.so.1
      4568:	  trying file=haswell/x86_64/libclang-11.so.1
      4568:	  trying file=haswell/libclang-11.so.1
      4568:	  trying file=x86_64/libclang-11.so.1
      4568:	  trying file=libclang-11.so.1
      4568:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      4568:	  trying file=/usr/lib/llvm-11/lib/libclang-11.so.1
      4568:	
      4568:	find library=libQt5Core.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Core.so.5
      4568:	  trying file=tls/haswell/libQt5Core.so.5
      4568:	  trying file=tls/x86_64/libQt5Core.so.5
      4568:	  trying file=tls/libQt5Core.so.5
      4568:	  trying file=haswell/x86_64/libQt5Core.so.5
      4568:	  trying file=haswell/libQt5Core.so.5
      4568:	  trying file=x86_64/libQt5Core.so.5
      4568:	  trying file=libQt5Core.so.5
      4568:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      4568:	  trying file=/usr/lib/llvm-11/lib/libQt5Core.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Core.so.5
      4568:	
      4568:	find library=libstdc++.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libstdc++.so.6
      4568:	  trying file=tls/haswell/libstdc++.so.6
      4568:	  trying file=tls/x86_64/libstdc++.so.6
      4568:	  trying file=tls/libstdc++.so.6
      4568:	  trying file=haswell/x86_64/libstdc++.so.6
      4568:	  trying file=haswell/libstdc++.so.6
      4568:	  trying file=x86_64/libstdc++.so.6
      4568:	  trying file=libstdc++.so.6
      4568:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      4568:	  trying file=/usr/lib/llvm-11/lib/libstdc++.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libstdc++.so.6
      4568:	
      4568:	find library=libgcc_s.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libgcc_s.so.1
      4568:	  trying file=tls/haswell/libgcc_s.so.1
      4568:	  trying file=tls/x86_64/libgcc_s.so.1
      4568:	  trying file=tls/libgcc_s.so.1
      4568:	  trying file=haswell/x86_64/libgcc_s.so.1
      4568:	  trying file=haswell/libgcc_s.so.1
      4568:	  trying file=x86_64/libgcc_s.so.1
      4568:	  trying file=libgcc_s.so.1
      4568:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      4568:	  trying file=/usr/lib/llvm-11/lib/libgcc_s.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libgcc_s.so.1
      4568:	
      4568:	find library=libc.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libc.so.6
      4568:	  trying file=tls/haswell/libc.so.6
      4568:	  trying file=tls/x86_64/libc.so.6
      4568:	  trying file=tls/libc.so.6
      4568:	  trying file=haswell/x86_64/libc.so.6
      4568:	  trying file=haswell/libc.so.6
      4568:	  trying file=x86_64/libc.so.6
      4568:	  trying file=libc.so.6
      4568:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      4568:	  trying file=/usr/lib/llvm-11/lib/libc.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libc.so.6
      4568:	
      4568:	find library=libQt5Gui.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Gui.so.5
      4568:	  trying file=tls/haswell/libQt5Gui.so.5
      4568:	  trying file=tls/x86_64/libQt5Gui.so.5
      4568:	  trying file=tls/libQt5Gui.so.5
      4568:	  trying file=haswell/x86_64/libQt5Gui.so.5
      4568:	  trying file=haswell/libQt5Gui.so.5
      4568:	  trying file=x86_64/libQt5Gui.so.5
      4568:	  trying file=libQt5Gui.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Gui.so.5
      4568:	
      4568:	find library=libm.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libm.so.6
      4568:	  trying file=tls/haswell/libm.so.6
      4568:	  trying file=tls/x86_64/libm.so.6
      4568:	  trying file=tls/libm.so.6
      4568:	  trying file=haswell/x86_64/libm.so.6
      4568:	  trying file=haswell/libm.so.6
      4568:	  trying file=x86_64/libm.so.6
      4568:	  trying file=libm.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libm.so.6
      4568:	
      4568:	find library=libdl.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libdl.so.2
      4568:	  trying file=tls/haswell/libdl.so.2
      4568:	  trying file=tls/x86_64/libdl.so.2
      4568:	  trying file=tls/libdl.so.2
      4568:	  trying file=haswell/x86_64/libdl.so.2
      4568:	  trying file=haswell/libdl.so.2
      4568:	  trying file=x86_64/libdl.so.2
      4568:	  trying file=libdl.so.2
      4568:	 search path=/usr/lib/llvm-11/lib/../lib/tls/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/tls/haswell:/usr/lib/llvm-11/lib/../lib/tls/x86_64:/usr/lib/llvm-11/lib/../lib/tls:/usr/lib/llvm-11/lib/../lib/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/haswell:/usr/lib/llvm-11/lib/../lib/x86_64:/usr/lib/llvm-11/lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/libclang-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/haswell/x86_64/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/haswell/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/x86_64/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/haswell/x86_64/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/haswell/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/x86_64/libdl.so.2
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/libdl.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libdl.so.2
      4568:	
      4568:	find library=libLLVM-11.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libLLVM-11.so.1
      4568:	  trying file=tls/haswell/libLLVM-11.so.1
      4568:	  trying file=tls/x86_64/libLLVM-11.so.1
      4568:	  trying file=tls/libLLVM-11.so.1
      4568:	  trying file=haswell/x86_64/libLLVM-11.so.1
      4568:	  trying file=haswell/libLLVM-11.so.1
      4568:	  trying file=x86_64/libLLVM-11.so.1
      4568:	  trying file=libLLVM-11.so.1
      4568:	 search path=/usr/lib/llvm-11/lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/libclang-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1
      4568:	
      4568:	find library=libpthread.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpthread.so.0
      4568:	  trying file=tls/haswell/libpthread.so.0
      4568:	  trying file=tls/x86_64/libpthread.so.0
      4568:	  trying file=tls/libpthread.so.0
      4568:	  trying file=haswell/x86_64/libpthread.so.0
      4568:	  trying file=haswell/libpthread.so.0
      4568:	  trying file=x86_64/libpthread.so.0
      4568:	  trying file=libpthread.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libpthread.so.0
      4568:	
      4568:	find library=libz.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libz.so.1
      4568:	  trying file=tls/haswell/libz.so.1
      4568:	  trying file=tls/x86_64/libz.so.1
      4568:	  trying file=tls/libz.so.1
      4568:	  trying file=haswell/x86_64/libz.so.1
      4568:	  trying file=haswell/libz.so.1
      4568:	  trying file=x86_64/libz.so.1
      4568:	  trying file=libz.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libz.so.1
      4568:	
      4568:	find library=libdouble-conversion.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libdouble-conversion.so.3
      4568:	  trying file=tls/haswell/libdouble-conversion.so.3
      4568:	  trying file=tls/x86_64/libdouble-conversion.so.3
      4568:	  trying file=tls/libdouble-conversion.so.3
      4568:	  trying file=haswell/x86_64/libdouble-conversion.so.3
      4568:	  trying file=haswell/libdouble-conversion.so.3
      4568:	  trying file=x86_64/libdouble-conversion.so.3
      4568:	  trying file=libdouble-conversion.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libdouble-conversion.so.3
      4568:	
      4568:	find library=libicui18n.so.67 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libicui18n.so.67
      4568:	  trying file=tls/haswell/libicui18n.so.67
      4568:	  trying file=tls/x86_64/libicui18n.so.67
      4568:	  trying file=tls/libicui18n.so.67
      4568:	  trying file=haswell/x86_64/libicui18n.so.67
      4568:	  trying file=haswell/libicui18n.so.67
      4568:	  trying file=x86_64/libicui18n.so.67
      4568:	  trying file=libicui18n.so.67
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libicui18n.so.67
      4568:	
      4568:	find library=libicuuc.so.67 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libicuuc.so.67
      4568:	  trying file=tls/haswell/libicuuc.so.67
      4568:	  trying file=tls/x86_64/libicuuc.so.67
      4568:	  trying file=tls/libicuuc.so.67
      4568:	  trying file=haswell/x86_64/libicuuc.so.67
      4568:	  trying file=haswell/libicuuc.so.67
      4568:	  trying file=x86_64/libicuuc.so.67
      4568:	  trying file=libicuuc.so.67
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libicuuc.so.67
      4568:	
      4568:	find library=libpcre2-16.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpcre2-16.so.0
      4568:	  trying file=tls/haswell/libpcre2-16.so.0
      4568:	  trying file=tls/x86_64/libpcre2-16.so.0
      4568:	  trying file=tls/libpcre2-16.so.0
      4568:	  trying file=haswell/x86_64/libpcre2-16.so.0
      4568:	  trying file=haswell/libpcre2-16.so.0
      4568:	  trying file=x86_64/libpcre2-16.so.0
      4568:	  trying file=libpcre2-16.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libpcre2-16.so.0
      4568:	
      4568:	find library=libzstd.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libzstd.so.1
      4568:	  trying file=tls/haswell/libzstd.so.1
      4568:	  trying file=tls/x86_64/libzstd.so.1
      4568:	  trying file=tls/libzstd.so.1
      4568:	  trying file=haswell/x86_64/libzstd.so.1
      4568:	  trying file=haswell/libzstd.so.1
      4568:	  trying file=x86_64/libzstd.so.1
      4568:	  trying file=libzstd.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libzstd.so.1
      4568:	
      4568:	find library=libglib-2.0.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libglib-2.0.so.0
      4568:	  trying file=tls/haswell/libglib-2.0.so.0
      4568:	  trying file=tls/x86_64/libglib-2.0.so.0
      4568:	  trying file=tls/libglib-2.0.so.0
      4568:	  trying file=haswell/x86_64/libglib-2.0.so.0
      4568:	  trying file=haswell/libglib-2.0.so.0
      4568:	  trying file=x86_64/libglib-2.0.so.0
      4568:	  trying file=libglib-2.0.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libglib-2.0.so.0
      4568:	
      4568:	find library=libGL.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libGL.so.1
      4568:	  trying file=tls/haswell/libGL.so.1
      4568:	  trying file=tls/x86_64/libGL.so.1
      4568:	  trying file=tls/libGL.so.1
      4568:	  trying file=haswell/x86_64/libGL.so.1
      4568:	  trying file=haswell/libGL.so.1
      4568:	  trying file=x86_64/libGL.so.1
      4568:	  trying file=libGL.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libGL.so.1
      4568:	
      4568:	find library=libpng16.so.16 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpng16.so.16
      4568:	  trying file=tls/haswell/libpng16.so.16
      4568:	  trying file=tls/x86_64/libpng16.so.16
      4568:	  trying file=tls/libpng16.so.16
      4568:	  trying file=haswell/x86_64/libpng16.so.16
      4568:	  trying file=haswell/libpng16.so.16
      4568:	  trying file=x86_64/libpng16.so.16
      4568:	  trying file=libpng16.so.16
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libpng16.so.16
      4568:	
      4568:	find library=libharfbuzz.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libharfbuzz.so.0
      4568:	  trying file=tls/haswell/libharfbuzz.so.0
      4568:	  trying file=tls/x86_64/libharfbuzz.so.0
      4568:	  trying file=tls/libharfbuzz.so.0
      4568:	  trying file=haswell/x86_64/libharfbuzz.so.0
      4568:	  trying file=haswell/libharfbuzz.so.0
      4568:	  trying file=x86_64/libharfbuzz.so.0
      4568:	  trying file=libharfbuzz.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libharfbuzz.so.0
      4568:	
      4568:	find library=libmd4c.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libmd4c.so.0
      4568:	  trying file=tls/haswell/libmd4c.so.0
      4568:	  trying file=tls/x86_64/libmd4c.so.0
      4568:	  trying file=tls/libmd4c.so.0
      4568:	  trying file=haswell/x86_64/libmd4c.so.0
      4568:	  trying file=haswell/libmd4c.so.0
      4568:	  trying file=x86_64/libmd4c.so.0
      4568:	  trying file=libmd4c.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libmd4c.so.0
      4568:	
      4568:	find library=libffi.so.7 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libffi.so.7
      4568:	  trying file=tls/haswell/libffi.so.7
      4568:	  trying file=tls/x86_64/libffi.so.7
      4568:	  trying file=tls/libffi.so.7
      4568:	  trying file=haswell/x86_64/libffi.so.7
      4568:	  trying file=haswell/libffi.so.7
      4568:	  trying file=x86_64/libffi.so.7
      4568:	  trying file=libffi.so.7
      4568:	 search path=/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell:/usr/lib/llvm-11/lib/../lib/../lib/tls/x86_64:/usr/lib/llvm-11/lib/../lib/../lib/tls:/usr/lib/llvm-11/lib/../lib/../lib/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/../lib/haswell:/usr/lib/llvm-11/lib/../lib/../lib/x86_64:/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell/x86_64/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/x86_64/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/haswell/x86_64/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/haswell/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/x86_64/libffi.so.7
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libffi.so.7
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libffi.so.7
      4568:	
      4568:	find library=libedit.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libedit.so.2
      4568:	  trying file=tls/haswell/libedit.so.2
      4568:	  trying file=tls/x86_64/libedit.so.2
      4568:	  trying file=tls/libedit.so.2
      4568:	  trying file=haswell/x86_64/libedit.so.2
      4568:	  trying file=haswell/libedit.so.2
      4568:	  trying file=x86_64/libedit.so.2
      4568:	  trying file=libedit.so.2
      4568:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libedit.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libedit.so.2
      4568:	
      4568:	find library=librt.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/librt.so.1
      4568:	  trying file=tls/haswell/librt.so.1
      4568:	  trying file=tls/x86_64/librt.so.1
      4568:	  trying file=tls/librt.so.1
      4568:	  trying file=haswell/x86_64/librt.so.1
      4568:	  trying file=haswell/librt.so.1
      4568:	  trying file=x86_64/librt.so.1
      4568:	  trying file=librt.so.1
      4568:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/librt.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/librt.so.1
      4568:	
      4568:	find library=libtinfo.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libtinfo.so.6
      4568:	  trying file=tls/haswell/libtinfo.so.6
      4568:	  trying file=tls/x86_64/libtinfo.so.6
      4568:	  trying file=tls/libtinfo.so.6
      4568:	  trying file=haswell/x86_64/libtinfo.so.6
      4568:	  trying file=haswell/libtinfo.so.6
      4568:	  trying file=x86_64/libtinfo.so.6
      4568:	  trying file=libtinfo.so.6
      4568:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libtinfo.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libtinfo.so.6
      4568:	
      4568:	find library=libz3.so.4 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libz3.so.4
      4568:	  trying file=tls/haswell/libz3.so.4
      4568:	  trying file=tls/x86_64/libz3.so.4
      4568:	  trying file=tls/libz3.so.4
      4568:	  trying file=haswell/x86_64/libz3.so.4
      4568:	  trying file=haswell/libz3.so.4
      4568:	  trying file=x86_64/libz3.so.4
      4568:	  trying file=libz3.so.4
      4568:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      4568:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libz3.so.4
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libz3.so.4
      4568:	
      4568:	find library=libicudata.so.67 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libicudata.so.67
      4568:	  trying file=tls/haswell/libicudata.so.67
      4568:	  trying file=tls/x86_64/libicudata.so.67
      4568:	  trying file=tls/libicudata.so.67
      4568:	  trying file=haswell/x86_64/libicudata.so.67
      4568:	  trying file=haswell/libicudata.so.67
      4568:	  trying file=x86_64/libicudata.so.67
      4568:	  trying file=libicudata.so.67
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libicudata.so.67
      4568:	
      4568:	find library=libpcre.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpcre.so.3
      4568:	  trying file=tls/haswell/libpcre.so.3
      4568:	  trying file=tls/x86_64/libpcre.so.3
      4568:	  trying file=tls/libpcre.so.3
      4568:	  trying file=haswell/x86_64/libpcre.so.3
      4568:	  trying file=haswell/libpcre.so.3
      4568:	  trying file=x86_64/libpcre.so.3
      4568:	  trying file=libpcre.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libpcre.so.3
      4568:	
      4568:	find library=libGLdispatch.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libGLdispatch.so.0
      4568:	  trying file=tls/haswell/libGLdispatch.so.0
      4568:	  trying file=tls/x86_64/libGLdispatch.so.0
      4568:	  trying file=tls/libGLdispatch.so.0
      4568:	  trying file=haswell/x86_64/libGLdispatch.so.0
      4568:	  trying file=haswell/libGLdispatch.so.0
      4568:	  trying file=x86_64/libGLdispatch.so.0
      4568:	  trying file=libGLdispatch.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libGLdispatch.so.0
      4568:	
      4568:	find library=libGLX.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libGLX.so.0
      4568:	  trying file=tls/haswell/libGLX.so.0
      4568:	  trying file=tls/x86_64/libGLX.so.0
      4568:	  trying file=tls/libGLX.so.0
      4568:	  trying file=haswell/x86_64/libGLX.so.0
      4568:	  trying file=haswell/libGLX.so.0
      4568:	  trying file=x86_64/libGLX.so.0
      4568:	  trying file=libGLX.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libGLX.so.0
      4568:	
      4568:	find library=libfreetype.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libfreetype.so.6
      4568:	  trying file=tls/haswell/libfreetype.so.6
      4568:	  trying file=tls/x86_64/libfreetype.so.6
      4568:	  trying file=tls/libfreetype.so.6
      4568:	  trying file=haswell/x86_64/libfreetype.so.6
      4568:	  trying file=haswell/libfreetype.so.6
      4568:	  trying file=x86_64/libfreetype.so.6
      4568:	  trying file=libfreetype.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libfreetype.so.6
      4568:	
      4568:	find library=libgraphite2.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libgraphite2.so.3
      4568:	  trying file=tls/haswell/libgraphite2.so.3
      4568:	  trying file=tls/x86_64/libgraphite2.so.3
      4568:	  trying file=tls/libgraphite2.so.3
      4568:	  trying file=haswell/x86_64/libgraphite2.so.3
      4568:	  trying file=haswell/libgraphite2.so.3
      4568:	  trying file=x86_64/libgraphite2.so.3
      4568:	  trying file=libgraphite2.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libgraphite2.so.3
      4568:	
      4568:	find library=libbsd.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libbsd.so.0
      4568:	  trying file=tls/haswell/libbsd.so.0
      4568:	  trying file=tls/x86_64/libbsd.so.0
      4568:	  trying file=tls/libbsd.so.0
      4568:	  trying file=haswell/x86_64/libbsd.so.0
      4568:	  trying file=haswell/libbsd.so.0
      4568:	  trying file=x86_64/libbsd.so.0
      4568:	  trying file=libbsd.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libbsd.so.0
      4568:	
      4568:	find library=libX11.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libX11.so.6
      4568:	  trying file=tls/haswell/libX11.so.6
      4568:	  trying file=tls/x86_64/libX11.so.6
      4568:	  trying file=tls/libX11.so.6
      4568:	  trying file=haswell/x86_64/libX11.so.6
      4568:	  trying file=haswell/libX11.so.6
      4568:	  trying file=x86_64/libX11.so.6
      4568:	  trying file=libX11.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libX11.so.6
      4568:	
      4568:	find library=libbrotlidec.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libbrotlidec.so.1
      4568:	  trying file=tls/haswell/libbrotlidec.so.1
      4568:	  trying file=tls/x86_64/libbrotlidec.so.1
      4568:	  trying file=tls/libbrotlidec.so.1
      4568:	  trying file=haswell/x86_64/libbrotlidec.so.1
      4568:	  trying file=haswell/libbrotlidec.so.1
      4568:	  trying file=x86_64/libbrotlidec.so.1
      4568:	  trying file=libbrotlidec.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libbrotlidec.so.1
      4568:	
      4568:	find library=libmd.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libmd.so.0
      4568:	  trying file=tls/haswell/libmd.so.0
      4568:	  trying file=tls/x86_64/libmd.so.0
      4568:	  trying file=tls/libmd.so.0
      4568:	  trying file=haswell/x86_64/libmd.so.0
      4568:	  trying file=haswell/libmd.so.0
      4568:	  trying file=x86_64/libmd.so.0
      4568:	  trying file=libmd.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libmd.so.0
      4568:	
      4568:	find library=libxcb.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb.so.1
      4568:	  trying file=tls/haswell/libxcb.so.1
      4568:	  trying file=tls/x86_64/libxcb.so.1
      4568:	  trying file=tls/libxcb.so.1
      4568:	  trying file=haswell/x86_64/libxcb.so.1
      4568:	  trying file=haswell/libxcb.so.1
      4568:	  trying file=x86_64/libxcb.so.1
      4568:	  trying file=libxcb.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb.so.1
      4568:	
      4568:	find library=libbrotlicommon.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libbrotlicommon.so.1
      4568:	  trying file=tls/haswell/libbrotlicommon.so.1
      4568:	  trying file=tls/x86_64/libbrotlicommon.so.1
      4568:	  trying file=tls/libbrotlicommon.so.1
      4568:	  trying file=haswell/x86_64/libbrotlicommon.so.1
      4568:	  trying file=haswell/libbrotlicommon.so.1
      4568:	  trying file=x86_64/libbrotlicommon.so.1
      4568:	  trying file=libbrotlicommon.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libbrotlicommon.so.1
      4568:	
      4568:	find library=libXau.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libXau.so.6
      4568:	  trying file=tls/haswell/libXau.so.6
      4568:	  trying file=tls/x86_64/libXau.so.6
      4568:	  trying file=tls/libXau.so.6
      4568:	  trying file=haswell/x86_64/libXau.so.6
      4568:	  trying file=haswell/libXau.so.6
      4568:	  trying file=x86_64/libXau.so.6
      4568:	  trying file=libXau.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libXau.so.6
      4568:	
      4568:	find library=libXdmcp.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libXdmcp.so.6
      4568:	  trying file=tls/haswell/libXdmcp.so.6
      4568:	  trying file=tls/x86_64/libXdmcp.so.6
      4568:	  trying file=tls/libXdmcp.so.6
      4568:	  trying file=haswell/x86_64/libXdmcp.so.6
      4568:	  trying file=haswell/libXdmcp.so.6
      4568:	  trying file=x86_64/libXdmcp.so.6
      4568:	  trying file=libXdmcp.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libXdmcp.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libpthread.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libc.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libdl.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libmd.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libbsd.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libXdmcp.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libXau.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libbrotlicommon.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libbrotlidec.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libX11.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libgraphite2.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libz.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libm.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libpng16.so.16
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libfreetype.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libGLdispatch.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libGLX.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libpcre.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libicudata.so.67
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libgcc_s.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libstdc++.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libz3.so.4
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libtinfo.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/librt.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libedit.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libffi.so.7
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libmd4c.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libglib-2.0.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libharfbuzz.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libGL.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libzstd.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libpcre2-16.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libicuuc.so.67
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libicui18n.so.67
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libdouble-conversion.so.3
      4568:	
      4568:	
      4568:	calling init: /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Core.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Gui.so.5
      4568:	
      4568:	
      4568:	calling init: /usr/lib/llvm-11/lib/libclang-11.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Widgets.so.5
      4568:	
      4568:	
      4568:	initialize program: ./helloworld
      4568:	
      4568:	
      4568:	transferring control: ./helloworld
      4568:	
      4568:	find library=libQt5XcbQpa.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5XcbQpa.so.5
      4568:	  trying file=tls/haswell/libQt5XcbQpa.so.5
      4568:	  trying file=tls/x86_64/libQt5XcbQpa.so.5
      4568:	  trying file=tls/libQt5XcbQpa.so.5
      4568:	  trying file=haswell/x86_64/libQt5XcbQpa.so.5
      4568:	  trying file=haswell/libQt5XcbQpa.so.5
      4568:	  trying file=x86_64/libQt5XcbQpa.so.5
      4568:	  trying file=libQt5XcbQpa.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
      4568:	
      4568:	find library=libfontconfig.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libfontconfig.so.1
      4568:	  trying file=tls/haswell/libfontconfig.so.1
      4568:	  trying file=tls/x86_64/libfontconfig.so.1
      4568:	  trying file=tls/libfontconfig.so.1
      4568:	  trying file=haswell/x86_64/libfontconfig.so.1
      4568:	  trying file=haswell/libfontconfig.so.1
      4568:	  trying file=x86_64/libfontconfig.so.1
      4568:	  trying file=libfontconfig.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libfontconfig.so.1
      4568:	
      4568:	find library=libQt5DBus.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5DBus.so.5
      4568:	  trying file=tls/haswell/libQt5DBus.so.5
      4568:	  trying file=tls/x86_64/libQt5DBus.so.5
      4568:	  trying file=tls/libQt5DBus.so.5
      4568:	  trying file=haswell/x86_64/libQt5DBus.so.5
      4568:	  trying file=haswell/libQt5DBus.so.5
      4568:	  trying file=x86_64/libQt5DBus.so.5
      4568:	  trying file=libQt5DBus.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5DBus.so.5
      4568:	
      4568:	find library=libX11-xcb.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libX11-xcb.so.1
      4568:	  trying file=tls/haswell/libX11-xcb.so.1
      4568:	  trying file=tls/x86_64/libX11-xcb.so.1
      4568:	  trying file=tls/libX11-xcb.so.1
      4568:	  trying file=haswell/x86_64/libX11-xcb.so.1
      4568:	  trying file=haswell/libX11-xcb.so.1
      4568:	  trying file=x86_64/libX11-xcb.so.1
      4568:	  trying file=libX11-xcb.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libX11-xcb.so.1
      4568:	
      4568:	find library=libxcb-icccm.so.4 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-icccm.so.4
      4568:	  trying file=tls/haswell/libxcb-icccm.so.4
      4568:	  trying file=tls/x86_64/libxcb-icccm.so.4
      4568:	  trying file=tls/libxcb-icccm.so.4
      4568:	  trying file=haswell/x86_64/libxcb-icccm.so.4
      4568:	  trying file=haswell/libxcb-icccm.so.4
      4568:	  trying file=x86_64/libxcb-icccm.so.4
      4568:	  trying file=libxcb-icccm.so.4
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-icccm.so.4
      4568:	
      4568:	find library=libxcb-image.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-image.so.0
      4568:	  trying file=tls/haswell/libxcb-image.so.0
      4568:	  trying file=tls/x86_64/libxcb-image.so.0
      4568:	  trying file=tls/libxcb-image.so.0
      4568:	  trying file=haswell/x86_64/libxcb-image.so.0
      4568:	  trying file=haswell/libxcb-image.so.0
      4568:	  trying file=x86_64/libxcb-image.so.0
      4568:	  trying file=libxcb-image.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-image.so.0
      4568:	
      4568:	find library=libxcb-shm.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-shm.so.0
      4568:	  trying file=tls/haswell/libxcb-shm.so.0
      4568:	  trying file=tls/x86_64/libxcb-shm.so.0
      4568:	  trying file=tls/libxcb-shm.so.0
      4568:	  trying file=haswell/x86_64/libxcb-shm.so.0
      4568:	  trying file=haswell/libxcb-shm.so.0
      4568:	  trying file=x86_64/libxcb-shm.so.0
      4568:	  trying file=libxcb-shm.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-shm.so.0
      4568:	
      4568:	find library=libxcb-keysyms.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-keysyms.so.1
      4568:	  trying file=tls/haswell/libxcb-keysyms.so.1
      4568:	  trying file=tls/x86_64/libxcb-keysyms.so.1
      4568:	  trying file=tls/libxcb-keysyms.so.1
      4568:	  trying file=haswell/x86_64/libxcb-keysyms.so.1
      4568:	  trying file=haswell/libxcb-keysyms.so.1
      4568:	  trying file=x86_64/libxcb-keysyms.so.1
      4568:	  trying file=libxcb-keysyms.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-keysyms.so.1
      4568:	
      4568:	find library=libxcb-randr.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-randr.so.0
      4568:	  trying file=tls/haswell/libxcb-randr.so.0
      4568:	  trying file=tls/x86_64/libxcb-randr.so.0
      4568:	  trying file=tls/libxcb-randr.so.0
      4568:	  trying file=haswell/x86_64/libxcb-randr.so.0
      4568:	  trying file=haswell/libxcb-randr.so.0
      4568:	  trying file=x86_64/libxcb-randr.so.0
      4568:	  trying file=libxcb-randr.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-randr.so.0
      4568:	
      4568:	find library=libxcb-render-util.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-render-util.so.0
      4568:	  trying file=tls/haswell/libxcb-render-util.so.0
      4568:	  trying file=tls/x86_64/libxcb-render-util.so.0
      4568:	  trying file=tls/libxcb-render-util.so.0
      4568:	  trying file=haswell/x86_64/libxcb-render-util.so.0
      4568:	  trying file=haswell/libxcb-render-util.so.0
      4568:	  trying file=x86_64/libxcb-render-util.so.0
      4568:	  trying file=libxcb-render-util.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-render-util.so.0
      4568:	
      4568:	find library=libxcb-render.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-render.so.0
      4568:	  trying file=tls/haswell/libxcb-render.so.0
      4568:	  trying file=tls/x86_64/libxcb-render.so.0
      4568:	  trying file=tls/libxcb-render.so.0
      4568:	  trying file=haswell/x86_64/libxcb-render.so.0
      4568:	  trying file=haswell/libxcb-render.so.0
      4568:	  trying file=x86_64/libxcb-render.so.0
      4568:	  trying file=libxcb-render.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-render.so.0
      4568:	
      4568:	find library=libxcb-shape.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-shape.so.0
      4568:	  trying file=tls/haswell/libxcb-shape.so.0
      4568:	  trying file=tls/x86_64/libxcb-shape.so.0
      4568:	  trying file=tls/libxcb-shape.so.0
      4568:	  trying file=haswell/x86_64/libxcb-shape.so.0
      4568:	  trying file=haswell/libxcb-shape.so.0
      4568:	  trying file=x86_64/libxcb-shape.so.0
      4568:	  trying file=libxcb-shape.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-shape.so.0
      4568:	
      4568:	find library=libxcb-sync.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-sync.so.1
      4568:	  trying file=tls/haswell/libxcb-sync.so.1
      4568:	  trying file=tls/x86_64/libxcb-sync.so.1
      4568:	  trying file=tls/libxcb-sync.so.1
      4568:	  trying file=haswell/x86_64/libxcb-sync.so.1
      4568:	  trying file=haswell/libxcb-sync.so.1
      4568:	  trying file=x86_64/libxcb-sync.so.1
      4568:	  trying file=libxcb-sync.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-sync.so.1
      4568:	
      4568:	find library=libxcb-xfixes.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-xfixes.so.0
      4568:	  trying file=tls/haswell/libxcb-xfixes.so.0
      4568:	  trying file=tls/x86_64/libxcb-xfixes.so.0
      4568:	  trying file=tls/libxcb-xfixes.so.0
      4568:	  trying file=haswell/x86_64/libxcb-xfixes.so.0
      4568:	  trying file=haswell/libxcb-xfixes.so.0
      4568:	  trying file=x86_64/libxcb-xfixes.so.0
      4568:	  trying file=libxcb-xfixes.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-xfixes.so.0
      4568:	
      4568:	find library=libxcb-xinerama.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-xinerama.so.0
      4568:	  trying file=tls/haswell/libxcb-xinerama.so.0
      4568:	  trying file=tls/x86_64/libxcb-xinerama.so.0
      4568:	  trying file=tls/libxcb-xinerama.so.0
      4568:	  trying file=haswell/x86_64/libxcb-xinerama.so.0
      4568:	  trying file=haswell/libxcb-xinerama.so.0
      4568:	  trying file=x86_64/libxcb-xinerama.so.0
      4568:	  trying file=libxcb-xinerama.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-xinerama.so.0
      4568:	
      4568:	find library=libxcb-xkb.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-xkb.so.1
      4568:	  trying file=tls/haswell/libxcb-xkb.so.1
      4568:	  trying file=tls/x86_64/libxcb-xkb.so.1
      4568:	  trying file=tls/libxcb-xkb.so.1
      4568:	  trying file=haswell/x86_64/libxcb-xkb.so.1
      4568:	  trying file=haswell/libxcb-xkb.so.1
      4568:	  trying file=x86_64/libxcb-xkb.so.1
      4568:	  trying file=libxcb-xkb.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-xkb.so.1
      4568:	
      4568:	find library=libxcb-xinput.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-xinput.so.0
      4568:	  trying file=tls/haswell/libxcb-xinput.so.0
      4568:	  trying file=tls/x86_64/libxcb-xinput.so.0
      4568:	  trying file=tls/libxcb-xinput.so.0
      4568:	  trying file=haswell/x86_64/libxcb-xinput.so.0
      4568:	  trying file=haswell/libxcb-xinput.so.0
      4568:	  trying file=x86_64/libxcb-xinput.so.0
      4568:	  trying file=libxcb-xinput.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-xinput.so.0
      4568:	
      4568:	find library=libXrender.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libXrender.so.1
      4568:	  trying file=tls/haswell/libXrender.so.1
      4568:	  trying file=tls/x86_64/libXrender.so.1
      4568:	  trying file=tls/libXrender.so.1
      4568:	  trying file=haswell/x86_64/libXrender.so.1
      4568:	  trying file=haswell/libXrender.so.1
      4568:	  trying file=x86_64/libXrender.so.1
      4568:	  trying file=libXrender.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libXrender.so.1
      4568:	
      4568:	find library=libSM.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libSM.so.6
      4568:	  trying file=tls/haswell/libSM.so.6
      4568:	  trying file=tls/x86_64/libSM.so.6
      4568:	  trying file=tls/libSM.so.6
      4568:	  trying file=haswell/x86_64/libSM.so.6
      4568:	  trying file=haswell/libSM.so.6
      4568:	  trying file=x86_64/libSM.so.6
      4568:	  trying file=libSM.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libSM.so.6
      4568:	
      4568:	find library=libICE.so.6 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libICE.so.6
      4568:	  trying file=tls/haswell/libICE.so.6
      4568:	  trying file=tls/x86_64/libICE.so.6
      4568:	  trying file=tls/libICE.so.6
      4568:	  trying file=haswell/x86_64/libICE.so.6
      4568:	  trying file=haswell/libICE.so.6
      4568:	  trying file=x86_64/libICE.so.6
      4568:	  trying file=libICE.so.6
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libICE.so.6
      4568:	
      4568:	find library=libxkbcommon-x11.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxkbcommon-x11.so.0
      4568:	  trying file=tls/haswell/libxkbcommon-x11.so.0
      4568:	  trying file=tls/x86_64/libxkbcommon-x11.so.0
      4568:	  trying file=tls/libxkbcommon-x11.so.0
      4568:	  trying file=haswell/x86_64/libxkbcommon-x11.so.0
      4568:	  trying file=haswell/libxkbcommon-x11.so.0
      4568:	  trying file=x86_64/libxkbcommon-x11.so.0
      4568:	  trying file=libxkbcommon-x11.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0
      4568:	
      4568:	find library=libxkbcommon.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxkbcommon.so.0
      4568:	  trying file=tls/haswell/libxkbcommon.so.0
      4568:	  trying file=tls/x86_64/libxkbcommon.so.0
      4568:	  trying file=tls/libxkbcommon.so.0
      4568:	  trying file=haswell/x86_64/libxkbcommon.so.0
      4568:	  trying file=haswell/libxkbcommon.so.0
      4568:	  trying file=x86_64/libxkbcommon.so.0
      4568:	  trying file=libxkbcommon.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxkbcommon.so.0
      4568:	
      4568:	find library=libexpat.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libexpat.so.1
      4568:	  trying file=tls/haswell/libexpat.so.1
      4568:	  trying file=tls/x86_64/libexpat.so.1
      4568:	  trying file=tls/libexpat.so.1
      4568:	  trying file=haswell/x86_64/libexpat.so.1
      4568:	  trying file=haswell/libexpat.so.1
      4568:	  trying file=x86_64/libexpat.so.1
      4568:	  trying file=libexpat.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libexpat.so.1
      4568:	
      4568:	find library=libuuid.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libuuid.so.1
      4568:	  trying file=tls/haswell/libuuid.so.1
      4568:	  trying file=tls/x86_64/libuuid.so.1
      4568:	  trying file=tls/libuuid.so.1
      4568:	  trying file=haswell/x86_64/libuuid.so.1
      4568:	  trying file=haswell/libuuid.so.1
      4568:	  trying file=x86_64/libuuid.so.1
      4568:	  trying file=libuuid.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libuuid.so.1
      4568:	
      4568:	find library=libdbus-1.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libdbus-1.so.3
      4568:	  trying file=tls/haswell/libdbus-1.so.3
      4568:	  trying file=tls/x86_64/libdbus-1.so.3
      4568:	  trying file=tls/libdbus-1.so.3
      4568:	  trying file=haswell/x86_64/libdbus-1.so.3
      4568:	  trying file=haswell/libdbus-1.so.3
      4568:	  trying file=x86_64/libdbus-1.so.3
      4568:	  trying file=libdbus-1.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libdbus-1.so.3
      4568:	
      4568:	find library=libxcb-util.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libxcb-util.so.1
      4568:	  trying file=tls/haswell/libxcb-util.so.1
      4568:	  trying file=tls/x86_64/libxcb-util.so.1
      4568:	  trying file=tls/libxcb-util.so.1
      4568:	  trying file=haswell/x86_64/libxcb-util.so.1
      4568:	  trying file=haswell/libxcb-util.so.1
      4568:	  trying file=x86_64/libxcb-util.so.1
      4568:	  trying file=libxcb-util.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libxcb-util.so.1
      4568:	
      4568:	find library=libsystemd.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libsystemd.so.0
      4568:	  trying file=tls/haswell/libsystemd.so.0
      4568:	  trying file=tls/x86_64/libsystemd.so.0
      4568:	  trying file=tls/libsystemd.so.0
      4568:	  trying file=haswell/x86_64/libsystemd.so.0
      4568:	  trying file=haswell/libsystemd.so.0
      4568:	  trying file=x86_64/libsystemd.so.0
      4568:	  trying file=libsystemd.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libsystemd.so.0
      4568:	
      4568:	find library=liblzma.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/liblzma.so.5
      4568:	  trying file=tls/haswell/liblzma.so.5
      4568:	  trying file=tls/x86_64/liblzma.so.5
      4568:	  trying file=tls/liblzma.so.5
      4568:	  trying file=haswell/x86_64/liblzma.so.5
      4568:	  trying file=haswell/liblzma.so.5
      4568:	  trying file=x86_64/liblzma.so.5
      4568:	  trying file=liblzma.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/liblzma.so.5
      4568:	
      4568:	find library=liblz4.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/liblz4.so.1
      4568:	  trying file=tls/haswell/liblz4.so.1
      4568:	  trying file=tls/x86_64/liblz4.so.1
      4568:	  trying file=tls/liblz4.so.1
      4568:	  trying file=haswell/x86_64/liblz4.so.1
      4568:	  trying file=haswell/liblz4.so.1
      4568:	  trying file=x86_64/liblz4.so.1
      4568:	  trying file=liblz4.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/liblz4.so.1
      4568:	
      4568:	find library=libgcrypt.so.20 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libgcrypt.so.20
      4568:	  trying file=tls/haswell/libgcrypt.so.20
      4568:	  trying file=tls/x86_64/libgcrypt.so.20
      4568:	  trying file=tls/libgcrypt.so.20
      4568:	  trying file=haswell/x86_64/libgcrypt.so.20
      4568:	  trying file=haswell/libgcrypt.so.20
      4568:	  trying file=x86_64/libgcrypt.so.20
      4568:	  trying file=libgcrypt.so.20
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libgcrypt.so.20
      4568:	
      4568:	find library=libgpg-error.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libgpg-error.so.0
      4568:	  trying file=tls/haswell/libgpg-error.so.0
      4568:	  trying file=tls/x86_64/libgpg-error.so.0
      4568:	  trying file=tls/libgpg-error.so.0
      4568:	  trying file=haswell/x86_64/libgpg-error.so.0
      4568:	  trying file=haswell/libgpg-error.so.0
      4568:	  trying file=x86_64/libgpg-error.so.0
      4568:	  trying file=libgpg-error.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libgpg-error.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libgpg-error.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libgcrypt.so.20
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/liblz4.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/liblzma.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libsystemd.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-util.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libdbus-1.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libuuid.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libexpat.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxkbcommon.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-xkb.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxkbcommon-x11.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libICE.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libSM.so.6
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libXrender.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-xinput.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-xinerama.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-xfixes.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-sync.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-shape.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-render.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-render-util.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-randr.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-keysyms.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-shm.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-image.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libxcb-icccm.so.4
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libX11-xcb.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5DBus.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libfontconfig.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
      4568:	
      4568:	
      4568:	calling init: /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so
      4568:	
      4568:	find library=libXcursor.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libXcursor.so.1
      4568:	  trying file=tls/haswell/libXcursor.so.1
      4568:	  trying file=tls/x86_64/libXcursor.so.1
      4568:	  trying file=tls/libXcursor.so.1
      4568:	  trying file=haswell/x86_64/libXcursor.so.1
      4568:	  trying file=haswell/libXcursor.so.1
      4568:	  trying file=x86_64/libXcursor.so.1
      4568:	  trying file=libXcursor.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libXcursor.so.1
      4568:	
      4568:	find library=libXfixes.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libXfixes.so.3
      4568:	  trying file=tls/haswell/libXfixes.so.3
      4568:	  trying file=tls/x86_64/libXfixes.so.3
      4568:	  trying file=tls/libXfixes.so.3
      4568:	  trying file=haswell/x86_64/libXfixes.so.3
      4568:	  trying file=haswell/libXfixes.so.3
      4568:	  trying file=x86_64/libXfixes.so.3
      4568:	  trying file=libXfixes.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libXfixes.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libXfixes.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libXcursor.so.1
      4568:	
      4568:	find library=libQt5QuickControls2.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5QuickControls2.so.5
      4568:	  trying file=tls/haswell/libQt5QuickControls2.so.5
      4568:	  trying file=tls/x86_64/libQt5QuickControls2.so.5
      4568:	  trying file=tls/libQt5QuickControls2.so.5
      4568:	  trying file=haswell/x86_64/libQt5QuickControls2.so.5
      4568:	  trying file=haswell/libQt5QuickControls2.so.5
      4568:	  trying file=x86_64/libQt5QuickControls2.so.5
      4568:	  trying file=libQt5QuickControls2.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5QuickControls2.so.5
      4568:	
      4568:	find library=libKF5KIOFileWidgets.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5KIOFileWidgets.so.5
      4568:	  trying file=tls/haswell/libKF5KIOFileWidgets.so.5
      4568:	  trying file=tls/x86_64/libKF5KIOFileWidgets.so.5
      4568:	  trying file=tls/libKF5KIOFileWidgets.so.5
      4568:	  trying file=haswell/x86_64/libKF5KIOFileWidgets.so.5
      4568:	  trying file=haswell/libKF5KIOFileWidgets.so.5
      4568:	  trying file=x86_64/libKF5KIOFileWidgets.so.5
      4568:	  trying file=libKF5KIOFileWidgets.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5KIOFileWidgets.so.5
      4568:	
      4568:	find library=libKF5KIOWidgets.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5KIOWidgets.so.5
      4568:	  trying file=tls/haswell/libKF5KIOWidgets.so.5
      4568:	  trying file=tls/x86_64/libKF5KIOWidgets.so.5
      4568:	  trying file=tls/libKF5KIOWidgets.so.5
      4568:	  trying file=haswell/x86_64/libKF5KIOWidgets.so.5
      4568:	  trying file=haswell/libKF5KIOWidgets.so.5
      4568:	  trying file=x86_64/libKF5KIOWidgets.so.5
      4568:	  trying file=libKF5KIOWidgets.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5KIOWidgets.so.5
      4568:	
      4568:	find library=libKF5Notifications.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Notifications.so.5
      4568:	  trying file=tls/haswell/libKF5Notifications.so.5
      4568:	  trying file=tls/x86_64/libKF5Notifications.so.5
      4568:	  trying file=tls/libKF5Notifications.so.5
      4568:	  trying file=haswell/x86_64/libKF5Notifications.so.5
      4568:	  trying file=haswell/libKF5Notifications.so.5
      4568:	  trying file=x86_64/libKF5Notifications.so.5
      4568:	  trying file=libKF5Notifications.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Notifications.so.5
      4568:	
      4568:	find library=libKF5WaylandClient.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5WaylandClient.so.5
      4568:	  trying file=tls/haswell/libKF5WaylandClient.so.5
      4568:	  trying file=tls/x86_64/libKF5WaylandClient.so.5
      4568:	  trying file=tls/libKF5WaylandClient.so.5
      4568:	  trying file=haswell/x86_64/libKF5WaylandClient.so.5
      4568:	  trying file=haswell/libKF5WaylandClient.so.5
      4568:	  trying file=x86_64/libKF5WaylandClient.so.5
      4568:	  trying file=libKF5WaylandClient.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5WaylandClient.so.5
      4568:	
      4568:	find library=libKF5KIOCore.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5KIOCore.so.5
      4568:	  trying file=tls/haswell/libKF5KIOCore.so.5
      4568:	  trying file=tls/x86_64/libKF5KIOCore.so.5
      4568:	  trying file=tls/libKF5KIOCore.so.5
      4568:	  trying file=haswell/x86_64/libKF5KIOCore.so.5
      4568:	  trying file=haswell/libKF5KIOCore.so.5
      4568:	  trying file=x86_64/libKF5KIOCore.so.5
      4568:	  trying file=libKF5KIOCore.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5KIOCore.so.5
      4568:	
      4568:	find library=libKF5JobWidgets.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5JobWidgets.so.5
      4568:	  trying file=tls/haswell/libKF5JobWidgets.so.5
      4568:	  trying file=tls/x86_64/libKF5JobWidgets.so.5
      4568:	  trying file=tls/libKF5JobWidgets.so.5
      4568:	  trying file=haswell/x86_64/libKF5JobWidgets.so.5
      4568:	  trying file=haswell/libKF5JobWidgets.so.5
      4568:	  trying file=x86_64/libKF5JobWidgets.so.5
      4568:	  trying file=libKF5JobWidgets.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5JobWidgets.so.5
      4568:	
      4568:	find library=libKF5Completion.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Completion.so.5
      4568:	  trying file=tls/haswell/libKF5Completion.so.5
      4568:	  trying file=tls/x86_64/libKF5Completion.so.5
      4568:	  trying file=tls/libKF5Completion.so.5
      4568:	  trying file=haswell/x86_64/libKF5Completion.so.5
      4568:	  trying file=haswell/libKF5Completion.so.5
      4568:	  trying file=x86_64/libKF5Completion.so.5
      4568:	  trying file=libKF5Completion.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Completion.so.5
      4568:	
      4568:	find library=libKF5XmlGui.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5XmlGui.so.5
      4568:	  trying file=tls/haswell/libKF5XmlGui.so.5
      4568:	  trying file=tls/x86_64/libKF5XmlGui.so.5
      4568:	  trying file=tls/libKF5XmlGui.so.5
      4568:	  trying file=haswell/x86_64/libKF5XmlGui.so.5
      4568:	  trying file=haswell/libKF5XmlGui.so.5
      4568:	  trying file=x86_64/libKF5XmlGui.so.5
      4568:	  trying file=libKF5XmlGui.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5XmlGui.so.5
      4568:	
      4568:	find library=libKF5IconThemes.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5IconThemes.so.5
      4568:	  trying file=tls/haswell/libKF5IconThemes.so.5
      4568:	  trying file=tls/x86_64/libKF5IconThemes.so.5
      4568:	  trying file=tls/libKF5IconThemes.so.5
      4568:	  trying file=haswell/x86_64/libKF5IconThemes.so.5
      4568:	  trying file=haswell/libKF5IconThemes.so.5
      4568:	  trying file=x86_64/libKF5IconThemes.so.5
      4568:	  trying file=libKF5IconThemes.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5IconThemes.so.5
      4568:	
      4568:	find library=libKF5ConfigWidgets.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5ConfigWidgets.so.5
      4568:	  trying file=tls/haswell/libKF5ConfigWidgets.so.5
      4568:	  trying file=tls/x86_64/libKF5ConfigWidgets.so.5
      4568:	  trying file=tls/libKF5ConfigWidgets.so.5
      4568:	  trying file=haswell/x86_64/libKF5ConfigWidgets.so.5
      4568:	  trying file=haswell/libKF5ConfigWidgets.so.5
      4568:	  trying file=x86_64/libKF5ConfigWidgets.so.5
      4568:	  trying file=libKF5ConfigWidgets.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5
      4568:	
      4568:	find library=libKF5ConfigGui.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5ConfigGui.so.5
      4568:	  trying file=tls/haswell/libKF5ConfigGui.so.5
      4568:	  trying file=tls/x86_64/libKF5ConfigGui.so.5
      4568:	  trying file=tls/libKF5ConfigGui.so.5
      4568:	  trying file=haswell/x86_64/libKF5ConfigGui.so.5
      4568:	  trying file=haswell/libKF5ConfigGui.so.5
      4568:	  trying file=x86_64/libKF5ConfigGui.so.5
      4568:	  trying file=libKF5ConfigGui.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5ConfigGui.so.5
      4568:	
      4568:	find library=libKF5I18n.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5I18n.so.5
      4568:	  trying file=tls/haswell/libKF5I18n.so.5
      4568:	  trying file=tls/x86_64/libKF5I18n.so.5
      4568:	  trying file=tls/libKF5I18n.so.5
      4568:	  trying file=haswell/x86_64/libKF5I18n.so.5
      4568:	  trying file=haswell/libKF5I18n.so.5
      4568:	  trying file=x86_64/libKF5I18n.so.5
      4568:	  trying file=libKF5I18n.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5I18n.so.5
      4568:	
      4568:	find library=libKF5WidgetsAddons.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5WidgetsAddons.so.5
      4568:	  trying file=tls/haswell/libKF5WidgetsAddons.so.5
      4568:	  trying file=tls/x86_64/libKF5WidgetsAddons.so.5
      4568:	  trying file=tls/libKF5WidgetsAddons.so.5
      4568:	  trying file=haswell/x86_64/libKF5WidgetsAddons.so.5
      4568:	  trying file=haswell/libKF5WidgetsAddons.so.5
      4568:	  trying file=x86_64/libKF5WidgetsAddons.so.5
      4568:	  trying file=libKF5WidgetsAddons.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
      4568:	
      4568:	find library=libKF5ConfigCore.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5ConfigCore.so.5
      4568:	  trying file=tls/haswell/libKF5ConfigCore.so.5
      4568:	  trying file=tls/x86_64/libKF5ConfigCore.so.5
      4568:	  trying file=tls/libKF5ConfigCore.so.5
      4568:	  trying file=haswell/x86_64/libKF5ConfigCore.so.5
      4568:	  trying file=haswell/libKF5ConfigCore.so.5
      4568:	  trying file=x86_64/libKF5ConfigCore.so.5
      4568:	  trying file=libKF5ConfigCore.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5ConfigCore.so.5
      4568:	
      4568:	find library=libKF5WindowSystem.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5WindowSystem.so.5
      4568:	  trying file=tls/haswell/libKF5WindowSystem.so.5
      4568:	  trying file=tls/x86_64/libKF5WindowSystem.so.5
      4568:	  trying file=tls/libKF5WindowSystem.so.5
      4568:	  trying file=haswell/x86_64/libKF5WindowSystem.so.5
      4568:	  trying file=haswell/libKF5WindowSystem.so.5
      4568:	  trying file=x86_64/libKF5WindowSystem.so.5
      4568:	  trying file=libKF5WindowSystem.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5WindowSystem.so.5
      4568:	
      4568:	find library=libQt5X11Extras.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5X11Extras.so.5
      4568:	  trying file=tls/haswell/libQt5X11Extras.so.5
      4568:	  trying file=tls/x86_64/libQt5X11Extras.so.5
      4568:	  trying file=tls/libQt5X11Extras.so.5
      4568:	  trying file=haswell/x86_64/libQt5X11Extras.so.5
      4568:	  trying file=haswell/libQt5X11Extras.so.5
      4568:	  trying file=x86_64/libQt5X11Extras.so.5
      4568:	  trying file=libQt5X11Extras.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5X11Extras.so.5
      4568:	
      4568:	find library=libKF5CoreAddons.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5CoreAddons.so.5
      4568:	  trying file=tls/haswell/libKF5CoreAddons.so.5
      4568:	  trying file=tls/x86_64/libKF5CoreAddons.so.5
      4568:	  trying file=tls/libKF5CoreAddons.so.5
      4568:	  trying file=haswell/x86_64/libKF5CoreAddons.so.5
      4568:	  trying file=haswell/libKF5CoreAddons.so.5
      4568:	  trying file=x86_64/libKF5CoreAddons.so.5
      4568:	  trying file=libKF5CoreAddons.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5
      4568:	
      4568:	find library=libQt5Quick.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Quick.so.5
      4568:	  trying file=tls/haswell/libQt5Quick.so.5
      4568:	  trying file=tls/x86_64/libQt5Quick.so.5
      4568:	  trying file=tls/libQt5Quick.so.5
      4568:	  trying file=haswell/x86_64/libQt5Quick.so.5
      4568:	  trying file=haswell/libQt5Quick.so.5
      4568:	  trying file=x86_64/libQt5Quick.so.5
      4568:	  trying file=libQt5Quick.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Quick.so.5
      4568:	
      4568:	find library=libQt5Qml.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Qml.so.5
      4568:	  trying file=tls/haswell/libQt5Qml.so.5
      4568:	  trying file=tls/x86_64/libQt5Qml.so.5
      4568:	  trying file=tls/libQt5Qml.so.5
      4568:	  trying file=haswell/x86_64/libQt5Qml.so.5
      4568:	  trying file=haswell/libQt5Qml.so.5
      4568:	  trying file=x86_64/libQt5Qml.so.5
      4568:	  trying file=libQt5Qml.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Qml.so.5
      4568:	
      4568:	find library=libQt5QuickTemplates2.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5QuickTemplates2.so.5
      4568:	  trying file=tls/haswell/libQt5QuickTemplates2.so.5
      4568:	  trying file=tls/x86_64/libQt5QuickTemplates2.so.5
      4568:	  trying file=tls/libQt5QuickTemplates2.so.5
      4568:	  trying file=haswell/x86_64/libQt5QuickTemplates2.so.5
      4568:	  trying file=haswell/libQt5QuickTemplates2.so.5
      4568:	  trying file=x86_64/libQt5QuickTemplates2.so.5
      4568:	  trying file=libQt5QuickTemplates2.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5QuickTemplates2.so.5
      4568:	
      4568:	find library=libKF5Bookmarks.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Bookmarks.so.5
      4568:	  trying file=tls/haswell/libKF5Bookmarks.so.5
      4568:	  trying file=tls/x86_64/libKF5Bookmarks.so.5
      4568:	  trying file=tls/libKF5Bookmarks.so.5
      4568:	  trying file=haswell/x86_64/libKF5Bookmarks.so.5
      4568:	  trying file=haswell/libKF5Bookmarks.so.5
      4568:	  trying file=x86_64/libKF5Bookmarks.so.5
      4568:	  trying file=libKF5Bookmarks.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Bookmarks.so.5
      4568:	
      4568:	find library=libKF5Solid.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Solid.so.5
      4568:	  trying file=tls/haswell/libKF5Solid.so.5
      4568:	  trying file=tls/x86_64/libKF5Solid.so.5
      4568:	  trying file=tls/libKF5Solid.so.5
      4568:	  trying file=haswell/x86_64/libKF5Solid.so.5
      4568:	  trying file=haswell/libKF5Solid.so.5
      4568:	  trying file=x86_64/libKF5Solid.so.5
      4568:	  trying file=libKF5Solid.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Solid.so.5
      4568:	
      4568:	find library=libKF5ItemViews.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5ItemViews.so.5
      4568:	  trying file=tls/haswell/libKF5ItemViews.so.5
      4568:	  trying file=tls/x86_64/libKF5ItemViews.so.5
      4568:	  trying file=tls/libKF5ItemViews.so.5
      4568:	  trying file=haswell/x86_64/libKF5ItemViews.so.5
      4568:	  trying file=haswell/libKF5ItemViews.so.5
      4568:	  trying file=x86_64/libKF5ItemViews.so.5
      4568:	  trying file=libKF5ItemViews.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5ItemViews.so.5
      4568:	
      4568:	find library=libQt5Network.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Network.so.5
      4568:	  trying file=tls/haswell/libQt5Network.so.5
      4568:	  trying file=tls/x86_64/libQt5Network.so.5
      4568:	  trying file=tls/libQt5Network.so.5
      4568:	  trying file=haswell/x86_64/libQt5Network.so.5
      4568:	  trying file=haswell/libQt5Network.so.5
      4568:	  trying file=x86_64/libQt5Network.so.5
      4568:	  trying file=libQt5Network.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Network.so.5
      4568:	
      4568:	find library=libKF5Codecs.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Codecs.so.5
      4568:	  trying file=tls/haswell/libKF5Codecs.so.5
      4568:	  trying file=tls/x86_64/libKF5Codecs.so.5
      4568:	  trying file=tls/libKF5Codecs.so.5
      4568:	  trying file=haswell/x86_64/libKF5Codecs.so.5
      4568:	  trying file=haswell/libKF5Codecs.so.5
      4568:	  trying file=x86_64/libKF5Codecs.so.5
      4568:	  trying file=libKF5Codecs.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Codecs.so.5
      4568:	
      4568:	find library=libQt5Xml.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Xml.so.5
      4568:	  trying file=tls/haswell/libQt5Xml.so.5
      4568:	  trying file=tls/x86_64/libQt5Xml.so.5
      4568:	  trying file=tls/libQt5Xml.so.5
      4568:	  trying file=haswell/x86_64/libQt5Xml.so.5
      4568:	  trying file=haswell/libQt5Xml.so.5
      4568:	  trying file=x86_64/libQt5Xml.so.5
      4568:	  trying file=libQt5Xml.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Xml.so.5
      4568:	
      4568:	find library=libKF5KIOGui.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5KIOGui.so.5
      4568:	  trying file=tls/haswell/libKF5KIOGui.so.5
      4568:	  trying file=tls/x86_64/libKF5KIOGui.so.5
      4568:	  trying file=tls/libKF5KIOGui.so.5
      4568:	  trying file=haswell/x86_64/libKF5KIOGui.so.5
      4568:	  trying file=haswell/libKF5KIOGui.so.5
      4568:	  trying file=x86_64/libKF5KIOGui.so.5
      4568:	  trying file=libKF5KIOGui.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5KIOGui.so.5
      4568:	
      4568:	find library=libKF5Service.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Service.so.5
      4568:	  trying file=tls/haswell/libKF5Service.so.5
      4568:	  trying file=tls/x86_64/libKF5Service.so.5
      4568:	  trying file=tls/libKF5Service.so.5
      4568:	  trying file=haswell/x86_64/libKF5Service.so.5
      4568:	  trying file=haswell/libKF5Service.so.5
      4568:	  trying file=x86_64/libKF5Service.so.5
      4568:	  trying file=libKF5Service.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Service.so.5
      4568:	
      4568:	find library=libQt5TextToSpeech.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5TextToSpeech.so.5
      4568:	  trying file=tls/haswell/libQt5TextToSpeech.so.5
      4568:	  trying file=tls/x86_64/libQt5TextToSpeech.so.5
      4568:	  trying file=tls/libQt5TextToSpeech.so.5
      4568:	  trying file=haswell/x86_64/libQt5TextToSpeech.so.5
      4568:	  trying file=haswell/libQt5TextToSpeech.so.5
      4568:	  trying file=x86_64/libQt5TextToSpeech.so.5
      4568:	  trying file=libQt5TextToSpeech.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5TextToSpeech.so.5
      4568:	
      4568:	find library=libdbusmenu-qt5.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libdbusmenu-qt5.so.2
      4568:	  trying file=tls/haswell/libdbusmenu-qt5.so.2
      4568:	  trying file=tls/x86_64/libdbusmenu-qt5.so.2
      4568:	  trying file=tls/libdbusmenu-qt5.so.2
      4568:	  trying file=haswell/x86_64/libdbusmenu-qt5.so.2
      4568:	  trying file=haswell/libdbusmenu-qt5.so.2
      4568:	  trying file=x86_64/libdbusmenu-qt5.so.2
      4568:	  trying file=libdbusmenu-qt5.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libdbusmenu-qt5.so.2
      4568:	
      4568:	find library=libphonon4qt5.so.4 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libphonon4qt5.so.4
      4568:	  trying file=tls/haswell/libphonon4qt5.so.4
      4568:	  trying file=tls/x86_64/libphonon4qt5.so.4
      4568:	  trying file=tls/libphonon4qt5.so.4
      4568:	  trying file=haswell/x86_64/libphonon4qt5.so.4
      4568:	  trying file=haswell/libphonon4qt5.so.4
      4568:	  trying file=x86_64/libphonon4qt5.so.4
      4568:	  trying file=libphonon4qt5.so.4
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libphonon4qt5.so.4
      4568:	
      4568:	find library=libwayland-client.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libwayland-client.so.0
      4568:	  trying file=tls/haswell/libwayland-client.so.0
      4568:	  trying file=tls/x86_64/libwayland-client.so.0
      4568:	  trying file=tls/libwayland-client.so.0
      4568:	  trying file=haswell/x86_64/libwayland-client.so.0
      4568:	  trying file=haswell/libwayland-client.so.0
      4568:	  trying file=x86_64/libwayland-client.so.0
      4568:	  trying file=libwayland-client.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libwayland-client.so.0
      4568:	
      4568:	find library=libKF5Crash.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Crash.so.5
      4568:	  trying file=tls/haswell/libKF5Crash.so.5
      4568:	  trying file=tls/x86_64/libKF5Crash.so.5
      4568:	  trying file=tls/libKF5Crash.so.5
      4568:	  trying file=haswell/x86_64/libKF5Crash.so.5
      4568:	  trying file=haswell/libKF5Crash.so.5
      4568:	  trying file=x86_64/libKF5Crash.so.5
      4568:	  trying file=libKF5Crash.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Crash.so.5
      4568:	
      4568:	find library=libKF5DBusAddons.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5DBusAddons.so.5
      4568:	  trying file=tls/haswell/libKF5DBusAddons.so.5
      4568:	  trying file=tls/x86_64/libKF5DBusAddons.so.5
      4568:	  trying file=tls/libKF5DBusAddons.so.5
      4568:	  trying file=haswell/x86_64/libKF5DBusAddons.so.5
      4568:	  trying file=haswell/libKF5DBusAddons.so.5
      4568:	  trying file=x86_64/libKF5DBusAddons.so.5
      4568:	  trying file=libKF5DBusAddons.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5DBusAddons.so.5
      4568:	
      4568:	find library=libKF5AuthCore.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5AuthCore.so.5
      4568:	  trying file=tls/haswell/libKF5AuthCore.so.5
      4568:	  trying file=tls/x86_64/libKF5AuthCore.so.5
      4568:	  trying file=tls/libKF5AuthCore.so.5
      4568:	  trying file=haswell/x86_64/libKF5AuthCore.so.5
      4568:	  trying file=haswell/libKF5AuthCore.so.5
      4568:	  trying file=x86_64/libKF5AuthCore.so.5
      4568:	  trying file=libKF5AuthCore.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5AuthCore.so.5
      4568:	
      4568:	find library=libacl.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libacl.so.1
      4568:	  trying file=tls/haswell/libacl.so.1
      4568:	  trying file=tls/x86_64/libacl.so.1
      4568:	  trying file=tls/libacl.so.1
      4568:	  trying file=haswell/x86_64/libacl.so.1
      4568:	  trying file=haswell/libacl.so.1
      4568:	  trying file=x86_64/libacl.so.1
      4568:	  trying file=libacl.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libacl.so.1
      4568:	
      4568:	find library=libQt5PrintSupport.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5PrintSupport.so.5
      4568:	  trying file=tls/haswell/libQt5PrintSupport.so.5
      4568:	  trying file=tls/x86_64/libQt5PrintSupport.so.5
      4568:	  trying file=tls/libQt5PrintSupport.so.5
      4568:	  trying file=haswell/x86_64/libQt5PrintSupport.so.5
      4568:	  trying file=haswell/libQt5PrintSupport.so.5
      4568:	  trying file=x86_64/libQt5PrintSupport.so.5
      4568:	  trying file=libQt5PrintSupport.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5PrintSupport.so.5
      4568:	
      4568:	find library=libKF5Attica.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Attica.so.5
      4568:	  trying file=tls/haswell/libKF5Attica.so.5
      4568:	  trying file=tls/x86_64/libKF5Attica.so.5
      4568:	  trying file=tls/libKF5Attica.so.5
      4568:	  trying file=haswell/x86_64/libKF5Attica.so.5
      4568:	  trying file=haswell/libKF5Attica.so.5
      4568:	  trying file=x86_64/libKF5Attica.so.5
      4568:	  trying file=libKF5Attica.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Attica.so.5
      4568:	
      4568:	find library=libKF5GlobalAccel.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5GlobalAccel.so.5
      4568:	  trying file=tls/haswell/libKF5GlobalAccel.so.5
      4568:	  trying file=tls/x86_64/libKF5GlobalAccel.so.5
      4568:	  trying file=tls/libKF5GlobalAccel.so.5
      4568:	  trying file=haswell/x86_64/libKF5GlobalAccel.so.5
      4568:	  trying file=haswell/libKF5GlobalAccel.so.5
      4568:	  trying file=x86_64/libKF5GlobalAccel.so.5
      4568:	  trying file=libKF5GlobalAccel.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5GlobalAccel.so.5
      4568:	
      4568:	find library=libKF5GuiAddons.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5GuiAddons.so.5
      4568:	  trying file=tls/haswell/libKF5GuiAddons.so.5
      4568:	  trying file=tls/x86_64/libKF5GuiAddons.so.5
      4568:	  trying file=tls/libKF5GuiAddons.so.5
      4568:	  trying file=haswell/x86_64/libKF5GuiAddons.so.5
      4568:	  trying file=haswell/libKF5GuiAddons.so.5
      4568:	  trying file=x86_64/libKF5GuiAddons.so.5
      4568:	  trying file=libKF5GuiAddons.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5GuiAddons.so.5
      4568:	
      4568:	find library=libQt5Svg.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5Svg.so.5
      4568:	  trying file=tls/haswell/libQt5Svg.so.5
      4568:	  trying file=tls/x86_64/libQt5Svg.so.5
      4568:	  trying file=tls/libQt5Svg.so.5
      4568:	  trying file=haswell/x86_64/libQt5Svg.so.5
      4568:	  trying file=haswell/libQt5Svg.so.5
      4568:	  trying file=x86_64/libQt5Svg.so.5
      4568:	  trying file=libQt5Svg.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5Svg.so.5
      4568:	
      4568:	find library=libKF5Archive.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Archive.so.5
      4568:	  trying file=tls/haswell/libKF5Archive.so.5
      4568:	  trying file=tls/x86_64/libKF5Archive.so.5
      4568:	  trying file=tls/libKF5Archive.so.5
      4568:	  trying file=haswell/x86_64/libKF5Archive.so.5
      4568:	  trying file=haswell/libKF5Archive.so.5
      4568:	  trying file=x86_64/libKF5Archive.so.5
      4568:	  trying file=libKF5Archive.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Archive.so.5
      4568:	
      4568:	find library=libfam.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libfam.so.0
      4568:	  trying file=tls/haswell/libfam.so.0
      4568:	  trying file=tls/x86_64/libfam.so.0
      4568:	  trying file=tls/libfam.so.0
      4568:	  trying file=haswell/x86_64/libfam.so.0
      4568:	  trying file=haswell/libfam.so.0
      4568:	  trying file=x86_64/libfam.so.0
      4568:	  trying file=libfam.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libfam.so.0
      4568:	
      4568:	find library=libQt5QmlModels.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5QmlModels.so.5
      4568:	  trying file=tls/haswell/libQt5QmlModels.so.5
      4568:	  trying file=tls/x86_64/libQt5QmlModels.so.5
      4568:	  trying file=tls/libQt5QmlModels.so.5
      4568:	  trying file=haswell/x86_64/libQt5QmlModels.so.5
      4568:	  trying file=haswell/libQt5QmlModels.so.5
      4568:	  trying file=x86_64/libQt5QmlModels.so.5
      4568:	  trying file=libQt5QmlModels.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5QmlModels.so.5
      4568:	
      4568:	find library=libudev.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libudev.so.1
      4568:	  trying file=tls/haswell/libudev.so.1
      4568:	  trying file=tls/x86_64/libudev.so.1
      4568:	  trying file=tls/libudev.so.1
      4568:	  trying file=haswell/x86_64/libudev.so.1
      4568:	  trying file=haswell/libudev.so.1
      4568:	  trying file=x86_64/libudev.so.1
      4568:	  trying file=libudev.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libudev.so.1
      4568:	
      4568:	find library=libgssapi_krb5.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libgssapi_krb5.so.2
      4568:	  trying file=tls/haswell/libgssapi_krb5.so.2
      4568:	  trying file=tls/x86_64/libgssapi_krb5.so.2
      4568:	  trying file=tls/libgssapi_krb5.so.2
      4568:	  trying file=haswell/x86_64/libgssapi_krb5.so.2
      4568:	  trying file=haswell/libgssapi_krb5.so.2
      4568:	  trying file=x86_64/libgssapi_krb5.so.2
      4568:	  trying file=libgssapi_krb5.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libgssapi_krb5.so.2
      4568:	
      4568:	find library=libpulse.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpulse.so.0
      4568:	  trying file=tls/haswell/libpulse.so.0
      4568:	  trying file=tls/x86_64/libpulse.so.0
      4568:	  trying file=tls/libpulse.so.0
      4568:	  trying file=haswell/x86_64/libpulse.so.0
      4568:	  trying file=haswell/libpulse.so.0
      4568:	  trying file=x86_64/libpulse.so.0
      4568:	  trying file=libpulse.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libpulse.so.0
      4568:	
      4568:	find library=libpulse-mainloop-glib.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpulse-mainloop-glib.so.0
      4568:	  trying file=tls/haswell/libpulse-mainloop-glib.so.0
      4568:	  trying file=tls/x86_64/libpulse-mainloop-glib.so.0
      4568:	  trying file=tls/libpulse-mainloop-glib.so.0
      4568:	  trying file=haswell/x86_64/libpulse-mainloop-glib.so.0
      4568:	  trying file=haswell/libpulse-mainloop-glib.so.0
      4568:	  trying file=x86_64/libpulse-mainloop-glib.so.0
      4568:	  trying file=libpulse-mainloop-glib.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0
      4568:	
      4568:	find library=libQt5WaylandClient.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libQt5WaylandClient.so.5
      4568:	  trying file=tls/haswell/libQt5WaylandClient.so.5
      4568:	  trying file=tls/x86_64/libQt5WaylandClient.so.5
      4568:	  trying file=tls/libQt5WaylandClient.so.5
      4568:	  trying file=haswell/x86_64/libQt5WaylandClient.so.5
      4568:	  trying file=haswell/libQt5WaylandClient.so.5
      4568:	  trying file=x86_64/libQt5WaylandClient.so.5
      4568:	  trying file=libQt5WaylandClient.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libQt5WaylandClient.so.5
      4568:	
      4568:	find library=libbz2.so.1.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libbz2.so.1.0
      4568:	  trying file=tls/haswell/libbz2.so.1.0
      4568:	  trying file=tls/x86_64/libbz2.so.1.0
      4568:	  trying file=tls/libbz2.so.1.0
      4568:	  trying file=haswell/x86_64/libbz2.so.1.0
      4568:	  trying file=haswell/libbz2.so.1.0
      4568:	  trying file=x86_64/libbz2.so.1.0
      4568:	  trying file=libbz2.so.1.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libbz2.so.1.0
      4568:	
      4568:	find library=libkrb5.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libkrb5.so.3
      4568:	  trying file=tls/haswell/libkrb5.so.3
      4568:	  trying file=tls/x86_64/libkrb5.so.3
      4568:	  trying file=tls/libkrb5.so.3
      4568:	  trying file=haswell/x86_64/libkrb5.so.3
      4568:	  trying file=haswell/libkrb5.so.3
      4568:	  trying file=x86_64/libkrb5.so.3
      4568:	  trying file=libkrb5.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libkrb5.so.3
      4568:	
      4568:	find library=libk5crypto.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libk5crypto.so.3
      4568:	  trying file=tls/haswell/libk5crypto.so.3
      4568:	  trying file=tls/x86_64/libk5crypto.so.3
      4568:	  trying file=tls/libk5crypto.so.3
      4568:	  trying file=haswell/x86_64/libk5crypto.so.3
      4568:	  trying file=haswell/libk5crypto.so.3
      4568:	  trying file=x86_64/libk5crypto.so.3
      4568:	  trying file=libk5crypto.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libk5crypto.so.3
      4568:	
      4568:	find library=libcom_err.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libcom_err.so.2
      4568:	  trying file=tls/haswell/libcom_err.so.2
      4568:	  trying file=tls/x86_64/libcom_err.so.2
      4568:	  trying file=tls/libcom_err.so.2
      4568:	  trying file=haswell/x86_64/libcom_err.so.2
      4568:	  trying file=haswell/libcom_err.so.2
      4568:	  trying file=x86_64/libcom_err.so.2
      4568:	  trying file=libcom_err.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libcom_err.so.2
      4568:	
      4568:	find library=libkrb5support.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libkrb5support.so.0
      4568:	  trying file=tls/haswell/libkrb5support.so.0
      4568:	  trying file=tls/x86_64/libkrb5support.so.0
      4568:	  trying file=tls/libkrb5support.so.0
      4568:	  trying file=haswell/x86_64/libkrb5support.so.0
      4568:	  trying file=haswell/libkrb5support.so.0
      4568:	  trying file=x86_64/libkrb5support.so.0
      4568:	  trying file=libkrb5support.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libkrb5support.so.0
      4568:	
      4568:	find library=libpulsecommon-14.2.so [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=tls/haswell/libpulsecommon-14.2.so
      4568:	  trying file=tls/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=tls/libpulsecommon-14.2.so
      4568:	  trying file=haswell/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=haswell/libpulsecommon-14.2.so
      4568:	  trying file=x86_64/libpulsecommon-14.2.so
      4568:	  trying file=libpulsecommon-14.2.so
      4568:	 search path=/usr/lib/x86_64-linux-gnu/pulseaudio/tls/haswell/x86_64:/usr/lib/x86_64-linux-gnu/pulseaudio/tls/haswell:/usr/lib/x86_64-linux-gnu/pulseaudio/tls/x86_64:/usr/lib/x86_64-linux-gnu/pulseaudio/tls:/usr/lib/x86_64-linux-gnu/pulseaudio/haswell/x86_64:/usr/lib/x86_64-linux-gnu/pulseaudio/haswell:/usr/lib/x86_64-linux-gnu/pulseaudio/x86_64:/usr/lib/x86_64-linux-gnu/pulseaudio		(RUNPATH from file /lib/x86_64-linux-gnu/libpulse.so.0)
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/tls/haswell/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/tls/haswell/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/tls/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/tls/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/haswell/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/haswell/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/x86_64/libpulsecommon-14.2.so
      4568:	  trying file=/usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so
      4568:	
      4568:	find library=libwayland-cursor.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libwayland-cursor.so.0
      4568:	  trying file=tls/haswell/libwayland-cursor.so.0
      4568:	  trying file=tls/x86_64/libwayland-cursor.so.0
      4568:	  trying file=tls/libwayland-cursor.so.0
      4568:	  trying file=haswell/x86_64/libwayland-cursor.so.0
      4568:	  trying file=haswell/libwayland-cursor.so.0
      4568:	  trying file=x86_64/libwayland-cursor.so.0
      4568:	  trying file=libwayland-cursor.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libwayland-cursor.so.0
      4568:	
      4568:	find library=libkeyutils.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libkeyutils.so.1
      4568:	  trying file=tls/haswell/libkeyutils.so.1
      4568:	  trying file=tls/x86_64/libkeyutils.so.1
      4568:	  trying file=tls/libkeyutils.so.1
      4568:	  trying file=haswell/x86_64/libkeyutils.so.1
      4568:	  trying file=haswell/libkeyutils.so.1
      4568:	  trying file=x86_64/libkeyutils.so.1
      4568:	  trying file=libkeyutils.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libkeyutils.so.1
      4568:	
      4568:	find library=libresolv.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libresolv.so.2
      4568:	  trying file=tls/haswell/libresolv.so.2
      4568:	  trying file=tls/x86_64/libresolv.so.2
      4568:	  trying file=tls/libresolv.so.2
      4568:	  trying file=haswell/x86_64/libresolv.so.2
      4568:	  trying file=haswell/libresolv.so.2
      4568:	  trying file=x86_64/libresolv.so.2
      4568:	  trying file=libresolv.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libresolv.so.2
      4568:	
      4568:	find library=libwrap.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libwrap.so.0
      4568:	  trying file=tls/haswell/libwrap.so.0
      4568:	  trying file=tls/x86_64/libwrap.so.0
      4568:	  trying file=tls/libwrap.so.0
      4568:	  trying file=haswell/x86_64/libwrap.so.0
      4568:	  trying file=haswell/libwrap.so.0
      4568:	  trying file=x86_64/libwrap.so.0
      4568:	  trying file=libwrap.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libwrap.so.0
      4568:	
      4568:	find library=libsndfile.so.1 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libsndfile.so.1
      4568:	  trying file=tls/haswell/libsndfile.so.1
      4568:	  trying file=tls/x86_64/libsndfile.so.1
      4568:	  trying file=tls/libsndfile.so.1
      4568:	  trying file=haswell/x86_64/libsndfile.so.1
      4568:	  trying file=haswell/libsndfile.so.1
      4568:	  trying file=x86_64/libsndfile.so.1
      4568:	  trying file=libsndfile.so.1
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libsndfile.so.1
      4568:	
      4568:	find library=libasyncns.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libasyncns.so.0
      4568:	  trying file=tls/haswell/libasyncns.so.0
      4568:	  trying file=tls/x86_64/libasyncns.so.0
      4568:	  trying file=tls/libasyncns.so.0
      4568:	  trying file=haswell/x86_64/libasyncns.so.0
      4568:	  trying file=haswell/libasyncns.so.0
      4568:	  trying file=x86_64/libasyncns.so.0
      4568:	  trying file=libasyncns.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libasyncns.so.0
      4568:	
      4568:	find library=libnsl.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libnsl.so.2
      4568:	  trying file=tls/haswell/libnsl.so.2
      4568:	  trying file=tls/x86_64/libnsl.so.2
      4568:	  trying file=tls/libnsl.so.2
      4568:	  trying file=haswell/x86_64/libnsl.so.2
      4568:	  trying file=haswell/libnsl.so.2
      4568:	  trying file=x86_64/libnsl.so.2
      4568:	  trying file=libnsl.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libnsl.so.2
      4568:	
      4568:	find library=libFLAC.so.8 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libFLAC.so.8
      4568:	  trying file=tls/haswell/libFLAC.so.8
      4568:	  trying file=tls/x86_64/libFLAC.so.8
      4568:	  trying file=tls/libFLAC.so.8
      4568:	  trying file=haswell/x86_64/libFLAC.so.8
      4568:	  trying file=haswell/libFLAC.so.8
      4568:	  trying file=x86_64/libFLAC.so.8
      4568:	  trying file=libFLAC.so.8
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libFLAC.so.8
      4568:	
      4568:	find library=libvorbis.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libvorbis.so.0
      4568:	  trying file=tls/haswell/libvorbis.so.0
      4568:	  trying file=tls/x86_64/libvorbis.so.0
      4568:	  trying file=tls/libvorbis.so.0
      4568:	  trying file=haswell/x86_64/libvorbis.so.0
      4568:	  trying file=haswell/libvorbis.so.0
      4568:	  trying file=x86_64/libvorbis.so.0
      4568:	  trying file=libvorbis.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libvorbis.so.0
      4568:	
      4568:	find library=libvorbisenc.so.2 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libvorbisenc.so.2
      4568:	  trying file=tls/haswell/libvorbisenc.so.2
      4568:	  trying file=tls/x86_64/libvorbisenc.so.2
      4568:	  trying file=tls/libvorbisenc.so.2
      4568:	  trying file=haswell/x86_64/libvorbisenc.so.2
      4568:	  trying file=haswell/libvorbisenc.so.2
      4568:	  trying file=x86_64/libvorbisenc.so.2
      4568:	  trying file=libvorbisenc.so.2
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libvorbisenc.so.2
      4568:	
      4568:	find library=libopus.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libopus.so.0
      4568:	  trying file=tls/haswell/libopus.so.0
      4568:	  trying file=tls/x86_64/libopus.so.0
      4568:	  trying file=tls/libopus.so.0
      4568:	  trying file=haswell/x86_64/libopus.so.0
      4568:	  trying file=haswell/libopus.so.0
      4568:	  trying file=x86_64/libopus.so.0
      4568:	  trying file=libopus.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libopus.so.0
      4568:	
      4568:	find library=libogg.so.0 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libogg.so.0
      4568:	  trying file=tls/haswell/libogg.so.0
      4568:	  trying file=tls/x86_64/libogg.so.0
      4568:	  trying file=tls/libogg.so.0
      4568:	  trying file=haswell/x86_64/libogg.so.0
      4568:	  trying file=haswell/libogg.so.0
      4568:	  trying file=x86_64/libogg.so.0
      4568:	  trying file=libogg.so.0
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libogg.so.0
      4568:	
      4568:	find library=libtirpc.so.3 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libtirpc.so.3
      4568:	  trying file=tls/haswell/libtirpc.so.3
      4568:	  trying file=tls/x86_64/libtirpc.so.3
      4568:	  trying file=tls/libtirpc.so.3
      4568:	  trying file=haswell/x86_64/libtirpc.so.3
      4568:	  trying file=haswell/libtirpc.so.3
      4568:	  trying file=x86_64/libtirpc.so.3
      4568:	  trying file=libtirpc.so.3
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libtirpc.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libkrb5support.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libk5crypto.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libcom_err.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libkeyutils.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libresolv.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libkrb5.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libgssapi_krb5.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libtirpc.so.3
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libogg.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libopus.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libvorbis.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libvorbisenc.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libFLAC.so.8
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libnsl.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libasyncns.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libsndfile.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libwrap.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libwayland-client.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libwayland-cursor.so.0
      4568:	
      4568:	
      4568:	calling init: /usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libbz2.so.1.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5WaylandClient.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libpulse.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libudev.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Network.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Qml.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5QmlModels.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libfam.so.0
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Archive.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Svg.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5GuiAddons.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5X11Extras.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5GlobalAccel.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Attica.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5PrintSupport.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libacl.so.1
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5CoreAddons.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5AuthCore.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5DBusAddons.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5WindowSystem.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Crash.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libphonon4qt5.so.4
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libdbusmenu-qt5.so.2
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5TextToSpeech.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5I18n.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5ConfigCore.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Xml.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Service.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5KIOCore.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5KIOGui.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Codecs.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5ItemViews.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Solid.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5ConfigGui.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5IconThemes.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5XmlGui.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Bookmarks.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5Quick.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5QuickTemplates2.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Completion.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5JobWidgets.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5WaylandClient.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Notifications.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5KIOWidgets.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5KIOFileWidgets.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libQt5QuickControls2.so.5
      4568:	
      4568:	
      4568:	calling init: /usr/lib/x86_64-linux-gnu/qt5/plugins/platformthemes/KDEPlasmaPlatformTheme.so
      4568:	
      4568:	
      4568:	calling init: /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
      4568:	
      4568:	find library=libbreezecommon5.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libbreezecommon5.so.5
      4568:	  trying file=tls/haswell/libbreezecommon5.so.5
      4568:	  trying file=tls/x86_64/libbreezecommon5.so.5
      4568:	  trying file=tls/libbreezecommon5.so.5
      4568:	  trying file=haswell/x86_64/libbreezecommon5.so.5
      4568:	  trying file=haswell/libbreezecommon5.so.5
      4568:	  trying file=x86_64/libbreezecommon5.so.5
      4568:	  trying file=libbreezecommon5.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libbreezecommon5.so.5
      4568:	
      4568:	find library=libKF5Style.so.5 [0]; searching
      4568:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      4568:	  trying file=tls/haswell/x86_64/libKF5Style.so.5
      4568:	  trying file=tls/haswell/libKF5Style.so.5
      4568:	  trying file=tls/x86_64/libKF5Style.so.5
      4568:	  trying file=tls/libKF5Style.so.5
      4568:	  trying file=haswell/x86_64/libKF5Style.so.5
      4568:	  trying file=haswell/libKF5Style.so.5
      4568:	  trying file=x86_64/libKF5Style.so.5
      4568:	  trying file=libKF5Style.so.5
      4568:	 search cache=/etc/ld.so.cache
      4568:	  trying file=/lib/x86_64-linux-gnu/libKF5Style.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libKF5Style.so.5
      4568:	
      4568:	
      4568:	calling init: /lib/x86_64-linux-gnu/libbreezecommon5.so.5
      4568:	
      4568:	
      4568:	calling init: /usr/lib/x86_64-linux-gnu/qt5/plugins/styles/breeze.so
      4568:	
4
Unable to parse translation unit. Quitting.
      4568:	
      4568:	calling fini: ./helloworld [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/llvm-11/lib/libclang-11.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libedit.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libtinfo.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libz3.so.4 [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libX11-xcb.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-icccm.so.4 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-image.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-shm.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-randr.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-render-util.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-render.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-shape.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-sync.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-xfixes.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-xinerama.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-xinput.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libSM.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libICE.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxkbcommon-x11.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-xkb.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-util.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/x86_64-linux-gnu/qt5/plugins/platformthemes/KDEPlasmaPlatformTheme.so [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libXcursor.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libXfixes.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libXrender.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5QuickControls2.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5KIOFileWidgets.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5KIOWidgets.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Notifications.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5JobWidgets.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Completion.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5QuickTemplates2.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Bookmarks.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Solid.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5KIOGui.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5KIOCore.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Service.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5XmlGui.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Xml.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5TextToSpeech.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libdbusmenu-qt5.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libphonon4qt5.so.4 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Crash.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5DBusAddons.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libacl.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5PrintSupport.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Attica.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5GlobalAccel.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libudev.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libpulse.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libwrap.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libsndfile.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libasyncns.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libnsl.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libFLAC.so.8 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libvorbisenc.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libvorbis.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libopus.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libogg.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libtirpc.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so [0]
      4568:	
      4568:	
      4568:	calling fini: /usr/lib/x86_64-linux-gnu/qt5/plugins/styles/breeze.so [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Quick.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5QmlModels.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Qml.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Network.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libgssapi_krb5.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libkrb5.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libresolv.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libkeyutils.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libcom_err.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libk5crypto.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libkrb5support.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5WindowSystem.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5X11Extras.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb-keysyms.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libbreezecommon5.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Style.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5IconThemes.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Archive.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libbz2.so.1.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Svg.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5ItemViews.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5GuiAddons.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5WaylandClient.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libfontconfig.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libexpat.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libuuid.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxkbcommon.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libwayland-cursor.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5WaylandClient.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libwayland-client.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libffi.so.7 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5AuthCore.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5Codecs.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5CoreAddons.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libfam.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5I18n.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5ConfigGui.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libKF5ConfigCore.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5DBus.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libdbus-1.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libsystemd.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/librt.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/liblzma.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/liblz4.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libgcrypt.so.20 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libgpg-error.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Widgets.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Gui.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libmd4c.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libharfbuzz.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libgraphite2.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libfreetype.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libbrotlidec.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libbrotlicommon.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libpng16.so.16 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libGL.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libGLX.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libX11.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libxcb.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libXdmcp.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libbsd.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libmd.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libXau.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libGLdispatch.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libQt5Core.so.5 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libglib-2.0.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libpcre.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libzstd.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libpcre2-16.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libicui18n.so.67 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libicuuc.so.67 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libicudata.so.67 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libdouble-conversion.so.3 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libz.so.1 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libpthread.so.0 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libdl.so.2 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libstdc++.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libm.so.6 [0]
      4568:	
      4568:	
      4568:	calling fini: /lib/x86_64-linux-gnu/libgcc_s.so.1 [0]
      4568:	
-------------- next part --------------
      5067:	find library=libclang-11.so.1 [0]; searching
      5067:	 search path=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell:/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu/tls:/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell:/home/enes/kde/usr/lib/x86_64-linux-gnu/x86_64:/home/enes/kde/usr/lib/x86_64-linux-gnu:tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell/x86_64/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/haswell/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/x86_64/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/tls/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell/x86_64/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/haswell/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/x86_64/libclang-11.so.1
      5067:	  trying file=/home/enes/kde/usr/lib/x86_64-linux-gnu/libclang-11.so.1
      5067:	  trying file=tls/haswell/x86_64/libclang-11.so.1
      5067:	  trying file=tls/haswell/libclang-11.so.1
      5067:	  trying file=tls/x86_64/libclang-11.so.1
      5067:	  trying file=tls/libclang-11.so.1
      5067:	  trying file=haswell/x86_64/libclang-11.so.1
      5067:	  trying file=haswell/libclang-11.so.1
      5067:	  trying file=x86_64/libclang-11.so.1
      5067:	  trying file=libclang-11.so.1
      5067:	 search path=/usr/lib/llvm-11/lib/tls/haswell/x86_64:/usr/lib/llvm-11/lib/tls/haswell:/usr/lib/llvm-11/lib/tls/x86_64:/usr/lib/llvm-11/lib/tls:/usr/lib/llvm-11/lib/haswell/x86_64:/usr/lib/llvm-11/lib/haswell:/usr/lib/llvm-11/lib/x86_64:/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      5067:	  trying file=/usr/lib/llvm-11/lib/tls/haswell/x86_64/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/tls/haswell/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/tls/x86_64/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/tls/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/haswell/x86_64/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/haswell/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/x86_64/libclang-11.so.1
      5067:	  trying file=/usr/lib/llvm-11/lib/libclang-11.so.1
      5067:	
      5067:	find library=libQt5Core.so.5 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libQt5Core.so.5
      5067:	  trying file=tls/haswell/libQt5Core.so.5
      5067:	  trying file=tls/x86_64/libQt5Core.so.5
      5067:	  trying file=tls/libQt5Core.so.5
      5067:	  trying file=haswell/x86_64/libQt5Core.so.5
      5067:	  trying file=haswell/libQt5Core.so.5
      5067:	  trying file=x86_64/libQt5Core.so.5
      5067:	  trying file=libQt5Core.so.5
      5067:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      5067:	  trying file=/usr/lib/llvm-11/lib/libQt5Core.so.5
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libQt5Core.so.5
      5067:	
      5067:	find library=libstdc++.so.6 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libstdc++.so.6
      5067:	  trying file=tls/haswell/libstdc++.so.6
      5067:	  trying file=tls/x86_64/libstdc++.so.6
      5067:	  trying file=tls/libstdc++.so.6
      5067:	  trying file=haswell/x86_64/libstdc++.so.6
      5067:	  trying file=haswell/libstdc++.so.6
      5067:	  trying file=x86_64/libstdc++.so.6
      5067:	  trying file=libstdc++.so.6
      5067:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      5067:	  trying file=/usr/lib/llvm-11/lib/libstdc++.so.6
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libstdc++.so.6
      5067:	
      5067:	find library=libc.so.6 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libc.so.6
      5067:	  trying file=tls/haswell/libc.so.6
      5067:	  trying file=tls/x86_64/libc.so.6
      5067:	  trying file=tls/libc.so.6
      5067:	  trying file=haswell/x86_64/libc.so.6
      5067:	  trying file=haswell/libc.so.6
      5067:	  trying file=x86_64/libc.so.6
      5067:	  trying file=libc.so.6
      5067:	 search path=/usr/lib/llvm-11/lib		(RUNPATH from file ./helloworld)
      5067:	  trying file=/usr/lib/llvm-11/lib/libc.so.6
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libc.so.6
      5067:	
      5067:	find library=libdl.so.2 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libdl.so.2
      5067:	  trying file=tls/haswell/libdl.so.2
      5067:	  trying file=tls/x86_64/libdl.so.2
      5067:	  trying file=tls/libdl.so.2
      5067:	  trying file=haswell/x86_64/libdl.so.2
      5067:	  trying file=haswell/libdl.so.2
      5067:	  trying file=x86_64/libdl.so.2
      5067:	  trying file=libdl.so.2
      5067:	 search path=/usr/lib/llvm-11/lib/../lib/tls/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/tls/haswell:/usr/lib/llvm-11/lib/../lib/tls/x86_64:/usr/lib/llvm-11/lib/../lib/tls:/usr/lib/llvm-11/lib/../lib/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/haswell:/usr/lib/llvm-11/lib/../lib/x86_64:/usr/lib/llvm-11/lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/libclang-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/haswell/x86_64/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/haswell/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/x86_64/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/tls/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/haswell/x86_64/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/haswell/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/x86_64/libdl.so.2
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/libdl.so.2
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libdl.so.2
      5067:	
      5067:	find library=libLLVM-11.so.1 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libLLVM-11.so.1
      5067:	  trying file=tls/haswell/libLLVM-11.so.1
      5067:	  trying file=tls/x86_64/libLLVM-11.so.1
      5067:	  trying file=tls/libLLVM-11.so.1
      5067:	  trying file=haswell/x86_64/libLLVM-11.so.1
      5067:	  trying file=haswell/libLLVM-11.so.1
      5067:	  trying file=x86_64/libLLVM-11.so.1
      5067:	  trying file=libLLVM-11.so.1
      5067:	 search path=/usr/lib/llvm-11/lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/libclang-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1
      5067:	
      5067:	find library=libm.so.6 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libm.so.6
      5067:	  trying file=tls/haswell/libm.so.6
      5067:	  trying file=tls/x86_64/libm.so.6
      5067:	  trying file=tls/libm.so.6
      5067:	  trying file=haswell/x86_64/libm.so.6
      5067:	  trying file=haswell/libm.so.6
      5067:	  trying file=x86_64/libm.so.6
      5067:	  trying file=libm.so.6
      5067:	 search path=/usr/lib/llvm-11/lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/libclang-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/libm.so.6
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libm.so.6
      5067:	
      5067:	find library=libgcc_s.so.1 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libgcc_s.so.1
      5067:	  trying file=tls/haswell/libgcc_s.so.1
      5067:	  trying file=tls/x86_64/libgcc_s.so.1
      5067:	  trying file=tls/libgcc_s.so.1
      5067:	  trying file=haswell/x86_64/libgcc_s.so.1
      5067:	  trying file=haswell/libgcc_s.so.1
      5067:	  trying file=x86_64/libgcc_s.so.1
      5067:	  trying file=libgcc_s.so.1
      5067:	 search path=/usr/lib/llvm-11/lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/libclang-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/libgcc_s.so.1
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libgcc_s.so.1
      5067:	
      5067:	find library=libpthread.so.0 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libpthread.so.0
      5067:	  trying file=tls/haswell/libpthread.so.0
      5067:	  trying file=tls/x86_64/libpthread.so.0
      5067:	  trying file=tls/libpthread.so.0
      5067:	  trying file=haswell/x86_64/libpthread.so.0
      5067:	  trying file=haswell/libpthread.so.0
      5067:	  trying file=x86_64/libpthread.so.0
      5067:	  trying file=libpthread.so.0
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libpthread.so.0
      5067:	
      5067:	find library=libz.so.1 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libz.so.1
      5067:	  trying file=tls/haswell/libz.so.1
      5067:	  trying file=tls/x86_64/libz.so.1
      5067:	  trying file=tls/libz.so.1
      5067:	  trying file=haswell/x86_64/libz.so.1
      5067:	  trying file=haswell/libz.so.1
      5067:	  trying file=x86_64/libz.so.1
      5067:	  trying file=libz.so.1
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libz.so.1
      5067:	
      5067:	find library=libdouble-conversion.so.3 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libdouble-conversion.so.3
      5067:	  trying file=tls/haswell/libdouble-conversion.so.3
      5067:	  trying file=tls/x86_64/libdouble-conversion.so.3
      5067:	  trying file=tls/libdouble-conversion.so.3
      5067:	  trying file=haswell/x86_64/libdouble-conversion.so.3
      5067:	  trying file=haswell/libdouble-conversion.so.3
      5067:	  trying file=x86_64/libdouble-conversion.so.3
      5067:	  trying file=libdouble-conversion.so.3
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libdouble-conversion.so.3
      5067:	
      5067:	find library=libicui18n.so.67 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libicui18n.so.67
      5067:	  trying file=tls/haswell/libicui18n.so.67
      5067:	  trying file=tls/x86_64/libicui18n.so.67
      5067:	  trying file=tls/libicui18n.so.67
      5067:	  trying file=haswell/x86_64/libicui18n.so.67
      5067:	  trying file=haswell/libicui18n.so.67
      5067:	  trying file=x86_64/libicui18n.so.67
      5067:	  trying file=libicui18n.so.67
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libicui18n.so.67
      5067:	
      5067:	find library=libicuuc.so.67 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libicuuc.so.67
      5067:	  trying file=tls/haswell/libicuuc.so.67
      5067:	  trying file=tls/x86_64/libicuuc.so.67
      5067:	  trying file=tls/libicuuc.so.67
      5067:	  trying file=haswell/x86_64/libicuuc.so.67
      5067:	  trying file=haswell/libicuuc.so.67
      5067:	  trying file=x86_64/libicuuc.so.67
      5067:	  trying file=libicuuc.so.67
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libicuuc.so.67
      5067:	
      5067:	find library=libpcre2-16.so.0 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libpcre2-16.so.0
      5067:	  trying file=tls/haswell/libpcre2-16.so.0
      5067:	  trying file=tls/x86_64/libpcre2-16.so.0
      5067:	  trying file=tls/libpcre2-16.so.0
      5067:	  trying file=haswell/x86_64/libpcre2-16.so.0
      5067:	  trying file=haswell/libpcre2-16.so.0
      5067:	  trying file=x86_64/libpcre2-16.so.0
      5067:	  trying file=libpcre2-16.so.0
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libpcre2-16.so.0
      5067:	
      5067:	find library=libzstd.so.1 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libzstd.so.1
      5067:	  trying file=tls/haswell/libzstd.so.1
      5067:	  trying file=tls/x86_64/libzstd.so.1
      5067:	  trying file=tls/libzstd.so.1
      5067:	  trying file=haswell/x86_64/libzstd.so.1
      5067:	  trying file=haswell/libzstd.so.1
      5067:	  trying file=x86_64/libzstd.so.1
      5067:	  trying file=libzstd.so.1
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libzstd.so.1
      5067:	
      5067:	find library=libglib-2.0.so.0 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libglib-2.0.so.0
      5067:	  trying file=tls/haswell/libglib-2.0.so.0
      5067:	  trying file=tls/x86_64/libglib-2.0.so.0
      5067:	  trying file=tls/libglib-2.0.so.0
      5067:	  trying file=haswell/x86_64/libglib-2.0.so.0
      5067:	  trying file=haswell/libglib-2.0.so.0
      5067:	  trying file=x86_64/libglib-2.0.so.0
      5067:	  trying file=libglib-2.0.so.0
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libglib-2.0.so.0
      5067:	
      5067:	find library=libffi.so.7 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libffi.so.7
      5067:	  trying file=tls/haswell/libffi.so.7
      5067:	  trying file=tls/x86_64/libffi.so.7
      5067:	  trying file=tls/libffi.so.7
      5067:	  trying file=haswell/x86_64/libffi.so.7
      5067:	  trying file=haswell/libffi.so.7
      5067:	  trying file=x86_64/libffi.so.7
      5067:	  trying file=libffi.so.7
      5067:	 search path=/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell:/usr/lib/llvm-11/lib/../lib/../lib/tls/x86_64:/usr/lib/llvm-11/lib/../lib/../lib/tls:/usr/lib/llvm-11/lib/../lib/../lib/haswell/x86_64:/usr/lib/llvm-11/lib/../lib/../lib/haswell:/usr/lib/llvm-11/lib/../lib/../lib/x86_64:/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell/x86_64/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/haswell/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/x86_64/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/tls/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/haswell/x86_64/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/haswell/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/x86_64/libffi.so.7
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libffi.so.7
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libffi.so.7
      5067:	
      5067:	find library=libedit.so.2 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libedit.so.2
      5067:	  trying file=tls/haswell/libedit.so.2
      5067:	  trying file=tls/x86_64/libedit.so.2
      5067:	  trying file=tls/libedit.so.2
      5067:	  trying file=haswell/x86_64/libedit.so.2
      5067:	  trying file=haswell/libedit.so.2
      5067:	  trying file=x86_64/libedit.so.2
      5067:	  trying file=libedit.so.2
      5067:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libedit.so.2
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libedit.so.2
      5067:	
      5067:	find library=librt.so.1 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/librt.so.1
      5067:	  trying file=tls/haswell/librt.so.1
      5067:	  trying file=tls/x86_64/librt.so.1
      5067:	  trying file=tls/librt.so.1
      5067:	  trying file=haswell/x86_64/librt.so.1
      5067:	  trying file=haswell/librt.so.1
      5067:	  trying file=x86_64/librt.so.1
      5067:	  trying file=librt.so.1
      5067:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/librt.so.1
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/librt.so.1
      5067:	
      5067:	find library=libtinfo.so.6 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libtinfo.so.6
      5067:	  trying file=tls/haswell/libtinfo.so.6
      5067:	  trying file=tls/x86_64/libtinfo.so.6
      5067:	  trying file=tls/libtinfo.so.6
      5067:	  trying file=haswell/x86_64/libtinfo.so.6
      5067:	  trying file=haswell/libtinfo.so.6
      5067:	  trying file=x86_64/libtinfo.so.6
      5067:	  trying file=libtinfo.so.6
      5067:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libtinfo.so.6
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libtinfo.so.6
      5067:	
      5067:	find library=libz3.so.4 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libz3.so.4
      5067:	  trying file=tls/haswell/libz3.so.4
      5067:	  trying file=tls/x86_64/libz3.so.4
      5067:	  trying file=tls/libz3.so.4
      5067:	  trying file=haswell/x86_64/libz3.so.4
      5067:	  trying file=haswell/libz3.so.4
      5067:	  trying file=x86_64/libz3.so.4
      5067:	  trying file=libz3.so.4
      5067:	 search path=/usr/lib/llvm-11/lib/../lib/../lib		(RUNPATH from file /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1)
      5067:	  trying file=/usr/lib/llvm-11/lib/../lib/../lib/libz3.so.4
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libz3.so.4
      5067:	
      5067:	find library=libicudata.so.67 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libicudata.so.67
      5067:	  trying file=tls/haswell/libicudata.so.67
      5067:	  trying file=tls/x86_64/libicudata.so.67
      5067:	  trying file=tls/libicudata.so.67
      5067:	  trying file=haswell/x86_64/libicudata.so.67
      5067:	  trying file=haswell/libicudata.so.67
      5067:	  trying file=x86_64/libicudata.so.67
      5067:	  trying file=libicudata.so.67
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libicudata.so.67
      5067:	
      5067:	find library=libpcre.so.3 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libpcre.so.3
      5067:	  trying file=tls/haswell/libpcre.so.3
      5067:	  trying file=tls/x86_64/libpcre.so.3
      5067:	  trying file=tls/libpcre.so.3
      5067:	  trying file=haswell/x86_64/libpcre.so.3
      5067:	  trying file=haswell/libpcre.so.3
      5067:	  trying file=x86_64/libpcre.so.3
      5067:	  trying file=libpcre.so.3
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libpcre.so.3
      5067:	
      5067:	find library=libbsd.so.0 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libbsd.so.0
      5067:	  trying file=tls/haswell/libbsd.so.0
      5067:	  trying file=tls/x86_64/libbsd.so.0
      5067:	  trying file=tls/libbsd.so.0
      5067:	  trying file=haswell/x86_64/libbsd.so.0
      5067:	  trying file=haswell/libbsd.so.0
      5067:	  trying file=x86_64/libbsd.so.0
      5067:	  trying file=libbsd.so.0
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libbsd.so.0
      5067:	
      5067:	find library=libmd.so.0 [0]; searching
      5067:	 search path=tls/haswell/x86_64:tls/haswell:tls/x86_64:tls:haswell/x86_64:haswell:x86_64:		(LD_LIBRARY_PATH)
      5067:	  trying file=tls/haswell/x86_64/libmd.so.0
      5067:	  trying file=tls/haswell/libmd.so.0
      5067:	  trying file=tls/x86_64/libmd.so.0
      5067:	  trying file=tls/libmd.so.0
      5067:	  trying file=haswell/x86_64/libmd.so.0
      5067:	  trying file=haswell/libmd.so.0
      5067:	  trying file=x86_64/libmd.so.0
      5067:	  trying file=libmd.so.0
      5067:	 search cache=/etc/ld.so.cache
      5067:	  trying file=/lib/x86_64-linux-gnu/libmd.so.0
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libpthread.so.0
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libc.so.6
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libmd.so.0
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libdl.so.2
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libbsd.so.0
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libpcre.so.3
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libicudata.so.67
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libm.so.6
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libgcc_s.so.1
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libstdc++.so.6
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libz3.so.4
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libtinfo.so.6
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/librt.so.1
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libedit.so.2
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libffi.so.7
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libglib-2.0.so.0
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libzstd.so.1
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libpcre2-16.so.0
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libicuuc.so.67
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libicui18n.so.67
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libdouble-conversion.so.3
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libz.so.1
      5067:	
      5067:	
      5067:	calling init: /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1
      5067:	
      5067:	
      5067:	calling init: /lib/x86_64-linux-gnu/libQt5Core.so.5
      5067:	
      5067:	
      5067:	calling init: /usr/lib/llvm-11/lib/libclang-11.so.1
      5067:	
      5067:	
      5067:	initialize program: ./helloworld
      5067:	
      5067:	
      5067:	transferring control: ./helloworld
      5067:	
0
      5067:	
      5067:	calling fini: ./helloworld [0]
      5067:	
      5067:	
      5067:	calling fini: /usr/lib/llvm-11/lib/libclang-11.so.1 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libQt5Core.so.5 [0]
      5067:	
      5067:	
      5067:	calling fini: /usr/lib/llvm-11/lib/../lib/libLLVM-11.so.1 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libz.so.1 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libdouble-conversion.so.3 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libicui18n.so.67 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libicuuc.so.67 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libpcre2-16.so.0 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libzstd.so.1 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libglib-2.0.so.0 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libffi.so.7 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libedit.so.2 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/librt.so.1 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libtinfo.so.6 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libz3.so.4 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libstdc++.so.6 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libgcc_s.so.1 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libm.so.6 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libicudata.so.67 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libpcre.so.3 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libpthread.so.0 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libbsd.so.0 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libdl.so.2 [0]
      5067:	
      5067:	
      5067:	calling fini: /lib/x86_64-linux-gnu/libmd.so.0 [0]
      5067:	


More information about the KDevelop-devel mailing list