• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Support v
« Previous 1 ... 105 106 107 108 109 ... 1176 Next »

[Solved] Need help for compiling on ubuntu
View New Posts | View Today's Posts

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
[Solved] Need help for compiling on ubuntu
05-18-2020, 12:29 AM (This post was last modified: 05-18-2020, 08:28 PM by Barabbas.)
#1
Barabbas Offline
Junior Member
**
Posts: 15
Threads: 2
Joined: May 2020
Shocked 
EDIT : Issue Solved

Quote:How to compile Dolphin on Ubuntu

1/ Install the dependencies
Code:
sudo apt install -y cmake pkg-config git libao-dev libasound2-dev libavcodec-dev libavformat-dev libbluetooth-dev libenet-dev libgtk2.0-dev liblzo2-dev libminiupnpc-dev libopenal-dev libpulse-dev libreadline-dev libsfml-dev libsoil-dev libsoundtouch-dev libswscale-dev libusb-1.0-0-dev libwxbase3.0-dev libwxgtk3.0-dev libxext-dev libxrandr-dev portaudio19-dev zlib1g-dev libudev-dev libevdev-dev "libpolarssl-dev|libmbedtls-dev" libcurl4-openssl-dev libegl1-mesa-dev libpng-dev qtbase5-private-dev libudev-dev libevdev-dev xrandr ffmpeg libxi-dev checkinstall
# "ffmpeg" dependencies look to replacing libav's ones (the terminal noticed me with that message when trying to install libav-tools)

2/ Compiling 
Code:
git clone https://github.com/dolphin-emu/dolphin.git
cd dolphin
mkdir build
cd build
cmake ..
make

3/ Installing or make a package
To install :
Code:
sudo make install -y

To build a .deb package :
Code:
sudo checkinstall -y
#the .deb will be located in :  ~/dolphin/build/build_***********.deb



Hello there !  Wink

After reading the readme.md of the git repo, I've still have some issues to compile dolphin on my computer.

Here is which compiling command I attempting to use :

Code:
git clone https://github.com/dolphin-emu/dolphin.git
cd dolphin
mkdir build
cd build
cmake ..
make
sudo make install


Everything is fine until I use CMake :
Code:
Rainie@MS-7C37:~/dolphin/build$ cmake ..
-- The C compiler identification is GNU 7.5.0
-- The CXX compiler identification is GNU 7.5.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found Git: /usr/bin/git (found version "2.17.1")
-- Detected architecture: x86_64
-- Performing Test FLAG_C_HAVE_SSE2
-- Performing Test FLAG_C_HAVE_SSE2 - Success
-- Performing Test FLAG_CXX_HAVE_SSE2
-- Performing Test FLAG_CXX_HAVE_SSE2 - Success
-- Performing Test FLAG_C_HAVE_WALL
-- Performing Test FLAG_C_HAVE_WALL - Success
-- Performing Test FLAG_CXX_HAVE_WALL
-- Performing Test FLAG_CXX_HAVE_WALL - Success
-- Performing Test FLAG_C_TYPE_LIMITS
-- Performing Test FLAG_C_TYPE_LIMITS - Success
-- Performing Test FLAG_CXX_TYPE_LIMITS
-- Performing Test FLAG_CXX_TYPE_LIMITS - Success
-- Performing Test FLAG_C_SIGN_COMPARE
-- Performing Test FLAG_C_SIGN_COMPARE - Success
-- Performing Test FLAG_CXX_SIGN_COMPARE
-- Performing Test FLAG_CXX_SIGN_COMPARE - Success
-- Performing Test FLAG_C_IGNORED_QUALIFIERS
-- Performing Test FLAG_C_IGNORED_QUALIFIERS - Success
-- Performing Test FLAG_CXX_IGNORED_QUALIFIERS
-- Performing Test FLAG_CXX_IGNORED_QUALIFIERS - Success
-- Performing Test FLAG_C_UNINITIALIZED
-- Performing Test FLAG_C_UNINITIALIZED - Success
-- Performing Test FLAG_CXX_UNINITIALIZED
-- Performing Test FLAG_CXX_UNINITIALIZED - Success
-- Performing Test FLAG_C_LOGICAL_OP
-- Performing Test FLAG_C_LOGICAL_OP - Success
-- Performing Test FLAG_CXX_LOGICAL_OP
-- Performing Test FLAG_CXX_LOGICAL_OP - Success
-- Performing Test FLAG_C_SHADOW
-- Performing Test FLAG_C_SHADOW - Success
-- Performing Test FLAG_CXX_SHADOW
-- Performing Test FLAG_CXX_SHADOW - Success
-- Performing Test FLAG_C_INIT_SELF
-- Performing Test FLAG_C_INIT_SELF - Success
-- Performing Test FLAG_CXX_INIT_SELF
-- Performing Test FLAG_CXX_INIT_SELF - Success
-- Performing Test FLAG_C_MISSING_DECLARATIONS
-- Performing Test FLAG_C_MISSING_DECLARATIONS - Success
-- Performing Test FLAG_CXX_MISSING_DECLARATIONS
-- Performing Test FLAG_CXX_MISSING_DECLARATIONS - Success
-- Performing Test FLAG_C_MISSING_VARIABLE_DECLARATIONS
-- Performing Test FLAG_C_MISSING_VARIABLE_DECLARATIONS - Failed
-- Performing Test FLAG_CXX_MISSING_VARIABLE_DECLARATIONS
-- Performing Test FLAG_CXX_MISSING_VARIABLE_DECLARATIONS - Failed
-- Performing Test FLAG_C_NO_STRICT_ALIASING
-- Performing Test FLAG_C_NO_STRICT_ALIASING - Success
-- Performing Test FLAG_CXX_NO_STRICT_ALIASING
-- Performing Test FLAG_CXX_NO_STRICT_ALIASING - Success
-- Performing Test FLAG_C_NO_EXCEPTIONS
-- Performing Test FLAG_C_NO_EXCEPTIONS - Success
-- Performing Test FLAG_CXX_NO_EXCEPTIONS
-- Performing Test FLAG_CXX_NO_EXCEPTIONS - Success
-- Performing Test FLAG_C_VISIBILITY_INLINES_HIDDEN
-- Performing Test FLAG_C_VISIBILITY_INLINES_HIDDEN - Failed
-- Performing Test FLAG_CXX_VISIBILITY_INLINES_HIDDEN
-- Performing Test FLAG_CXX_VISIBILITY_INLINES_HIDDEN - Success
-- Performing Test FLAG_C_VISIBILITY_HIDDEN
-- Performing Test FLAG_C_VISIBILITY_HIDDEN - Success
-- Performing Test FLAG_CXX_VISIBILITY_HIDDEN
-- Performing Test FLAG_CXX_VISIBILITY_HIDDEN - Success
-- Performing Test FLAG_C_FOMIT_FRAME_POINTER
-- Performing Test FLAG_C_FOMIT_FRAME_POINTER - Success
-- Performing Test FLAG_CXX_FOMIT_FRAME_POINTER
-- Performing Test FLAG_CXX_FOMIT_FRAME_POINTER - Success
-- Performing Test FLAG_C_GGDB
-- Performing Test FLAG_C_GGDB - Success
-- Performing Test FLAG_CXX_GGDB
-- Performing Test FLAG_CXX_GGDB - Success
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
-- Found OpenGL: /usr/lib/x86_64-linux-gnu/libOpenGL.so  
-- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
-- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Found X11: /usr/lib/x86_64-linux-gnu/libX11.so
-- Xrandr not found
-- Checking for module 'xi>=1.5.0'
--   No package 'xi' found
CMake Error at /usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:415 (message):
 A required package was not found
Call Stack (most recent call first):
 /usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:593 (_pkg_check_modules_internal)
 CMakeLists.txt:445 (pkg_check_modules)


-- Configuring incomplete, errors occurred!
See also "/home/harry/dolphin/build/CMakeFiles/CMakeOutput.log".
See also "/home/harry/dolphin/build/CMakeFiles/CMakeError.log".


"CMakeError.log" :

Code:
Performing C SOURCE FILE Test FLAG_C_MISSING_VARIABLE_DECLARATIONS failed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_77ae8/fast"
/usr/bin/make -f CMakeFiles/cmTC_77ae8.dir/build.make CMakeFiles/cmTC_77ae8.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_77ae8.dir/src.c.o
/usr/bin/cc   -DFLAG_C_MISSING_VARIABLE_DECLARATIONS   -Wmissing-variable-declarations -o CMakeFiles/cmTC_77ae8.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
cc: error: unrecognized command line option '-Wmissing-variable-declarations'; did you mean '-Wmissing-declarations'?
CMakeFiles/cmTC_77ae8.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_77ae8.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTC_77ae8.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_77ae8/fast' failed
make: *** [cmTC_77ae8/fast] Error 2

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_MISSING_VARIABLE_DECLARATIONS failed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_444ef/fast"
/usr/bin/make -f CMakeFiles/cmTC_444ef.dir/build.make CMakeFiles/cmTC_444ef.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_444ef.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_MISSING_VARIABLE_DECLARATIONS   -Wmissing-variable-declarations -o CMakeFiles/cmTC_444ef.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
c++: error: unrecognized command line option '-Wmissing-variable-declarations'; did you mean '-Wmissing-declarations'?
CMakeFiles/cmTC_444ef.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_444ef.dir/src.cxx.o' failed
make[1]: *** [CMakeFiles/cmTC_444ef.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_444ef/fast' failed
make: *** [cmTC_444ef/fast] Error 2

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_VISIBILITY_INLINES_HIDDEN failed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b0296/fast"
/usr/bin/make -f CMakeFiles/cmTC_b0296.dir/build.make CMakeFiles/cmTC_b0296.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b0296.dir/src.c.o
/usr/bin/cc   -DFLAG_C_VISIBILITY_INLINES_HIDDEN   -fvisibility-inlines-hidden -o CMakeFiles/cmTC_b0296.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
cc1: warning: command line option '-fvisibility-inlines-hidden' is valid for C++/ObjC++ but not for C
Linking C executable cmTC_b0296
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b0296.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_VISIBILITY_INLINES_HIDDEN    CMakeFiles/cmTC_b0296.dir/src.c.o  -o cmTC_b0296
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Determining if the pthread_create exist failed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_874b4/fast"
/usr/bin/make -f CMakeFiles/cmTC_874b4.dir/build.make CMakeFiles/cmTC_874b4.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_874b4.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_874b4.dir/CheckSymbolExists.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_874b4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_874b4.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_874b4.dir/CheckSymbolExists.c.o  -o cmTC_874b4
CMakeFiles/cmTC_874b4.dir/CheckSymbolExists.c.o : Dans la fonction « main » :
CheckSymbolExists.c:(.text+0x1b) : référence indéfinie vers « pthread_create »
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_874b4.dir/build.make:97: recipe for target 'cmTC_874b4' failed
make[1]: *** [cmTC_874b4] Error 1
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Makefile:126: recipe for target 'cmTC_874b4/fast' failed
make: *** [cmTC_874b4/fast] Error 2

File /home/harry/dolphin/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

int main(int argc, char** argv)
{
 (void)argv;
#ifndef pthread_create
 return ((int*)(&pthread_create))[argc];
#else
 (void)argc;
 return 0;
#endif
}

Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e653c/fast"
/usr/bin/make -f CMakeFiles/cmTC_e653c.dir/build.make CMakeFiles/cmTC_e653c.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_e653c.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_e653c.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_e653c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e653c.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_e653c.dir/CheckFunctionExists.c.o  -o cmTC_e653c -lpthreads
/usr/bin/ld : ne peut trouver -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_e653c.dir/build.make:97: recipe for target 'cmTC_e653c' failed
make[1]: *** [cmTC_e653c] Error 1
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Makefile:126: recipe for target 'cmTC_e653c/fast' failed
make: *** [cmTC_e653c/fast] Error 2


"CMakeOutput.log" :
Code:
The system is: Linux - 5.3.0-28-generic - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags:
Id flags:  

The output was:
0


Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"

The C compiler identification is GNU, found in "/home/harry/dolphin/build/CMakeFiles/3.10.2/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags:
Id flags:  

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"

The CXX compiler identification is GNU, found in "/home/harry/dolphin/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out"

Determining if the C compiler works passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_856a3/fast"
/usr/bin/make -f CMakeFiles/cmTC_856a3.dir/build.make CMakeFiles/cmTC_856a3.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_856a3.dir/testCCompiler.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_856a3.dir/testCCompiler.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_856a3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_856a3.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_856a3.dir/testCCompiler.c.o  -o cmTC_856a3
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e3264/fast"
/usr/bin/make -f CMakeFiles/cmTC_e3264.dir/build.make CMakeFiles/cmTC_e3264.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_e3264
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3264.dir/link.txt --verbose=1
/usr/bin/cc     -v CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o  -o cmTC_e3264
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e3264' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccIZSdTb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e3264 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e3264' '-mtune=generic' '-march=x86-64'
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Parsed C implicit link information from above output:
 link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
 ignore line: [Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp]
 ignore line: []
 ignore line: [Run Build Command:"/usr/bin/make" "cmTC_e3264/fast"]
 ignore line: [/usr/bin/make -f CMakeFiles/cmTC_e3264.dir/build.make CMakeFiles/cmTC_e3264.dir/build]
 ignore line: [make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »]
 ignore line: [Building C object CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o]
 ignore line: [/usr/bin/cc    -o CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
 ignore line: [Linking C executable cmTC_e3264]
 ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3264.dir/link.txt --verbose=1]
 ignore line: [/usr/bin/cc     -v CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o  -o cmTC_e3264 ]
 ignore line: [Using built-in specs.]
 ignore line: [COLLECT_GCC=/usr/bin/cc]
 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
 ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
 ignore line: [OFFLOAD_TARGET_DEFAULT=1]
 ignore line: [Target: x86_64-linux-gnu]
 ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
 ignore line: [Thread model: posix]
 ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
 ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
 ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
 ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e3264' '-mtune=generic' '-march=x86-64']
 link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccIZSdTb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e3264 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
   arg [-plugin] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
   arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
   arg [-plugin-opt=-fresolution=/tmp/ccIZSdTb.res] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
   arg [-plugin-opt=-pass-through=-lc] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
   arg [--build-id] ==> ignore
   arg [--eh-frame-hdr] ==> ignore
   arg [-m] ==> ignore
   arg [elf_x86_64] ==> ignore
   arg [--hash-style=gnu] ==> ignore
   arg [--as-needed] ==> ignore
   arg [-dynamic-linker] ==> ignore
   arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
   arg [-pie] ==> ignore
   arg [-znow] ==> ignore
   arg [-zrelro] ==> ignore
   arg [-o] ==> ignore
   arg [cmTC_e3264] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
   arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
   arg [-L/lib/../lib] ==> dir [/lib/../lib]
   arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
   arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
   arg [CMakeFiles/cmTC_e3264.dir/CMakeCCompilerABI.c.o] ==> ignore
   arg [-lgcc] ==> lib [gcc]
   arg [--push-state] ==> ignore
   arg [--as-needed] ==> ignore
   arg [-lgcc_s] ==> lib [gcc_s]
   arg [--pop-state] ==> ignore
   arg [-lc] ==> lib [c]
   arg [-lgcc] ==> lib [gcc]
   arg [--push-state] ==> ignore
   arg [--as-needed] ==> ignore
   arg [-lgcc_s] ==> lib [gcc_s]
   arg [--pop-state] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
 collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
 collapse library dir [/lib/../lib] ==> [/lib]
 collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
 collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
 implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
 implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
 implicit fwks: []




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_68a0f/fast"
/usr/bin/make -f CMakeFiles/cmTC_68a0f.dir/build.make CMakeFiles/cmTC_68a0f.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_68a0f.dir/feature_tests.c.o
/usr/bin/cc   -std=c11 -o CMakeFiles/cmTC_68a0f.dir/feature_tests.c.o   -c /home/harry/dolphin/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_68a0f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_68a0f.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_68a0f.dir/feature_tests.c.o  -o cmTC_68a0f
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: C_FEATURE:1c_function_prototypes
   Feature record: C_FEATURE:1c_restrict
   Feature record: C_FEATURE:1c_static_assert
   Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f6463/fast"
/usr/bin/make -f CMakeFiles/cmTC_f6463.dir/build.make CMakeFiles/cmTC_f6463.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_f6463.dir/feature_tests.c.o
/usr/bin/cc   -std=c99 -o CMakeFiles/cmTC_f6463.dir/feature_tests.c.o   -c /home/harry/dolphin/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_f6463
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f6463.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f6463.dir/feature_tests.c.o  -o cmTC_f6463
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: C_FEATURE:1c_function_prototypes
   Feature record: C_FEATURE:1c_restrict
   Feature record: C_FEATURE:0c_static_assert
   Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5499f/fast"
/usr/bin/make -f CMakeFiles/cmTC_5499f.dir/build.make CMakeFiles/cmTC_5499f.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_5499f.dir/feature_tests.c.o
/usr/bin/cc   -std=c90 -o CMakeFiles/cmTC_5499f.dir/feature_tests.c.o   -c /home/harry/dolphin/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_5499f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5499f.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_5499f.dir/feature_tests.c.o  -o cmTC_5499f
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: C_FEATURE:1c_function_prototypes
   Feature record: C_FEATURE:0c_restrict
   Feature record: C_FEATURE:0c_static_assert
   Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b1294/fast"
/usr/bin/make -f CMakeFiles/cmTC_b1294.dir/build.make CMakeFiles/cmTC_b1294.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building CXX object CMakeFiles/cmTC_b1294.dir/testCXXCompiler.cxx.o
/usr/bin/c++     -o CMakeFiles/cmTC_b1294.dir/testCXXCompiler.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_b1294
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b1294.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_b1294.dir/testCXXCompiler.cxx.o  -o cmTC_b1294
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e0d5e/fast"
/usr/bin/make -f CMakeFiles/cmTC_e0d5e.dir/build.make CMakeFiles/cmTC_e0d5e.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building CXX object CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++     -o CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_e0d5e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e0d5e.dir/link.txt --verbose=1
/usr/bin/c++      -v CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_e0d5e
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e0d5e' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccm7IJTt.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e0d5e /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e0d5e' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Parsed CXX implicit link information from above output:
 link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
 ignore line: [Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp]
 ignore line: []
 ignore line: [Run Build Command:"/usr/bin/make" "cmTC_e0d5e/fast"]
 ignore line: [/usr/bin/make -f CMakeFiles/cmTC_e0d5e.dir/build.make CMakeFiles/cmTC_e0d5e.dir/build]
 ignore line: [make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »]
 ignore line: [Building CXX object CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o]
 ignore line: [/usr/bin/c++     -o CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
 ignore line: [Linking CXX executable cmTC_e0d5e]
 ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e0d5e.dir/link.txt --verbose=1]
 ignore line: [/usr/bin/c++      -v CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_e0d5e ]
 ignore line: [Using built-in specs.]
 ignore line: [COLLECT_GCC=/usr/bin/c++]
 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
 ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
 ignore line: [OFFLOAD_TARGET_DEFAULT=1]
 ignore line: [Target: x86_64-linux-gnu]
 ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
 ignore line: [Thread model: posix]
 ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
 ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
 ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
 ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e0d5e' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
 link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccm7IJTt.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e0d5e /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
   arg [-plugin] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
   arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
   arg [-plugin-opt=-fresolution=/tmp/ccm7IJTt.res] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
   arg [-plugin-opt=-pass-through=-lc] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
   arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
   arg [--build-id] ==> ignore
   arg [--eh-frame-hdr] ==> ignore
   arg [-m] ==> ignore
   arg [elf_x86_64] ==> ignore
   arg [--hash-style=gnu] ==> ignore
   arg [--as-needed] ==> ignore
   arg [-dynamic-linker] ==> ignore
   arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
   arg [-pie] ==> ignore
   arg [-znow] ==> ignore
   arg [-zrelro] ==> ignore
   arg [-o] ==> ignore
   arg [cmTC_e0d5e] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
   arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
   arg [-L/lib/../lib] ==> dir [/lib/../lib]
   arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
   arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
   arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
   arg [CMakeFiles/cmTC_e0d5e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
   arg [-lstdc++] ==> lib [stdc++]
   arg [-lm] ==> lib [m]
   arg [-lgcc_s] ==> lib [gcc_s]
   arg [-lgcc] ==> lib [gcc]
   arg [-lc] ==> lib [c]
   arg [-lgcc_s] ==> lib [gcc_s]
   arg [-lgcc] ==> lib [gcc]
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
   arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
 collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
 collapse library dir [/lib/../lib] ==> [/lib]
 collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
 collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
 implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
 implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
 implicit fwks: []




Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b4690/fast"
/usr/bin/make -f CMakeFiles/cmTC_b4690.dir/build.make CMakeFiles/cmTC_b4690.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building CXX object CMakeFiles/cmTC_b4690.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++1z -o CMakeFiles/cmTC_b4690.dir/feature_tests.cxx.o -c /home/harry/dolphin/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_b4690
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b4690.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_b4690.dir/feature_tests.cxx.o  -o cmTC_b4690
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
   Feature record: CXX_FEATURE:1cxx_alias_templates
   Feature record: CXX_FEATURE:1cxx_alignas
   Feature record: CXX_FEATURE:1cxx_alignof
   Feature record: CXX_FEATURE:1cxx_attributes
   Feature record: CXX_FEATURE:1cxx_attribute_deprecated
   Feature record: CXX_FEATURE:1cxx_auto_type
   Feature record: CXX_FEATURE:1cxx_binary_literals
   Feature record: CXX_FEATURE:1cxx_constexpr
   Feature record: CXX_FEATURE:1cxx_contextual_conversions
   Feature record: CXX_FEATURE:1cxx_decltype
   Feature record: CXX_FEATURE:1cxx_decltype_auto
   Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
   Feature record: CXX_FEATURE:1cxx_default_function_template_args
   Feature record: CXX_FEATURE:1cxx_defaulted_functions
   Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
   Feature record: CXX_FEATURE:1cxx_delegating_constructors
   Feature record: CXX_FEATURE:1cxx_deleted_functions
   Feature record: CXX_FEATURE:1cxx_digit_separators
   Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
   Feature record: CXX_FEATURE:1cxx_explicit_conversions
   Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
   Feature record: CXX_FEATURE:1cxx_extern_templates
   Feature record: CXX_FEATURE:1cxx_final
   Feature record: CXX_FEATURE:1cxx_func_identifier
   Feature record: CXX_FEATURE:1cxx_generalized_initializers
   Feature record: CXX_FEATURE:1cxx_generic_lambdas
   Feature record: CXX_FEATURE:1cxx_inheriting_constructors
   Feature record: CXX_FEATURE:1cxx_inline_namespaces
   Feature record: CXX_FEATURE:1cxx_lambdas
   Feature record: CXX_FEATURE:1cxx_lambda_init_captures
   Feature record: CXX_FEATURE:1cxx_local_type_template_args
   Feature record: CXX_FEATURE:1cxx_long_long_type
   Feature record: CXX_FEATURE:1cxx_noexcept
   Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
   Feature record: CXX_FEATURE:1cxx_nullptr
   Feature record: CXX_FEATURE:1cxx_override
   Feature record: CXX_FEATURE:1cxx_range_for
   Feature record: CXX_FEATURE:1cxx_raw_string_literals
   Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
   Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
   Feature record: CXX_FEATURE:1cxx_return_type_deduction
   Feature record: CXX_FEATURE:1cxx_right_angle_brackets
   Feature record: CXX_FEATURE:1cxx_rvalue_references
   Feature record: CXX_FEATURE:1cxx_sizeof_member
   Feature record: CXX_FEATURE:1cxx_static_assert
   Feature record: CXX_FEATURE:1cxx_strong_enums
   Feature record: CXX_FEATURE:1cxx_template_template_parameters
   Feature record: CXX_FEATURE:1cxx_thread_local
   Feature record: CXX_FEATURE:1cxx_trailing_return_types
   Feature record: CXX_FEATURE:1cxx_unicode_literals
   Feature record: CXX_FEATURE:1cxx_uniform_initialization
   Feature record: CXX_FEATURE:1cxx_unrestricted_unions
   Feature record: CXX_FEATURE:1cxx_user_literals
   Feature record: CXX_FEATURE:1cxx_variable_templates
   Feature record: CXX_FEATURE:1cxx_variadic_macros
   Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_20fa2/fast"
/usr/bin/make -f CMakeFiles/cmTC_20fa2.dir/build.make CMakeFiles/cmTC_20fa2.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building CXX object CMakeFiles/cmTC_20fa2.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++14 -o CMakeFiles/cmTC_20fa2.dir/feature_tests.cxx.o -c /home/harry/dolphin/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_20fa2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_20fa2.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_20fa2.dir/feature_tests.cxx.o  -o cmTC_20fa2
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
   Feature record: CXX_FEATURE:1cxx_alias_templates
   Feature record: CXX_FEATURE:1cxx_alignas
   Feature record: CXX_FEATURE:1cxx_alignof
   Feature record: CXX_FEATURE:1cxx_attributes
   Feature record: CXX_FEATURE:1cxx_attribute_deprecated
   Feature record: CXX_FEATURE:1cxx_auto_type
   Feature record: CXX_FEATURE:1cxx_binary_literals
   Feature record: CXX_FEATURE:1cxx_constexpr
   Feature record: CXX_FEATURE:1cxx_contextual_conversions
   Feature record: CXX_FEATURE:1cxx_decltype
   Feature record: CXX_FEATURE:1cxx_decltype_auto
   Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
   Feature record: CXX_FEATURE:1cxx_default_function_template_args
   Feature record: CXX_FEATURE:1cxx_defaulted_functions
   Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
   Feature record: CXX_FEATURE:1cxx_delegating_constructors
   Feature record: CXX_FEATURE:1cxx_deleted_functions
   Feature record: CXX_FEATURE:1cxx_digit_separators
   Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
   Feature record: CXX_FEATURE:1cxx_explicit_conversions
   Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
   Feature record: CXX_FEATURE:1cxx_extern_templates
   Feature record: CXX_FEATURE:1cxx_final
   Feature record: CXX_FEATURE:1cxx_func_identifier
   Feature record: CXX_FEATURE:1cxx_generalized_initializers
   Feature record: CXX_FEATURE:1cxx_generic_lambdas
   Feature record: CXX_FEATURE:1cxx_inheriting_constructors
   Feature record: CXX_FEATURE:1cxx_inline_namespaces
   Feature record: CXX_FEATURE:1cxx_lambdas
   Feature record: CXX_FEATURE:1cxx_lambda_init_captures
   Feature record: CXX_FEATURE:1cxx_local_type_template_args
   Feature record: CXX_FEATURE:1cxx_long_long_type
   Feature record: CXX_FEATURE:1cxx_noexcept
   Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
   Feature record: CXX_FEATURE:1cxx_nullptr
   Feature record: CXX_FEATURE:1cxx_override
   Feature record: CXX_FEATURE:1cxx_range_for
   Feature record: CXX_FEATURE:1cxx_raw_string_literals
   Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
   Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
   Feature record: CXX_FEATURE:1cxx_return_type_deduction
   Feature record: CXX_FEATURE:1cxx_right_angle_brackets
   Feature record: CXX_FEATURE:1cxx_rvalue_references
   Feature record: CXX_FEATURE:1cxx_sizeof_member
   Feature record: CXX_FEATURE:1cxx_static_assert
   Feature record: CXX_FEATURE:1cxx_strong_enums
   Feature record: CXX_FEATURE:1cxx_template_template_parameters
   Feature record: CXX_FEATURE:1cxx_thread_local
   Feature record: CXX_FEATURE:1cxx_trailing_return_types
   Feature record: CXX_FEATURE:1cxx_unicode_literals
   Feature record: CXX_FEATURE:1cxx_uniform_initialization
   Feature record: CXX_FEATURE:1cxx_unrestricted_unions
   Feature record: CXX_FEATURE:1cxx_user_literals
   Feature record: CXX_FEATURE:1cxx_variable_templates
   Feature record: CXX_FEATURE:1cxx_variadic_macros
   Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_00b62/fast"
/usr/bin/make -f CMakeFiles/cmTC_00b62.dir/build.make CMakeFiles/cmTC_00b62.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building CXX object CMakeFiles/cmTC_00b62.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++11 -o CMakeFiles/cmTC_00b62.dir/feature_tests.cxx.o -c /home/harry/dolphin/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_00b62
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_00b62.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_00b62.dir/feature_tests.cxx.o  -o cmTC_00b62
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
   Feature record: CXX_FEATURE:1cxx_alias_templates
   Feature record: CXX_FEATURE:1cxx_alignas
   Feature record: CXX_FEATURE:1cxx_alignof
   Feature record: CXX_FEATURE:1cxx_attributes
   Feature record: CXX_FEATURE:0cxx_attribute_deprecated
   Feature record: CXX_FEATURE:1cxx_auto_type
   Feature record: CXX_FEATURE:0cxx_binary_literals
   Feature record: CXX_FEATURE:1cxx_constexpr
   Feature record: CXX_FEATURE:0cxx_contextual_conversions
   Feature record: CXX_FEATURE:1cxx_decltype
   Feature record: CXX_FEATURE:0cxx_decltype_auto
   Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
   Feature record: CXX_FEATURE:1cxx_default_function_template_args
   Feature record: CXX_FEATURE:1cxx_defaulted_functions
   Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
   Feature record: CXX_FEATURE:1cxx_delegating_constructors
   Feature record: CXX_FEATURE:1cxx_deleted_functions
   Feature record: CXX_FEATURE:0cxx_digit_separators
   Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
   Feature record: CXX_FEATURE:1cxx_explicit_conversions
   Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
   Feature record: CXX_FEATURE:1cxx_extern_templates
   Feature record: CXX_FEATURE:1cxx_final
   Feature record: CXX_FEATURE:1cxx_func_identifier
   Feature record: CXX_FEATURE:1cxx_generalized_initializers
   Feature record: CXX_FEATURE:0cxx_generic_lambdas
   Feature record: CXX_FEATURE:1cxx_inheriting_constructors
   Feature record: CXX_FEATURE:1cxx_inline_namespaces
   Feature record: CXX_FEATURE:1cxx_lambdas
   Feature record: CXX_FEATURE:0cxx_lambda_init_captures
   Feature record: CXX_FEATURE:1cxx_local_type_template_args
   Feature record: CXX_FEATURE:1cxx_long_long_type
   Feature record: CXX_FEATURE:1cxx_noexcept
   Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
   Feature record: CXX_FEATURE:1cxx_nullptr
   Feature record: CXX_FEATURE:1cxx_override
   Feature record: CXX_FEATURE:1cxx_range_for
   Feature record: CXX_FEATURE:1cxx_raw_string_literals
   Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
   Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
   Feature record: CXX_FEATURE:0cxx_return_type_deduction
   Feature record: CXX_FEATURE:1cxx_right_angle_brackets
   Feature record: CXX_FEATURE:1cxx_rvalue_references
   Feature record: CXX_FEATURE:1cxx_sizeof_member
   Feature record: CXX_FEATURE:1cxx_static_assert
   Feature record: CXX_FEATURE:1cxx_strong_enums
   Feature record: CXX_FEATURE:1cxx_template_template_parameters
   Feature record: CXX_FEATURE:1cxx_thread_local
   Feature record: CXX_FEATURE:1cxx_trailing_return_types
   Feature record: CXX_FEATURE:1cxx_unicode_literals
   Feature record: CXX_FEATURE:1cxx_uniform_initialization
   Feature record: CXX_FEATURE:1cxx_unrestricted_unions
   Feature record: CXX_FEATURE:1cxx_user_literals
   Feature record: CXX_FEATURE:0cxx_variable_templates
   Feature record: CXX_FEATURE:1cxx_variadic_macros
   Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6e9c2/fast"
/usr/bin/make -f CMakeFiles/cmTC_6e9c2.dir/build.make CMakeFiles/cmTC_6e9c2.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building CXX object CMakeFiles/cmTC_6e9c2.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++98 -o CMakeFiles/cmTC_6e9c2.dir/feature_tests.cxx.o -c /home/harry/dolphin/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_6e9c2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6e9c2.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_6e9c2.dir/feature_tests.cxx.o  -o cmTC_6e9c2
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


   Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
   Feature record: CXX_FEATURE:0cxx_alias_templates
   Feature record: CXX_FEATURE:0cxx_alignas
   Feature record: CXX_FEATURE:0cxx_alignof
   Feature record: CXX_FEATURE:0cxx_attributes
   Feature record: CXX_FEATURE:0cxx_attribute_deprecated
   Feature record: CXX_FEATURE:0cxx_auto_type
   Feature record: CXX_FEATURE:0cxx_binary_literals
   Feature record: CXX_FEATURE:0cxx_constexpr
   Feature record: CXX_FEATURE:0cxx_contextual_conversions
   Feature record: CXX_FEATURE:0cxx_decltype
   Feature record: CXX_FEATURE:0cxx_decltype_auto
   Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
   Feature record: CXX_FEATURE:0cxx_default_function_template_args
   Feature record: CXX_FEATURE:0cxx_defaulted_functions
   Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
   Feature record: CXX_FEATURE:0cxx_delegating_constructors
   Feature record: CXX_FEATURE:0cxx_deleted_functions
   Feature record: CXX_FEATURE:0cxx_digit_separators
   Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
   Feature record: CXX_FEATURE:0cxx_explicit_conversions
   Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
   Feature record: CXX_FEATURE:0cxx_extern_templates
   Feature record: CXX_FEATURE:0cxx_final
   Feature record: CXX_FEATURE:0cxx_func_identifier
   Feature record: CXX_FEATURE:0cxx_generalized_initializers
   Feature record: CXX_FEATURE:0cxx_generic_lambdas
   Feature record: CXX_FEATURE:0cxx_inheriting_constructors
   Feature record: CXX_FEATURE:0cxx_inline_namespaces
   Feature record: CXX_FEATURE:0cxx_lambdas
   Feature record: CXX_FEATURE:0cxx_lambda_init_captures
   Feature record: CXX_FEATURE:0cxx_local_type_template_args
   Feature record: CXX_FEATURE:0cxx_long_long_type
   Feature record: CXX_FEATURE:0cxx_noexcept
   Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
   Feature record: CXX_FEATURE:0cxx_nullptr
   Feature record: CXX_FEATURE:0cxx_override
   Feature record: CXX_FEATURE:0cxx_range_for
   Feature record: CXX_FEATURE:0cxx_raw_string_literals
   Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
   Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
   Feature record: CXX_FEATURE:0cxx_return_type_deduction
   Feature record: CXX_FEATURE:0cxx_right_angle_brackets
   Feature record: CXX_FEATURE:0cxx_rvalue_references
   Feature record: CXX_FEATURE:0cxx_sizeof_member
   Feature record: CXX_FEATURE:0cxx_static_assert
   Feature record: CXX_FEATURE:0cxx_strong_enums
   Feature record: CXX_FEATURE:1cxx_template_template_parameters
   Feature record: CXX_FEATURE:0cxx_thread_local
   Feature record: CXX_FEATURE:0cxx_trailing_return_types
   Feature record: CXX_FEATURE:0cxx_unicode_literals
   Feature record: CXX_FEATURE:0cxx_uniform_initialization
   Feature record: CXX_FEATURE:0cxx_unrestricted_unions
   Feature record: CXX_FEATURE:0cxx_user_literals
   Feature record: CXX_FEATURE:0cxx_variable_templates
   Feature record: CXX_FEATURE:0cxx_variadic_macros
   Feature record: CXX_FEATURE:0cxx_variadic_templates
Performing C SOURCE FILE Test FLAG_C_HAVE_SSE2 succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6230f/fast"
/usr/bin/make -f CMakeFiles/cmTC_6230f.dir/build.make CMakeFiles/cmTC_6230f.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6230f.dir/src.c.o
/usr/bin/cc   -DFLAG_C_HAVE_SSE2   -msse2 -o CMakeFiles/cmTC_6230f.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_6230f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6230f.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_HAVE_SSE2    CMakeFiles/cmTC_6230f.dir/src.c.o  -o cmTC_6230f
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_HAVE_SSE2 succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2a584/fast"
/usr/bin/make -f CMakeFiles/cmTC_2a584.dir/build.make CMakeFiles/cmTC_2a584.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2a584.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_HAVE_SSE2   -msse2 -o CMakeFiles/cmTC_2a584.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_2a584
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2a584.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_HAVE_SSE2    CMakeFiles/cmTC_2a584.dir/src.cxx.o  -o cmTC_2a584
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_HAVE_WALL succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_eb318/fast"
/usr/bin/make -f CMakeFiles/cmTC_eb318.dir/build.make CMakeFiles/cmTC_eb318.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_eb318.dir/src.c.o
/usr/bin/cc   -DFLAG_C_HAVE_WALL   -Wall -o CMakeFiles/cmTC_eb318.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_eb318
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eb318.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_HAVE_WALL    CMakeFiles/cmTC_eb318.dir/src.c.o  -o cmTC_eb318
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_HAVE_WALL succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d0ebb/fast"
/usr/bin/make -f CMakeFiles/cmTC_d0ebb.dir/build.make CMakeFiles/cmTC_d0ebb.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_d0ebb.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_HAVE_WALL   -Wall -o CMakeFiles/cmTC_d0ebb.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_d0ebb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d0ebb.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_HAVE_WALL    CMakeFiles/cmTC_d0ebb.dir/src.cxx.o  -o cmTC_d0ebb
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_TYPE_LIMITS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_87a6d/fast"
/usr/bin/make -f CMakeFiles/cmTC_87a6d.dir/build.make CMakeFiles/cmTC_87a6d.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_87a6d.dir/src.c.o
/usr/bin/cc   -DFLAG_C_TYPE_LIMITS   -Wtype-limits -o CMakeFiles/cmTC_87a6d.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_87a6d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_87a6d.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_TYPE_LIMITS    CMakeFiles/cmTC_87a6d.dir/src.c.o  -o cmTC_87a6d
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_TYPE_LIMITS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_54031/fast"
/usr/bin/make -f CMakeFiles/cmTC_54031.dir/build.make CMakeFiles/cmTC_54031.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_54031.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_TYPE_LIMITS   -Wtype-limits -o CMakeFiles/cmTC_54031.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_54031
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_54031.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_TYPE_LIMITS    CMakeFiles/cmTC_54031.dir/src.cxx.o  -o cmTC_54031
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_SIGN_COMPARE succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d6e75/fast"
/usr/bin/make -f CMakeFiles/cmTC_d6e75.dir/build.make CMakeFiles/cmTC_d6e75.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d6e75.dir/src.c.o
/usr/bin/cc   -DFLAG_C_SIGN_COMPARE   -Wsign-compare -o CMakeFiles/cmTC_d6e75.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_d6e75
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d6e75.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_SIGN_COMPARE    CMakeFiles/cmTC_d6e75.dir/src.c.o  -o cmTC_d6e75
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_SIGN_COMPARE succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2a30b/fast"
/usr/bin/make -f CMakeFiles/cmTC_2a30b.dir/build.make CMakeFiles/cmTC_2a30b.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2a30b.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_SIGN_COMPARE   -Wsign-compare -o CMakeFiles/cmTC_2a30b.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_2a30b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2a30b.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_SIGN_COMPARE    CMakeFiles/cmTC_2a30b.dir/src.cxx.o  -o cmTC_2a30b
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_IGNORED_QUALIFIERS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_dbbec/fast"
/usr/bin/make -f CMakeFiles/cmTC_dbbec.dir/build.make CMakeFiles/cmTC_dbbec.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dbbec.dir/src.c.o
/usr/bin/cc   -DFLAG_C_IGNORED_QUALIFIERS   -Wignored-qualifiers -o CMakeFiles/cmTC_dbbec.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_dbbec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dbbec.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_IGNORED_QUALIFIERS    CMakeFiles/cmTC_dbbec.dir/src.c.o  -o cmTC_dbbec
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_IGNORED_QUALIFIERS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5776c/fast"
/usr/bin/make -f CMakeFiles/cmTC_5776c.dir/build.make CMakeFiles/cmTC_5776c.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_5776c.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_IGNORED_QUALIFIERS   -Wignored-qualifiers -o CMakeFiles/cmTC_5776c.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5776c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5776c.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_IGNORED_QUALIFIERS    CMakeFiles/cmTC_5776c.dir/src.cxx.o  -o cmTC_5776c
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_UNINITIALIZED succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d86f8/fast"
/usr/bin/make -f CMakeFiles/cmTC_d86f8.dir/build.make CMakeFiles/cmTC_d86f8.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d86f8.dir/src.c.o
/usr/bin/cc   -DFLAG_C_UNINITIALIZED   -Wuninitialized -o CMakeFiles/cmTC_d86f8.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_d86f8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d86f8.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_UNINITIALIZED    CMakeFiles/cmTC_d86f8.dir/src.c.o  -o cmTC_d86f8
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_UNINITIALIZED succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3b7d7/fast"
/usr/bin/make -f CMakeFiles/cmTC_3b7d7.dir/build.make CMakeFiles/cmTC_3b7d7.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_3b7d7.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_UNINITIALIZED   -Wuninitialized -o CMakeFiles/cmTC_3b7d7.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_3b7d7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3b7d7.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_UNINITIALIZED    CMakeFiles/cmTC_3b7d7.dir/src.cxx.o  -o cmTC_3b7d7
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_LOGICAL_OP succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4e438/fast"
/usr/bin/make -f CMakeFiles/cmTC_4e438.dir/build.make CMakeFiles/cmTC_4e438.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4e438.dir/src.c.o
/usr/bin/cc   -DFLAG_C_LOGICAL_OP   -Wlogical-op -o CMakeFiles/cmTC_4e438.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_4e438
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4e438.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_LOGICAL_OP    CMakeFiles/cmTC_4e438.dir/src.c.o  -o cmTC_4e438
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_LOGICAL_OP succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cd628/fast"
/usr/bin/make -f CMakeFiles/cmTC_cd628.dir/build.make CMakeFiles/cmTC_cd628.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_cd628.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_LOGICAL_OP   -Wlogical-op -o CMakeFiles/cmTC_cd628.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_cd628
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cd628.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_LOGICAL_OP    CMakeFiles/cmTC_cd628.dir/src.cxx.o  -o cmTC_cd628
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_SHADOW succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a322e/fast"
/usr/bin/make -f CMakeFiles/cmTC_a322e.dir/build.make CMakeFiles/cmTC_a322e.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a322e.dir/src.c.o
/usr/bin/cc   -DFLAG_C_SHADOW   -Wshadow -o CMakeFiles/cmTC_a322e.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_a322e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a322e.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_SHADOW    CMakeFiles/cmTC_a322e.dir/src.c.o  -o cmTC_a322e
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_SHADOW succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_40bea/fast"
/usr/bin/make -f CMakeFiles/cmTC_40bea.dir/build.make CMakeFiles/cmTC_40bea.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_40bea.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_SHADOW   -Wshadow -o CMakeFiles/cmTC_40bea.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_40bea
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_40bea.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_SHADOW    CMakeFiles/cmTC_40bea.dir/src.cxx.o  -o cmTC_40bea
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_INIT_SELF succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_21eff/fast"
/usr/bin/make -f CMakeFiles/cmTC_21eff.dir/build.make CMakeFiles/cmTC_21eff.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_21eff.dir/src.c.o
/usr/bin/cc   -DFLAG_C_INIT_SELF   -Winit-self -o CMakeFiles/cmTC_21eff.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_21eff
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21eff.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_INIT_SELF    CMakeFiles/cmTC_21eff.dir/src.c.o  -o cmTC_21eff
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_INIT_SELF succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_da3e5/fast"
/usr/bin/make -f CMakeFiles/cmTC_da3e5.dir/build.make CMakeFiles/cmTC_da3e5.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_da3e5.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_INIT_SELF   -Winit-self -o CMakeFiles/cmTC_da3e5.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_da3e5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da3e5.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_INIT_SELF    CMakeFiles/cmTC_da3e5.dir/src.cxx.o  -o cmTC_da3e5
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_MISSING_DECLARATIONS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_18c50/fast"
/usr/bin/make -f CMakeFiles/cmTC_18c50.dir/build.make CMakeFiles/cmTC_18c50.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_18c50.dir/src.c.o
/usr/bin/cc   -DFLAG_C_MISSING_DECLARATIONS   -Wmissing-declarations -o CMakeFiles/cmTC_18c50.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_18c50
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_18c50.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_MISSING_DECLARATIONS    CMakeFiles/cmTC_18c50.dir/src.c.o  -o cmTC_18c50
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_MISSING_DECLARATIONS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6f912/fast"
/usr/bin/make -f CMakeFiles/cmTC_6f912.dir/build.make CMakeFiles/cmTC_6f912.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_6f912.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_MISSING_DECLARATIONS   -Wmissing-declarations -o CMakeFiles/cmTC_6f912.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_6f912
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6f912.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_MISSING_DECLARATIONS    CMakeFiles/cmTC_6f912.dir/src.cxx.o  -o cmTC_6f912
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_NO_STRICT_ALIASING succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_20b35/fast"
/usr/bin/make -f CMakeFiles/cmTC_20b35.dir/build.make CMakeFiles/cmTC_20b35.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_20b35.dir/src.c.o
/usr/bin/cc   -DFLAG_C_NO_STRICT_ALIASING   -fno-strict-aliasing -o CMakeFiles/cmTC_20b35.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_20b35
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_20b35.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_NO_STRICT_ALIASING    CMakeFiles/cmTC_20b35.dir/src.c.o  -o cmTC_20b35
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_NO_STRICT_ALIASING succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_86a12/fast"
/usr/bin/make -f CMakeFiles/cmTC_86a12.dir/build.make CMakeFiles/cmTC_86a12.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_86a12.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_NO_STRICT_ALIASING   -fno-strict-aliasing -o CMakeFiles/cmTC_86a12.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_86a12
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86a12.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_NO_STRICT_ALIASING    CMakeFiles/cmTC_86a12.dir/src.cxx.o  -o cmTC_86a12
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_NO_EXCEPTIONS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e7b9d/fast"
/usr/bin/make -f CMakeFiles/cmTC_e7b9d.dir/build.make CMakeFiles/cmTC_e7b9d.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e7b9d.dir/src.c.o
/usr/bin/cc   -DFLAG_C_NO_EXCEPTIONS   -fno-exceptions -o CMakeFiles/cmTC_e7b9d.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_e7b9d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e7b9d.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_NO_EXCEPTIONS    CMakeFiles/cmTC_e7b9d.dir/src.c.o  -o cmTC_e7b9d
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_NO_EXCEPTIONS succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_955d8/fast"
/usr/bin/make -f CMakeFiles/cmTC_955d8.dir/build.make CMakeFiles/cmTC_955d8.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_955d8.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_NO_EXCEPTIONS   -fno-exceptions -o CMakeFiles/cmTC_955d8.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_955d8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_955d8.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_NO_EXCEPTIONS    CMakeFiles/cmTC_955d8.dir/src.cxx.o  -o cmTC_955d8
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_VISIBILITY_INLINES_HIDDEN succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1dcb2/fast"
/usr/bin/make -f CMakeFiles/cmTC_1dcb2.dir/build.make CMakeFiles/cmTC_1dcb2.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_1dcb2.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_VISIBILITY_INLINES_HIDDEN   -fvisibility-inlines-hidden -o CMakeFiles/cmTC_1dcb2.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_1dcb2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1dcb2.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_VISIBILITY_INLINES_HIDDEN    CMakeFiles/cmTC_1dcb2.dir/src.cxx.o  -o cmTC_1dcb2
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_VISIBILITY_HIDDEN succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c7cf4/fast"
/usr/bin/make -f CMakeFiles/cmTC_c7cf4.dir/build.make CMakeFiles/cmTC_c7cf4.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c7cf4.dir/src.c.o
/usr/bin/cc   -DFLAG_C_VISIBILITY_HIDDEN   -fvisibility=hidden -o CMakeFiles/cmTC_c7cf4.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_c7cf4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c7cf4.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_VISIBILITY_HIDDEN    CMakeFiles/cmTC_c7cf4.dir/src.c.o  -o cmTC_c7cf4
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_VISIBILITY_HIDDEN succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d3157/fast"
/usr/bin/make -f CMakeFiles/cmTC_d3157.dir/build.make CMakeFiles/cmTC_d3157.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_d3157.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_VISIBILITY_HIDDEN   -fvisibility=hidden -o CMakeFiles/cmTC_d3157.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_d3157
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d3157.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_VISIBILITY_HIDDEN    CMakeFiles/cmTC_d3157.dir/src.cxx.o  -o cmTC_d3157
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_FOMIT_FRAME_POINTER succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e423f/fast"
/usr/bin/make -f CMakeFiles/cmTC_e423f.dir/build.make CMakeFiles/cmTC_e423f.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e423f.dir/src.c.o
/usr/bin/cc   -DFLAG_C_FOMIT_FRAME_POINTER   -fomit-frame-pointer -o CMakeFiles/cmTC_e423f.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_e423f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e423f.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_FOMIT_FRAME_POINTER    CMakeFiles/cmTC_e423f.dir/src.c.o  -o cmTC_e423f
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_FOMIT_FRAME_POINTER succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a407e/fast"
/usr/bin/make -f CMakeFiles/cmTC_a407e.dir/build.make CMakeFiles/cmTC_a407e.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_a407e.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_FOMIT_FRAME_POINTER   -fomit-frame-pointer -o CMakeFiles/cmTC_a407e.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_a407e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a407e.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_FOMIT_FRAME_POINTER    CMakeFiles/cmTC_a407e.dir/src.cxx.o  -o cmTC_a407e
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test FLAG_C_GGDB succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_12d97/fast"
/usr/bin/make -f CMakeFiles/cmTC_12d97.dir/build.make CMakeFiles/cmTC_12d97.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_12d97.dir/src.c.o
/usr/bin/cc   -DFLAG_C_GGDB   -ggdb -o CMakeFiles/cmTC_12d97.dir/src.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_12d97
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_12d97.dir/link.txt --verbose=1
/usr/bin/cc  -DFLAG_C_GGDB    CMakeFiles/cmTC_12d97.dir/src.c.o  -o cmTC_12d97
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test FLAG_CXX_GGDB succeeded with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0453f/fast"
/usr/bin/make -f CMakeFiles/cmTC_0453f.dir/build.make CMakeFiles/cmTC_0453f.dir/build
make[1]: Entering directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_0453f.dir/src.cxx.o
/usr/bin/c++    -DFLAG_CXX_GGDB   -ggdb -o CMakeFiles/cmTC_0453f.dir/src.cxx.o -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_0453f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0453f.dir/link.txt --verbose=1
/usr/bin/c++   -DFLAG_CXX_GGDB    CMakeFiles/cmTC_0453f.dir/src.cxx.o  -o cmTC_0453f
make[1]: Leaving directory '/home/harry/dolphin/build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7a86d/fast"
/usr/bin/make -f CMakeFiles/cmTC_7a86d.dir/build.make CMakeFiles/cmTC_7a86d.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_7a86d.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_7a86d.dir/CheckIncludeFile.c.o   -c /home/harry/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_7a86d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7a86d.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_7a86d.dir/CheckIncludeFile.c.o  -o cmTC_7a86d
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_af238/fast"
/usr/bin/make -f CMakeFiles/cmTC_af238.dir/build.make CMakeFiles/cmTC_af238.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_af238.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_af238.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_af238
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af238.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_af238.dir/CheckFunctionExists.c.o  -o cmTC_af238 -lpthread
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Determining if the function XOpenDisplay exists in the /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_21c81/fast"
/usr/bin/make -f CMakeFiles/cmTC_21c81.dir/build.make CMakeFiles/cmTC_21c81.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_21c81.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=XOpenDisplay   -o CMakeFiles/cmTC_21c81.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_21c81
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21c81.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=XOpenDisplay    CMakeFiles/cmTC_21c81.dir/CheckFunctionExists.c.o  -o cmTC_21c81 /usr/lib/x86_64-linux-gnu/libX11.so /usr/lib/x86_64-linux-gnu/libXext.so
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Determining if the function gethostbyname exists passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_75fe3/fast"
/usr/bin/make -f CMakeFiles/cmTC_75fe3.dir/build.make CMakeFiles/cmTC_75fe3.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_75fe3.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=gethostbyname   -o CMakeFiles/cmTC_75fe3.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_75fe3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75fe3.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=gethostbyname    CMakeFiles/cmTC_75fe3.dir/CheckFunctionExists.c.o  -o cmTC_75fe3
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Determining if the function connect exists passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e698c/fast"
/usr/bin/make -f CMakeFiles/cmTC_e698c.dir/build.make CMakeFiles/cmTC_e698c.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_e698c.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=connect   -o CMakeFiles/cmTC_e698c.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_e698c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e698c.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=connect    CMakeFiles/cmTC_e698c.dir/CheckFunctionExists.c.o  -o cmTC_e698c
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Determining if the function remove exists passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7fb86/fast"
/usr/bin/make -f CMakeFiles/cmTC_7fb86.dir/build.make CMakeFiles/cmTC_7fb86.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_7fb86.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=remove   -o CMakeFiles/cmTC_7fb86.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_7fb86
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7fb86.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=remove    CMakeFiles/cmTC_7fb86.dir/CheckFunctionExists.c.o  -o cmTC_7fb86
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »


Determining if the function shmat exists passed with the following output:
Change Dir: /home/harry/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f1253/fast"
/usr/bin/make -f CMakeFiles/cmTC_f1253.dir/build.make CMakeFiles/cmTC_f1253.dir/build
make[1] : on entre dans le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »
Building C object CMakeFiles/cmTC_f1253.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=shmat   -o CMakeFiles/cmTC_f1253.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_f1253
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1253.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=shmat    CMakeFiles/cmTC_f1253.dir/CheckFunctionExists.c.o  -o cmTC_f1253
make[1] : on quitte le répertoire « /home/harry/dolphin/build/CMakeFiles/CMakeTmp »

Thanks for any support and answer, see ya'.  Heart

Edit :
Code:
sudo apt install -y cmake pkg-config git libao-dev libasound2-dev libavcodec-dev libavformat-dev libbluetooth-dev libenet-dev libgtk2.0-dev liblzo2-dev libminiupnpc-dev libopenal-dev libpulse-dev libreadline-dev libsfml-dev libsoil-dev libsoundtouch-dev libswscale-dev libusb-1.0-0-dev libwxbase3.0-dev libwxgtk3.0-dev libxext-dev libxrandr-dev portaudio19-dev zlib1g-dev libudev-dev libevdev-dev "libpolarssl-dev|libmbedtls-dev" libcurl4-openssl-dev libegl1-mesa-dev libpng-dev qtbase5-private-dev

Ubuntu 18.04 x64 - AMD Ryzen 7 3800X 8 Cores (16 Threads) 3,9 Ghz - GeForce RTX 2080 Ti - 32 GB RAM (2x16GB)
Dolphin 5.0-12031 (at least I try to use it XD)
Find
Reply
05-18-2020, 12:40 AM
#2
Shonumi Offline
Linux User/Tester
**********
Administrators
Posts: 6,479
Threads: 54
Joined: Dec 2011
Looks like CMake is complaining about libxi not being found. You'll need to install that package if you haven't already. On Ubuntu, I think you can do something like this from the command line:

Code:
sudo apt-get install libxi-dev

That should get CMake to stop complaining about libxi at the very least.
Website Find
Reply
05-18-2020, 02:08 AM
#3
KHg8m3r Offline
Doesn't sleep, just Dolphin and Robots
*******
Posts: 5,842
Threads: 4
Joined: Sep 2013
If you run into any other package dependency problems, the cmake output actually tells you what package is missing, you don't need the full cmake log.

I'd take a look at this wiki page https://wiki.dolphin-emu.org/index.php?title=Building_Dolphin_on_Linux for a list of what packages you should have. The packages listed for Ubuntu 16.04 apply to 18.04 as well, so if you run into any more missing dependencies I'd recommend trying that first.
Find
Reply
05-18-2020, 03:06 AM
#4
Barabbas Offline
Junior Member
**
Posts: 15
Threads: 2
Joined: May 2020
Thanks Shonumi & KHg8m3r for your support, very kind to you Wink


After installing the dep you've suggested to me :


Code:
reinie@MS-7C37:~/dolphin/build$ cmake ..
-- Detected architecture: x86_64
-- Xrandr not found
-- X11 support enabled
-- EGL OpenGL interface enabled
-- Could NOT find FFmpeg (missing: FFmpeg_INCLUDE_avcodec FFmpeg_LIBRARY_avcodec FFmpeg_INCLUDE_avformat FFmpeg_LIBRARY_avformat FFmpeg_INCLUDE_avutil FFmpeg_LIBRARY_avutil FFmpeg_INCLUDE_swscale FFmpeg_LIBRARY_swscale avcodec avformat avutil swscale)
-- libav/ffmpeg not found, disabling AVI frame dumps
-- Could NOT find LIBUDEV (missing: LIBUDEV_LIBRARY LIBUDEV_INCLUDE_DIR)
-- Could NOT find libevdev (missing: LIBEVDEV_LIBRARY LIBEVDEV_INCLUDE_DIR)
CMake Error at CMakeLists.txt:493 (message):
  Couldn't find libevdev and/or libudev.  Can't build evdev controller
  backend.

  Disable ENABLE_EVDEV if you wish to build without controller support


-- Configuring incomplete, errors occurred!
See also "/home/harry/dolphin/build/CMakeFiles/CMakeOutput.log".
See also "/home/harry/dolphin/build/CMakeFiles/CMakeError.log".
Find
Reply
05-18-2020, 03:31 AM
#5
Shonumi Offline
Linux User/Tester
**********
Administrators
Posts: 6,479
Threads: 54
Joined: Dec 2011
Looks like you're missing libudev and libevdev which Dolphin uses for controller input. Assuming you want controller support, try the following:

Code:
sudo apt-get install libudev-dev libevdev-dev
Website Find
Reply
05-18-2020, 04:21 AM (This post was last modified: 05-18-2020, 04:23 AM by KHg8m3r.)
#6
KHg8m3r Offline
Doesn't sleep, just Dolphin and Robots
*******
Posts: 5,842
Threads: 4
Joined: Sep 2013
Since you're also missing xrandr and libav, run this whole block again just to make sure you're not missing something else that will fail once you get to the make command:
Code:
sudo apt install cmake pkg-config git libao-dev libasound2-dev libavcodec-dev libavformat-dev libbluetooth-dev libenet-dev libgtk2.0-dev liblzo2-dev libminiupnpc-dev libopenal-dev libpulse-dev libreadline-dev libsfml-dev libsoil-dev libsoundtouch-dev libswscale-dev libusb-1.0-0-dev libwxbase3.0-dev libwxgtk3.0-dev libxext-dev libxrandr-dev portaudio19-dev zlib1g-dev libudev-dev libevdev-dev "libpolarssl-dev|libmbedtls-dev" libcurl4-openssl-dev libegl1-mesa-dev libpng-dev qtbase5-private-dev

Important: Reboot your computer after you run that.
Then delete the build folder you created, and run the following again:
Code:
cd dolphin
mkdir build
cd build
cmake ..
make
sudo make install
Find
Reply
05-18-2020, 08:26 PM
#7
Barabbas Offline
Junior Member
**
Posts: 15
Threads: 2
Joined: May 2020
Thanks for your support, now I can compile it. Smile

1/ Install the dependencies
Code:
sudo apt install -y cmake pkg-config git libao-dev libasound2-dev libavcodec-dev libavformat-dev libbluetooth-dev libenet-dev libgtk2.0-dev liblzo2-dev libminiupnpc-dev libopenal-dev libpulse-dev libreadline-dev libsfml-dev libsoil-dev libsoundtouch-dev libswscale-dev libusb-1.0-0-dev libwxbase3.0-dev libwxgtk3.0-dev libxext-dev libxrandr-dev portaudio19-dev zlib1g-dev libudev-dev libevdev-dev "libpolarssl-dev|libmbedtls-dev" libcurl4-openssl-dev libegl1-mesa-dev libpng-dev qtbase5-private-dev libudev-dev libevdev-dev xrandr ffmpeg libxi-dev checkinstall
# "ffmpeg" dependencies look to replacing libav's ones (the terminal noticed me with that message when trying to install libav-tools)

2/ Compiling
Code:
git clone https://github.com/dolphin-emu/dolphin.git
cd dolphin
mkdir build
cd build
cmake ..
make

3/ Installing or make a package
To install :
Code:
sudo make install -y

To build a .deb package :
Code:
sudo checkinstall -y
#the .deb will be located in : ~/dolphin/build/build_***********.deb
Find
Reply
« Next Oldest | Next Newest »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode