Dolphin, the GameCube and Wii emulator - Forums
-- Configuring incomplete, errors occurred! - Printable Version

+- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org)
+-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support)
+--- Forum: Support (https://forums.dolphin-emu.org/Forum-support)
+--- Thread: -- Configuring incomplete, errors occurred! (/Thread-configuring-incomplete-errors-occurred)



-- Configuring incomplete, errors occurred! - mecookiesgood - 12-30-2022

I'm trying to build Dolphin following these instructions: https://github.com/dolphin-emu/dolphin/wiki/Building-for-Linux

However it fails to build with error in title. Thank you for any help you can provide - here is the output from CMakeError.log:

Code:
Performing C SOURCE FILE Test FLAG_C_VISIBILITY_INLINES_HIDDEN failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_68112/fast && /usr/bin/make -f CMakeFiles/cmTC_68112.dir/build.make CMakeFiles/cmTC_68112.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_68112.dir/src.c.o
/usr/bin/gcc-10   -mcpu=native -DFLAG_C_VISIBILITY_INLINES_HIDDEN   -Werror -fvisibility-inlines-hidden -o CMakeFiles/cmTC_68112.dir/src.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c
gcc-10: warning: '-mcpu=' is deprecated; use '-mtune=' or '-march=' instead
cc1: error: command-line option '-fvisibility-inlines-hidden' is valid for C++/ObjC++ but not for C [-Werror]
cc1: all warnings being treated as errors
make[1]: *** [CMakeFiles/cmTC_68112.dir/build.make:66: CMakeFiles/cmTC_68112.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_68112/fast] Error 2


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

Run Build Command(s):/usr/bin/make cmTC_84ad2/fast && /usr/bin/make -f CMakeFiles/cmTC_84ad2.dir/build.make CMakeFiles/cmTC_84ad2.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_84ad2.dir/src.c.o
/usr/bin/gcc-10   -mcpu=native -DCMAKE_HAVE_LIBC_PTHREAD   -o CMakeFiles/cmTC_84ad2.dir/src.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
Linking C executable cmTC_84ad2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_84ad2.dir/link.txt --verbose=1
/usr/bin/gcc-10 -mcpu=native -DCMAKE_HAVE_LIBC_PTHREAD    CMakeFiles/cmTC_84ad2.dir/src.c.o  -o cmTC_84ad2
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/usr/bin/ld: CMakeFiles/cmTC_84ad2.dir/src.c.o: in function `main':
src.c:(.text+0x46): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_84ad2.dir/build.make:87: cmTC_84ad2] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_84ad2/fast] Error 2


Source file was:
#include <pthread.h>

void* test_func(void* data)
{
  return data;
}

int main(void)
{
  pthread_t thread;
  pthread_create(&thread, NULL, test_func, NULL);
  pthread_detach(thread);
  pthread_join(thread, NULL);
  pthread_atfork(NULL, NULL, NULL);
  pthread_exit(NULL);

  return 0;
}

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

Run Build Command(s):/usr/bin/make cmTC_47d63/fast && /usr/bin/make -f CMakeFiles/cmTC_47d63.dir/build.make CMakeFiles/cmTC_47d63.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_47d63.dir/CheckFunctionExists.c.o
/usr/bin/gcc-10   -mcpu=native -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_47d63.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
Linking C executable cmTC_47d63
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_47d63.dir/link.txt --verbose=1
/usr/bin/gcc-10 -mcpu=native -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_47d63.dir/CheckFunctionExists.c.o  -o cmTC_47d63  -lpthreads
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_47d63.dir/build.make:87: cmTC_47d63] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_47d63/fast] Error 2



Performing C SOURCE FILE Test FLAG_C_CXX11 failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_19a09/fast && /usr/bin/make -f CMakeFiles/cmTC_19a09.dir/build.make CMakeFiles/cmTC_19a09.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_19a09.dir/src.c.o
/usr/bin/gcc-10   -mcpu=native -DFLAG_C_CXX11   -Werror -std=c++11 -o CMakeFiles/cmTC_19a09.dir/src.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c
gcc-10: warning: '-mcpu=' is deprecated; use '-mtune=' or '-march=' instead
cc1: error: command-line option '-std=c++11' is valid for C++/ObjC++ but not for C [-Werror]
cc1: all warnings being treated as errors
make[1]: *** [CMakeFiles/cmTC_19a09.dir/build.make:66: CMakeFiles/cmTC_19a09.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_19a09/fast] Error 2


Source file was:
int main(void) { return 0; }
Determining if the include file lzma.h exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_fecdd/fast && /usr/bin/make -f CMakeFiles/cmTC_fecdd.dir/build.make CMakeFiles/cmTC_fecdd.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fecdd.dir/CheckIncludeFile.c.o
/usr/bin/gcc-10   -mcpu=native    -o CMakeFiles/cmTC_fecdd.dir/CheckIncludeFile.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: lzma.h: No such file or directory
    1 | #include <lzma.h>
      |          ^~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_fecdd.dir/build.make:66: CMakeFiles/cmTC_fecdd.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_fecdd/fast] Error 2



Determining if the include file zstd.h exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_5cade/fast && /usr/bin/make -f CMakeFiles/cmTC_5cade.dir/build.make CMakeFiles/cmTC_5cade.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5cade.dir/CheckIncludeFile.c.o
/usr/bin/gcc-10   -mcpu=native    -o CMakeFiles/cmTC_5cade.dir/CheckIncludeFile.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: zstd.h: No such file or directory
    1 | #include <zstd.h>
      |          ^~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_5cade.dir/build.make:66: CMakeFiles/cmTC_5cade.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_5cade/fast] Error 2



Determining if the include file sys/sdt.h exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_b782a/fast && /usr/bin/make -f CMakeFiles/cmTC_b782a.dir/build.make CMakeFiles/cmTC_b782a.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b782a.dir/CheckIncludeFile.c.o
/usr/bin/gcc-10   -mcpu=native    -std=c11 -o CMakeFiles/cmTC_b782a.dir/CheckIncludeFile.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: sys/sdt.h: No such file or directory
    1 | #include <sys/sdt.h>
      |          ^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_b782a.dir/build.make:66: CMakeFiles/cmTC_b782a.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_b782a/fast] Error 2



Performing C SOURCE FILE Test HAVE_VPCLMULQDQ_INTRIN failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_dda12/fast && /usr/bin/make -f CMakeFiles/cmTC_dda12.dir/build.make CMakeFiles/cmTC_dda12.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dda12.dir/src.c.o
/usr/bin/gcc-10   -mcpu=native -DHAVE_VPCLMULQDQ_INTRIN -mvpclmulqdq   -std=c11 -o CMakeFiles/cmTC_dda12.dir/src.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c:3:25: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi]
    3 |                 __m512i a = _mm512_setzero_si512();
      |                         ^
In file included from /usr/lib/gcc/x86_64-linux-gnu/10/include/immintrin.h:55,
                 from /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c:1:
/usr/lib/gcc/x86_64-linux-gnu/10/include/avx512fintrin.h:339:1: error: inlining failed in call to ‘always_inline’ ‘_mm512_setzero_si512’: target specific option mismatch
  339 | _mm512_setzero_si512 (void)
      | ^~~~~~~~~~~~~~~~~~~~
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c:4:29: note: called from here
    4 |                 __m512i b = _mm512_setzero_si512();
      |                             ^~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/lib/gcc/x86_64-linux-gnu/10/include/immintrin.h:55,
                 from /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c:1:
/usr/lib/gcc/x86_64-linux-gnu/10/include/avx512fintrin.h:339:1: error: inlining failed in call to ‘always_inline’ ‘_mm512_setzero_si512’: target specific option mismatch
  339 | _mm512_setzero_si512 (void)
      | ^~~~~~~~~~~~~~~~~~~~
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c:3:29: note: called from here
    3 |                 __m512i a = _mm512_setzero_si512();
      |                             ^~~~~~~~~~~~~~~~~~~~~~
make[1]: *** [CMakeFiles/cmTC_dda12.dir/build.make:66: CMakeFiles/cmTC_dda12.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_dda12/fast] Error 2


Source file was:
#include <immintrin.h>
            int main(void) {
                __m512i a = _mm512_setzero_si512();
                __m512i b = _mm512_setzero_si512();
                __m512i c = _mm512_clmulepi64_epi128(a, b, 0x10);
                (void)c;
                return 0;
            }
Determining if files jack/jack.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_866cf/fast && /usr/bin/make -f CMakeFiles/cmTC_866cf.dir/build.make CMakeFiles/cmTC_866cf.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_866cf.dir/USE_JACK.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_866cf.dir/USE_JACK.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_JACK.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_JACK.c:2:10: fatal error: jack/jack.h: No such file or directory
    2 | #include <jack/jack.h>
      |          ^~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_866cf.dir/build.make:66: CMakeFiles/cmTC_866cf.dir/USE_JACK.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_866cf/fast] Error 2


Source:
/* */
#include <jack/jack.h>


int main(void){return 0;}

Determining if files AudioUnit/AudioUnit.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_3ef51/fast && /usr/bin/make -f CMakeFiles/cmTC_3ef51.dir/build.make CMakeFiles/cmTC_3ef51.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3ef51.dir/USE_AUDIOUNIT.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_3ef51.dir/USE_AUDIOUNIT.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_AUDIOUNIT.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_AUDIOUNIT.c:2:10: fatal error: AudioUnit/AudioUnit.h: No such file or directory
    2 | #include <AudioUnit/AudioUnit.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_3ef51.dir/build.make:66: CMakeFiles/cmTC_3ef51.dir/USE_AUDIOUNIT.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_3ef51/fast] Error 2


Source:
/* */
#include <AudioUnit/AudioUnit.h>


int main(void){return 0;}

Determining if files audioclient.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_054df/fast && /usr/bin/make -f CMakeFiles/cmTC_054df.dir/build.make CMakeFiles/cmTC_054df.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_054df.dir/USE_WASAPI.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_054df.dir/USE_WASAPI.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_WASAPI.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_WASAPI.c:2:10: fatal error: audioclient.h: No such file or directory
    2 | #include <audioclient.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_054df.dir/build.make:66: CMakeFiles/cmTC_054df.dir/USE_WASAPI.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_054df/fast] Error 2


Source:
/* */
#include <audioclient.h>


int main(void){return 0;}

Determining if files windows.h;mmsystem.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_fd544/fast && /usr/bin/make -f CMakeFiles/cmTC_fd544.dir/build.make CMakeFiles/cmTC_fd544.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fd544.dir/USE_WINMM.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_fd544.dir/USE_WINMM.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_WINMM.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_WINMM.c:2:10: fatal error: windows.h: No such file or directory
    2 | #include <windows.h>
      |          ^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_fd544.dir/build.make:66: CMakeFiles/cmTC_fd544.dir/USE_WINMM.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_fd544/fast] Error 2


Source:
/* */
#include <windows.h>
#include <mmsystem.h>


int main(void){return 0;}

Determining if files SLES/OpenSLES.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_0cd45/fast && /usr/bin/make -f CMakeFiles/cmTC_0cd45.dir/build.make CMakeFiles/cmTC_0cd45.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0cd45.dir/USE_OPENSL.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_0cd45.dir/USE_OPENSL.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_OPENSL.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_OPENSL.c:2:10: fatal error: SLES/OpenSLES.h: No such file or directory
    2 | #include <SLES/OpenSLES.h>
      |          ^~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_0cd45.dir/build.make:66: CMakeFiles/cmTC_0cd45.dir/USE_OPENSL.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_0cd45/fast] Error 2


Source:
/* */
#include <SLES/OpenSLES.h>


int main(void){return 0;}

Determining if files android/log.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_d56e7/fast && /usr/bin/make -f CMakeFiles/cmTC_d56e7.dir/build.make CMakeFiles/cmTC_d56e7.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d56e7.dir/USE_AUDIOTRACK.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_d56e7.dir/USE_AUDIOTRACK.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_AUDIOTRACK.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_AUDIOTRACK.c:2:10: fatal error: android/log.h: No such file or directory
    2 | #include <android/log.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_d56e7.dir/build.make:66: CMakeFiles/cmTC_d56e7.dir/USE_AUDIOTRACK.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_d56e7/fast] Error 2


Source:
/* */
#include <android/log.h>


int main(void){return 0;}

Determining if files sys/audioio.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_d6747/fast && /usr/bin/make -f CMakeFiles/cmTC_d6747.dir/build.make CMakeFiles/cmTC_d6747.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d6747.dir/USE_SUN.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_d6747.dir/USE_SUN.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_SUN.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_SUN.c:2:10: fatal error: sys/audioio.h: No such file or directory
    2 | #include <sys/audioio.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_d6747.dir/build.make:66: CMakeFiles/cmTC_d6747.dir/USE_SUN.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_d6747/fast] Error 2


Source:
/* */
#include <sys/audioio.h>


int main(void){return 0;}

Determining if files kai.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_c6fac/fast && /usr/bin/make -f CMakeFiles/cmTC_c6fac.dir/build.make CMakeFiles/cmTC_c6fac.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c6fac.dir/USE_KAI.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-unused-parameter    -std=gnu99 -o CMakeFiles/cmTC_c6fac.dir/USE_KAI.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_KAI.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/USE_KAI.c:2:10: fatal error: kai.h: No such file or directory
    2 | #include <kai.h>
      |          ^~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_c6fac.dir/build.make:66: CMakeFiles/cmTC_c6fac.dir/USE_KAI.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_c6fac/fast] Error 2


Source:
/* */
#include <kai.h>


int main(void){return 0;}

Performing C++ SOURCE FILE Test MBEDTLS_VERSION_OK failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_79636/fast && /usr/bin/make -f CMakeFiles/cmTC_79636.dir/build.make CMakeFiles/cmTC_79636.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_79636.dir/src.cxx.o
/usr/bin/g++-10    -mcpu=native -DMBEDTLS_VERSION_OK   -o CMakeFiles/cmTC_79636.dir/src.cxx.o -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
g++-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.cxx:2:11: fatal error: mbedtls/version.h: No such file or directory
    2 |  #include <mbedtls/version.h>
      |           ^~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_79636.dir/build.make:66: CMakeFiles/cmTC_79636.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_79636/fast] Error 2


Source file was:

    #include <mbedtls/version.h>
    #if MBEDTLS_VERSION_NUMBER < 0x021C0000
    #error "Your mbed TLS version is too old."
    #endif
    int main() {}
Determining if the function strlcpy exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_f0b93/fast && /usr/bin/make -f CMakeFiles/cmTC_f0b93.dir/build.make CMakeFiles/cmTC_f0b93.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f0b93.dir/CheckFunctionExists.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -DCHECK_FUNCTION_EXISTS=strlcpy   -std=c99 -o CMakeFiles/cmTC_f0b93.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
Linking C executable cmTC_f0b93
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0b93.dir/link.txt --verbose=1
/usr/bin/gcc-10 -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -DCHECK_FUNCTION_EXISTS=strlcpy    CMakeFiles/cmTC_f0b93.dir/CheckFunctionExists.c.o  -o cmTC_f0b93
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/usr/bin/ld: CMakeFiles/cmTC_f0b93.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `strlcpy'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_f0b93.dir/build.make:87: cmTC_f0b93] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_f0b93/fast] Error 2



Determining if the function snprintf_l exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_b00e9/fast && /usr/bin/make -f CMakeFiles/cmTC_b00e9.dir/build.make CMakeFiles/cmTC_b00e9.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b00e9.dir/CheckFunctionExists.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -DCHECK_FUNCTION_EXISTS=snprintf_l   -std=c99 -o CMakeFiles/cmTC_b00e9.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
Linking C executable cmTC_b00e9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b00e9.dir/link.txt --verbose=1
/usr/bin/gcc-10 -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -DCHECK_FUNCTION_EXISTS=snprintf_l    CMakeFiles/cmTC_b00e9.dir/CheckFunctionExists.c.o  -o cmTC_b00e9
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/usr/bin/ld: CMakeFiles/cmTC_b00e9.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `snprintf_l'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_b00e9.dir/build.make:87: cmTC_b00e9] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_b00e9/fast] Error 2



Determining if files xlocale.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_56fc1/fast && /usr/bin/make -f CMakeFiles/cmTC_56fc1.dir/build.make CMakeFiles/cmTC_56fc1.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_56fc1.dir/HAVE_XLOCALE.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration    -std=c99 -o CMakeFiles/cmTC_56fc1.dir/HAVE_XLOCALE.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/HAVE_XLOCALE.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/HAVE_XLOCALE.c:2:10: fatal error: xlocale.h: No such file or directory
    2 | #include <xlocale.h>
      |          ^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_56fc1.dir/build.make:66: CMakeFiles/cmTC_56fc1.dir/HAVE_XLOCALE.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_56fc1/fast] Error 2


Source:
/* */
#include <xlocale.h>


int main(void){return 0;}

Determining if files pthread_np.h exist failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_a4655/fast && /usr/bin/make -f CMakeFiles/cmTC_a4655.dir/build.make CMakeFiles/cmTC_a4655.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a4655.dir/HAVE_PTHREAD_NP_H.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -pthread    -std=c99 -o CMakeFiles/cmTC_a4655.dir/HAVE_PTHREAD_NP_H.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/HAVE_PTHREAD_NP_H.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/home/squishy/.portable/dolphin/build/CMakeFiles/CheckIncludeFiles/HAVE_PTHREAD_NP_H.c:2:10: fatal error: pthread_np.h: No such file or directory
    2 | #include <pthread_np.h>
      |          ^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_a4655.dir/build.make:66: CMakeFiles/cmTC_a4655.dir/HAVE_PTHREAD_NP_H.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_a4655/fast] Error 2


Source:
/* */
#include <pthread_np.h>


int main(void){return 0;}

Determining if the function pthread_set_name_np exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_3e362/fast && /usr/bin/make -f CMakeFiles/cmTC_3e362.dir/build.make CMakeFiles/cmTC_3e362.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3e362.dir/CheckFunctionExists.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -pthread -DCHECK_FUNCTION_EXISTS=pthread_set_name_np   -std=c99 -o CMakeFiles/cmTC_3e362.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
Linking C executable cmTC_3e362
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3e362.dir/link.txt --verbose=1
/usr/bin/gcc-10 -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -pthread -DCHECK_FUNCTION_EXISTS=pthread_set_name_np    CMakeFiles/cmTC_3e362.dir/CheckFunctionExists.c.o  -o cmTC_3e362
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/usr/bin/ld: CMakeFiles/cmTC_3e362.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `pthread_set_name_np'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_3e362.dir/build.make:87: cmTC_3e362] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_3e362/fast] Error 2



Determining if the function crc32 exists failed with the following output:
Change Dir: /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_16e26/fast && /usr/bin/make -f CMakeFiles/cmTC_16e26.dir/build.make CMakeFiles/cmTC_16e26.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_16e26.dir/CheckFunctionExists.c.o
/usr/bin/gcc-10   -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -pthread -DCHECK_FUNCTION_EXISTS=crc32   -std=c99 -o CMakeFiles/cmTC_16e26.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
Linking C executable cmTC_16e26
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_16e26.dir/link.txt --verbose=1
/usr/bin/gcc-10 -mcpu=native -Wall -Wextra -Wno-missing-field-initializers -Werror=implicit-function-declaration -pthread -DCHECK_FUNCTION_EXISTS=crc32    CMakeFiles/cmTC_16e26.dir/CheckFunctionExists.c.o  -o cmTC_16e26
gcc-10: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
/usr/bin/ld: CMakeFiles/cmTC_16e26.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `crc32'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_16e26.dir/build.make:87: cmTC_16e26] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_16e26/fast] Error 2



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

Run Build Command(s):/usr/bin/make cmTC_264e7/fast && /usr/bin/make -f CMakeFiles/cmTC_264e7.dir/build.make CMakeFiles/cmTC_264e7.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_264e7.dir/src.c.o
/usr/bin/gcc-10   -mcpu=native -DFLAG_C_MISSING_VARIABLE_DECLARATIONS   -Werror -Wmissing-variable-declarations -o CMakeFiles/cmTC_264e7.dir/src.c.o   -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.c
gcc-10: warning: '-mcpu=' is deprecated; use '-mtune=' or '-march=' instead
gcc-10: error: unrecognized command-line option '-Wmissing-variable-declarations'; did you mean '-Wmissing-declarations'?
make[1]: *** [CMakeFiles/cmTC_264e7.dir/build.make:66: CMakeFiles/cmTC_264e7.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_264e7/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/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_30887/fast && /usr/bin/make -f CMakeFiles/cmTC_30887.dir/build.make CMakeFiles/cmTC_30887.dir/build
make[1]: Entering directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_30887.dir/src.cxx.o
/usr/bin/g++-10    -mcpu=native -DFLAG_CXX_MISSING_VARIABLE_DECLARATIONS   -Werror -Wmissing-variable-declarations -std=c++2a -o CMakeFiles/cmTC_30887.dir/src.cxx.o -c /home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp/src.cxx
g++-10: warning: '-mcpu=' is deprecated; use '-mtune=' or '-march=' instead
g++-10: error: unrecognized command-line option '-Wmissing-variable-declarations'; did you mean '-Wmissing-declarations'?
make[1]: *** [CMakeFiles/cmTC_30887.dir/build.make:66: CMakeFiles/cmTC_30887.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_30887/fast] Error 2


Source file was:
int main() { return 0; }



RE: -- Configuring incomplete, errors occurred! - GenerationI - 12-31-2022

I'm not a developer, but I just happened to build the latest version this morning in Linux Mint 21 (based on Ubuntu), since I hadn't updated it for weeks. It worked, except that I had to append "--recursive" to the submodule update (as stated in an error message). My build tools are:

git
cmake
make
gcc-11
g++-11
pkg-config

Maybe updating your compiler to version 11 might solve your problem, or at least eliminate one possible cause.


RE: -- Configuring incomplete, errors occurred! - mecookiesgood - 12-31-2022

(12-31-2022, 03:48 AM)GenerationI Wrote: I'm not a developer, but I just happened to build the latest version this morning in Linux Mint  21 (based on Ubuntu), since I hadn't updated it for weeks. It worked, except that I had to append "--recursive" to the submodule update (as stated in an error message). My build tools are:

git
cmake
make
gcc-11
g++-11
pkg-config

Maybe updating your compiler to version 11 might solve your problem, or at least eliminate one possible cause.

Here's the output from terminal, if it makes it any easier to interpret. I have to admit a lot of it is greek to me:

Code:
squishy@squishy-Inspiron-5537:~/.portable/dolphin/build$ cmake .. -DLINUX_LOCAL_DEV=true -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-mcpu=native -DCMAKE_C_FLAGS=-mcpu=native

-- The C compiler identification is GNU 10.3.0
-- The CXX compiler identification is GNU 10.3.0
-- Check for working C compiler: /usr/bin/gcc-10
-- Check for working C compiler: /usr/bin/gcc-10 -- 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/g++-10
-- Check for working CXX compiler: /usr/bin/g++-10 -- 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.25.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_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
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- 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   
-- Found X11: /usr/include   
-- 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
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Xrandr found
-- Checking for module 'xi>=1.5.0'
--   Found xi, version 1.7.10
-- X11 support enabled
-- Checking for module 'egl'
--   Found egl, version 1.5
-- Found EGL: /usr/include  
-- EGL OpenGL interface enabled
--  Found avcodec: /usr/include/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/libavcodec.so
--  Found avformat: /usr/include/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/libavformat.so
--  Found avutil: /usr/include/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/libavutil.so
--  Found swresample: /usr/include/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/libswresample.so
--  Found swscale: /usr/include/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/libswscale.so
-- Found FFmpeg: /usr/include/x86_64-linux-gnu  found components: avcodec avformat avutil swresample swscale
-- libav/ffmpeg found, enabling AVI frame dumps
-- Found LIBUDEV: /usr/lib/x86_64-linux-gnu/libudev.so  
-- Found LIBEVDEV: /usr/lib/x86_64-linux-gnu/libevdev.so  
-- libevdev/libudev found, enabling evdev controller backend
-- Using named pipes as controller inputs
-- Watching game memory for changes
-- Enabling analytics collection (subject to end-user opt-in)
-- Enabling automatic update support
-- Performing Test FLAG_C_CXX11
-- Performing Test FLAG_C_CXX11 - Failed
-- Performing Test FLAG_CXX_CXX11
-- Performing Test FLAG_CXX_CXX11 - Success
CMake Warning at CMakeLists.txt:687 (find_package):
  Could not find a configuration file for package "fmt" that is compatible
  with requested version "8".

  The following configuration files were considered but not accepted:

    /usr/lib/x86_64-linux-gnu/cmake/fmt/fmt-config.cmake, version: 6.1.2
    /lib/x86_64-linux-gnu/cmake/fmt/fmt-config.cmake, version: 6.1.2



-- Using static fmt from Externals
-- Module support is disabled.
-- Version: 9.1.0
-- Build type: Release
-- CXX_STANDARD: 11
-- Performing Test has_std_11_flag
-- Performing Test has_std_11_flag - Success
-- Performing Test has_std_0x_flag
-- Performing Test has_std_0x_flag - Success
-- Required features: cxx_variadic_templates
-- Could NOT find pugixml (missing: pugixml_LIBRARIES pugixml_INCLUDE_DIRS)
-- Using static pugixml from Externals
-- Using static enet from Externals
-- Looking for fcntl
-- Looking for fcntl - found
-- Looking for poll
-- Looking for poll - found
-- Looking for getaddrinfo
-- Looking for getaddrinfo - found
-- Looking for getnameinfo
-- Looking for getnameinfo - found
-- Looking for gethostbyname_r
-- Looking for gethostbyname_r - found
-- Looking for gethostbyaddr_r
-- Looking for gethostbyaddr_r - found
-- Looking for inet_pton
-- Looking for inet_pton - found
-- Looking for inet_ntop
-- Looking for inet_ntop - found
-- Performing Test HAS_MSGHDR_FLAGS
-- Performing Test HAS_MSGHDR_FLAGS - Success
-- Check size of socklen_t
-- Check size of socklen_t - done
-- Using static xxhash from Externals
-- Could NOT find BZip2 (missing: BZIP2_LIBRARIES BZIP2_INCLUDE_DIR)
-- Shared bzip2 not found, falling back to the static library
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of off64_t
-- Check size of off64_t - done
-- Looking for fseeko
-- Looking for fseeko - found
-- Looking for unistd.h
-- Looking for unistd.h - found
-- Could NOT find LibLZMA (missing: LIBLZMA_LIBRARY LIBLZMA_INCLUDE_DIR LIBLZMA_HAS_AUTO_DECODER LIBLZMA_HAS_EASY_ENCODER LIBLZMA_HAS_LZMA_PRESET)
-- Looking for lzma.h
-- Looking for lzma.h - not found
-- Shared lzma not found, falling back to the static library
-- Looking for zstd.h
-- Looking for zstd.h - not found
-- Shared zstd not found, falling back to the static library
-- Using CMake version 3.16.3
-- ZLIB_HEADER_VERSION: 1.2.12
-- ZLIBNG_HEADER_VERSION: 2.1.0.devel
-- Arch detected: 'x86_64'
-- Basearch of 'x86_64' has been detected as: 'x86'
-- Performing Test FNO_LTO_AVAILABLE
-- Performing Test FNO_LTO_AVAILABLE - Success
-- Looking for sys/auxv.h
-- Looking for sys/auxv.h - found
-- Looking for sys/sdt.h
-- Looking for sys/sdt.h - not found
-- Looking for strerror
-- Looking for strerror - found
-- Looking for posix_memalign
-- Looking for posix_memalign - found
-- Performing Test HAVE_NO_INTERPOSITION
-- Performing Test HAVE_NO_INTERPOSITION - Success
-- Performing Test HAVE_ATTRIBUTE_VISIBILITY_HIDDEN
-- Performing Test HAVE_ATTRIBUTE_VISIBILITY_HIDDEN - Success
-- Performing Test HAVE_ATTRIBUTE_VISIBILITY_INTERNAL
-- Performing Test HAVE_ATTRIBUTE_VISIBILITY_INTERNAL - Success
-- Performing Test HAVE_BUILTIN_CTZ
-- Performing Test HAVE_BUILTIN_CTZ - Success
-- Performing Test HAVE_BUILTIN_CTZLL
-- Performing Test HAVE_BUILTIN_CTZLL - Success
-- Performing Test HAVE_PTRDIFF_T
-- Performing Test HAVE_PTRDIFF_T - Success
-- Performing Test HAVE_AVX2_INTRIN
-- Performing Test HAVE_AVX2_INTRIN - Success
-- Performing Test HAVE_AVX512_INTRIN
-- Performing Test HAVE_AVX512_INTRIN - Success
-- Performing Test HAVE_MASK_INTRIN
-- Performing Test HAVE_MASK_INTRIN - Success
-- Performing Test HAVE_AVX512VNNI_INTRIN
-- Performing Test HAVE_AVX512VNNI_INTRIN - Success
-- Performing Test HAVE_SSE41_INTRIN
-- Performing Test HAVE_SSE41_INTRIN - Success
-- Performing Test HAVE_SSE42CRC_INLINE_ASM
-- Performing Test HAVE_SSE42CRC_INLINE_ASM - Success
-- Performing Test HAVE_SSE42CRC_INTRIN
-- Performing Test HAVE_SSE42CRC_INTRIN - Success
-- Performing Test HAVE_SSE42CMPSTR_INTRIN
-- Performing Test HAVE_SSE42CMPSTR_INTRIN - Success
-- Performing Test HAVE_SSE2_INTRIN
-- Performing Test HAVE_SSE2_INTRIN - Success
-- Performing Test HAVE_SSSE3_INTRIN
-- Performing Test HAVE_SSSE3_INTRIN - Success
-- Performing Test HAVE_PCLMULQDQ_INTRIN
-- Performing Test HAVE_PCLMULQDQ_INTRIN - Success
-- Performing Test HAVE_VPCLMULQDQ_INTRIN
-- Performing Test HAVE_VPCLMULQDQ_INTRIN - Failed
-- Architecture-specific source files: arch/x86/x86_features.c;arch/x86/slide_hash_avx2.c;arch/x86/chunkset_avx.c;arch/x86/compare256_avx2.c;arch/x86/adler32_avx2.c;arch/x86/adler32_avx512.c;arch/x86/adler32_avx512_vnni.c;arch/x86/chunkset_sse41.c;arch/x86/adler32_sse42.c;arch/x86/insert_string_sse42.c;arch/x86/chunkset_sse2.c;arch/x86/compare256_sse2.c;arch/x86/slide_hash_sse2.c;arch/x86/adler32_ssse3.c;arch/x86/crc32_fold_pclmulqdq.c
-- The following features have been enabled:

 * CMAKE_BUILD_TYPE, Build type: Release (selected)
 * AVX2_SLIDEHASH, Support AVX2 optimized slide_hash, using "-mavx2"
 * AVX_CHUNKSET, Support AVX optimized chunkset, using "-mavx2"
 * AVX2_COMPARE256, Support AVX2 optimized compare256, using "-mavx2"
 * AVX2_ADLER32, Support AVX2-accelerated adler32, using "-mavx2"
 * AVX512_ADLER32, Support AVX512-accelerated adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mtune=cascadelake"
 * AVX512VNNI_ADLER32, Support AVX512VNNI adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mavx512vnni -mtune=cascadelake"
 * SSE42_CRC, Support SSE4.2 optimized CRC hash generation, using "-msse4.2"
 * SSSE3_ADLER32, Support SSSE3-accelerated adler32, using "-mssse3"
 * PCLMUL_CRC, Support CRC hash generation using PCLMULQDQ, using "-mssse3 -msse4.2 -mpclmul"
 * WITH_GZFILEOP, Compile with support for gzFile related functions
 * ZLIB_COMPAT, Compile with zlib compatible API
 * WITH_SANITIZER, Enable sanitizer support
 * WITH_OPTIM, Build with optimisation
 * WITH_NEW_STRATEGIES, Use new strategies
 * WITH_AVX2, Build with AVX2
 * WITH_AVX512, Build with AVX512
 * WITH_AVX512VNNI, Build with AVX512 VNNI
 * WITH_SSE2, Build with SSE2
 * WITH_SSSE3, Build with SSSE3
 * WITH_SSE41, Build with SSE41
 * WITH_SSE42, Build with SSE42
 * WITH_PCLMULQDQ, Build with PCLMULQDQ

-- The following OPTIONAL packages have been found:

 * Git
 * Threads
 * OpenGL
 * Freetype
 * Fontconfig
 * X11
 * EGL
 * FFmpeg
 * PkgConfig

-- The following REQUIRED packages have been found:

 * LIBUDEV
 * LIBEVDEV

-- The following features have been disabled:

 * FORCE_TZCNT, Assume CPU is TZCNT capable
 * ZLIB_SYMBOL_PREFIX, Publicly exported symbols DO NOT have a custom prefix
 * ZLIB_ENABLE_TESTS, Build test binaries
 * WITH_FUZZERS, Build test/fuzz
 * WITH_BENCHMARKS, Build test/benchmarks
 * WITH_BENCHMARK_APPS, Build application benchmarks
 * WITH_NATIVE_INSTRUCTIONS, Instruct the compiler to use the full instruction set on this host (gcc/clang -march=native)
 * WITH_MAINTAINER_WARNINGS, Build with project maintainer warnings
 * WITH_CODE_COVERAGE, Enable code coverage reporting
 * WITH_INFLATE_STRICT, Build with strict inflate distance checking
 * WITH_INFLATE_ALLOW_INVALID_DIST, Build with zero fill for inflate invalid distances
 * WITH_VPCLMULQDQ, Build with VPCLMULQDQ
 * INSTALL_UTILS, Copy minigzip and minideflate during install

-- The following OPTIONAL packages have not been found:

 * fmt (required version >= 8)
 * pugixml
 * BZip2
 * LibLZMA

-- Checking for module 'minizip-ng>=3.0.0'
--   No package 'minizip-ng' found
-- Shared minizip not found, falling back to the static library
-- Looking for inttypes.h
-- Looking for inttypes.h - found
-- Using static lzo from Externals
-- Using static FreeSurround from Externals
-- Could NOT find CUBEB (missing: CUBEB_INCLUDE_DIR CUBEB_LIBRARY)
-- Using static cubeb from Externals
-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY
-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success
-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY
-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success
-- Performing Test COMPILER_HAS_DEPRECATED_ATTR
-- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success
-- Checking for module 'speexdsp'
--   Found speexdsp, version 1.2rc1
CMake Error at Externals/cubeb/CMakeLists.txt:122 (add_library):
  add_library cannot create ALIAS target "speex" because target
  "PkgConfig::speexdsp" is imported but not globally visible.


-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Looking for include file pulse/pulseaudio.h
-- Looking for include file pulse/pulseaudio.h - found
-- Looking for include file alsa/asoundlib.h
-- Looking for include file alsa/asoundlib.h - found
-- Looking for include file jack/jack.h
-- Looking for include file jack/jack.h - not found
-- Looking for include file sndio.h
-- Looking for include file sndio.h - found
-- Looking for include file AudioUnit/AudioUnit.h
-- Looking for include file AudioUnit/AudioUnit.h - not found
-- Looking for include file audioclient.h
-- Looking for include file audioclient.h - not found
-- Looking for include files windows.h, mmsystem.h
-- Looking for include files windows.h, mmsystem.h - not found
-- Looking for include file SLES/OpenSLES.h
-- Looking for include file SLES/OpenSLES.h - not found
-- Looking for include file sys/soundcard.h
-- Looking for include file sys/soundcard.h - found
-- Looking for include file android/log.h
-- Looking for include file android/log.h - not found
-- Looking for include file sys/audioio.h
-- Looking for include file sys/audioio.h - not found
-- Looking for include file kai.h
-- Looking for include file kai.h - not found
-- Checking for module 'libusb-1.0'
--   Found libusb-1.0, version 1.0.23
-- Found libusb-1.0: /usr/include/libusb-1.0, /usr/lib/x86_64-linux-gnu/libusb-1.0.so
-- Using shared LibUSB
-- Could NOT find SFML (missing:  SFML_NETWORK_LIBRARY SFML_SYSTEM_LIBRARY)
-- Using static SFML 2.1 from Externals
-- Could NOT find MINIUPNPC (missing: MINIUPNPC_INCLUDE_DIR MINIUPNPC_LIBRARY MINIUPNPC_API_VERSION)
-- Using static miniupnpc from Externals
-- Performing Test MBEDTLS_VERSION_OK
-- Performing Test MBEDTLS_VERSION_OK - Failed
-- Could NOT find MBEDTLS (missing: MBEDTLS_INCLUDE_DIR MBEDTLS_LIBRARY MBEDX509_LIBRARY MBEDCRYPTO_LIBRARY MBEDTLS_VERSION_OK)
-- Using static mbed TLS from Externals
-- Found Python3: /usr/bin/python3.8 (found version "3.8.10") found components: Interpreter
-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS
-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS - Success
-- Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR)
-- Using static libcurl from Externals
-- Found HIDAPI: /usr/lib/x86_64-linux-gnu/libhidapi-hidraw.so  
-- Using static DiscordRPC from Externals
-- Using static libmgba from Externals
-- Looking for strdup
-- Looking for strdup - found
-- Looking for strlcpy
-- Looking for strlcpy - not found
-- Looking for strndup
-- Looking for strndup - found
-- Looking for vasprintf
-- Looking for vasprintf - found
-- Looking for freelocale
-- Looking for freelocale - found
-- Looking for newlocale
-- Looking for newlocale - found
-- Looking for setlocale
-- Looking for setlocale - found
-- Looking for snprintf_l
-- Looking for snprintf_l - not found
-- Looking for uselocale
-- Looking for uselocale - found
-- Looking for futimens
-- Looking for futimens - found
-- Looking for futimes
-- Looking for futimes - found
-- Looking for localtime_r
-- Looking for localtime_r - found
-- Looking for include file xlocale.h
-- Looking for include file xlocale.h - not found
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Performing Test HAVE_PTHREAD
-- Performing Test HAVE_PTHREAD - Success
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Looking for include file pthread_np.h
-- Looking for include file pthread_np.h - not found
-- Looking for pthread_setname_np
-- Looking for pthread_setname_np - found
-- Looking for pthread_set_name_np
-- Looking for pthread_set_name_np - not found
-- Looking for crc32
-- Looking for crc32 - not found
-- Found SYSTEMD: /lib/x86_64-linux-gnu/libsystemd.so  
-- libsystemd found, enabling traversal server watchdog support
-- Using static gtest from Externals
-- Found PythonInterp: /usr/bin/python (found version "2.7.18")
-- 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 HAS_STRINGOP_TRUNCATION_WARNING
-- Performing Test HAS_STRINGOP_TRUNCATION_WARNING - Success
-- Performing Test FLAG_C_NO_STRINGOP_TRUNCATION
-- Performing Test FLAG_C_NO_STRINGOP_TRUNCATION - Success
-- Performing Test FLAG_CXX_NO_STRINGOP_TRUNCATION
-- Performing Test FLAG_CXX_NO_STRINGOP_TRUNCATION - Success
-- Performing Test HAS_FORMAT_WARNING
-- Performing Test HAS_FORMAT_WARNING - Success
-- Performing Test FLAG_C_FORMAT_WARNING_TO_ERROR
-- Performing Test FLAG_C_FORMAT_WARNING_TO_ERROR - Success
-- Performing Test FLAG_CXX_FORMAT_WARNING_TO_ERROR
-- Performing Test FLAG_CXX_FORMAT_WARNING_TO_ERROR - Success
-- Could NOT find OpenSLES (missing: OPENSLES_LIBRARY OPENSLES_INCLUDE_DIR)
-- Found ALSA: /usr/lib/x86_64-linux-gnu/libasound.so (found version "1.2.2")
-- ALSA found, enabling ALSA sound backend
-- PulseAudio found, enabling PulseAudio sound backend
-- Found BlueZ: /usr/lib/x86_64-linux-gnu/libbluetooth.so  
-- BlueZ found, enabling bluetooth support
-- Check if linker can resolve circular dependencies - FALSE
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE  
-- Found WrapOpenGL: TRUE  
-- Found XKB: /usr/lib/x86_64-linux-gnu/libxkbcommon.so (found suitable version "0.10.0", minimum required is "0.5.0")
-- Found WrapVulkanHeaders: /usr/include  
-- Found Qt version 6.2.2
-- Found Gettext: /usr/bin/msgmerge (found version "0.19.8.1")
-- Configuring incomplete, errors occurred!
See also "/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeOutput.log".
See also "/home/squishy/.portable/dolphin/build/CMakeFiles/CMakeError.log".



RE: -- Configuring incomplete, errors occurred! - MayImilae - 12-31-2022

Small tip: could you put the output into spoiler tags? It's bbcode so it is like the below:

Code:
[spoiler]output here![/spoiler]


Which will give you:



It'll just a lot nicer to parse the thread if you use spoiler tags.


RE: -- Configuring incomplete, errors occurred! - mbc07 - 12-31-2022

You can also use {code}{/code} (replace {} with []), which also preserves the monospaced font typically used on terminals. Thread was a mess so I did just that to your previous posts...


RE: -- Configuring incomplete, errors occurred! - GenerationI - 12-31-2022

Looking at the build instructions just now, I see some things have changed since I last read it. I see in particular that it states:

"If your system has an old compiler in its system repos, a higher version can be specified with build flags. For example, Ubuntu 18.04 users should install gcc-11 from something like this PPA and then instead of cmake .. type cmake .. -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11 during the build process."

I don't know what version of Linux you are using, but it looks like you are using gcc-10. Maybe installing and using gcc-11 would make a difference.


RE: -- Configuring incomplete, errors occurred! - mecookiesgood - 01-01-2023

(12-31-2022, 11:42 PM)GenerationI Wrote: Looking at the build instructions just now, I see some things have changed since I last read it. I see in particular that it states:

"If your system has an old compiler in its system repos, a higher version can be specified with build flags. For example, Ubuntu 18.04 users should install gcc-11 from something like this PPA and then instead of cmake .. type cmake .. -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11 during the build process."

I don't know what version of Linux you are using, but it looks like you are using gcc-10. Maybe installing and using gcc-11 would make a difference.

Yes I did try that last night, but with the same results. I made sure to have all the listed packages installed too. I'm on Linux mint 20.3 so I had to install the qt6 packages and gcc-11 from the PPAs linked in the instructions.


RE: -- Configuring incomplete, errors occurred! - GenerationI - 01-01-2023

I tried building 5.0-18143 in Linux Mint 21 just now, and I can't see any big difference other than the following:
I can't tell from the log exactly what your cmake is failing because of. I upgraded to Linux Mint 21 because 20.3 didn't have the required Qt5 version, but I didn't know then that I could get Qt6. (Upgrading was a big disruption, but I knew I would have to do it eventually.) If you like I will post my build dependencies. I don't use any PPAs.