bluesadi / Pluto

Obfuscator based on LLVM 14.0.6
809 stars 181 forks source link

编译报错 #16

Closed abc767234318 closed 2 years ago

abc767234318 commented 2 years ago

提示下面这些 Determining if the include file malloc/malloc.h exists failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_d613f && [1/2] Building C object CMakeFiles/cmTC_d613f.dir/CheckIncludeFile.c.o FAILED: CMakeFiles/cmTC_d613f.dir/CheckIncludeFile.c.o /usr/bin/cc -o CMakeFiles/cmTC_d613f.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c CheckIncludeFile.c:1:10: fatal error: malloc/malloc.h: No such file or directory 1 | #include <malloc/malloc.h> | ^~~~~ compilation terminated. ninja: build stopped: subcommand failed.

Determining if the include file valgrind/valgrind.h exists failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_30c4c && [1/2] Building C object CMakeFiles/cmTC_30c4c.dir/CheckIncludeFile.c.o FAILED: CMakeFiles/cmTC_30c4c.dir/CheckIncludeFile.c.o /usr/bin/cc -o CMakeFiles/cmTC_30c4c.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c CheckIncludeFile.c:1:10: fatal error: valgrind/valgrind.h: No such file or directory 1 | #include <valgrind/valgrind.h> | ^~~~~ compilation terminated. ninja: build stopped: subcommand failed.

Determining if the include file mach/mach.h exists failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_8effd && [1/2] Building C object CMakeFiles/cmTC_8effd.dir/CheckIncludeFile.c.o FAILED: CMakeFiles/cmTC_8effd.dir/CheckIncludeFile.c.o /usr/bin/cc -o CMakeFiles/cmTC_8effd.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c CheckIncludeFile.c:1:10: fatal error: mach/mach.h: No such file or directory 1 | #include <mach/mach.h> | ^~~~~ compilation terminated. ninja: build stopped: subcommand failed.

Determining if the include file histedit.h exists failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_5e20f && [1/2] Building C object CMakeFiles/cmTC_5e20f.dir/CheckIncludeFile.c.o FAILED: CMakeFiles/cmTC_5e20f.dir/CheckIncludeFile.c.o /usr/bin/cc -o CMakeFiles/cmTC_5e20f.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c CheckIncludeFile.c:1:10: fatal error: histedit.h: No such file or directory 1 | #include | ^~~~ compilation terminated. ninja: build stopped: subcommand failed.

Determining if the include file CrashReporterClient.h exists failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_21d88 && [1/2] Building C object CMakeFiles/cmTC_21d88.dir/CheckIncludeFile.c.o FAILED: CMakeFiles/cmTC_21d88.dir/CheckIncludeFile.c.o /usr/bin/cc -o CMakeFiles/cmTC_21d88.dir/CheckIncludeFile.c.o -c CheckIncludeFile.c CheckIncludeFile.c:1:10: fatal error: CrashReporterClient.h: No such file or directory 1 | #include | ^~~~~~~ compilation terminated. ninja: build stopped: subcommand failed.

Determining if the function pfm_initialize exists in the pfm failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_f78a1 && [1/2] Building C object CMakeFiles/cmTC_f78a1.dir/CheckFunctionExists.c.o [2/2] Linking C executable cmTC_f78a1 FAILED: cmTC_f78a1 : && /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pfm_initialize CMakeFiles/cmTC_f78a1.dir/CheckFunctionExists.c.o -o cmTC_f78a1 -lpfm -lm && : /usr/bin/ld: cannot find -lpfm collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed.

Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_4f930 && [1/2] Building C object CMakeFiles/cmTC_4f930.dir/src.c.o [2/2] Linking C executable cmTC_4f930 FAILED: cmTC_4f930 : && /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_4f930.dir/src.c.o -o cmTC_4f930 -lm && : /usr/bin/ld: CMakeFiles/cmTC_4f930.dir/src.c.o: in function main': src.c:(.text+0x46): undefined reference topthread_create' /usr/bin/ld: src.c:(.text+0x52): undefined reference to pthread_detach' /usr/bin/ld: src.c:(.text+0x63): undefined reference topthread_join' collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed.

Source file was:

include

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/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_3eb0f && [1/2] Building C object CMakeFiles/cmTC_3eb0f.dir/CheckFunctionExists.c.o [2/2] Linking C executable cmTC_3eb0f FAILED: cmTC_3eb0f : && /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_3eb0f.dir/CheckFunctionExists.c.o -o cmTC_3eb0f -lpthreads -lm && : /usr/bin/ld: cannot find -lpthreads collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed.

Determining if the function xar_open exists in the xar failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_87a7f && [1/2] Building C object CMakeFiles/cmTC_87a7f.dir/CheckFunctionExists.c.o [2/2] Linking C executable cmTC_87a7f FAILED: cmTC_87a7f : && /usr/bin/cc -DCHECK_FUNCTION_EXISTS=xar_open CMakeFiles/cmTC_87a7f.dir/CheckFunctionExists.c.o -o cmTC_87a7f -lxar -lm && : /usr/bin/ld: cannot find -lxar collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed.

Determining if the arc4random exist failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_92a3d && [1/2] Building C object CMakeFiles/cmTC_92a3d.dir/CheckSymbolExists.c.o FAILED: CMakeFiles/cmTC_92a3d.dir/CheckSymbolExists.c.o /usr/bin/cc -o CMakeFiles/cmTC_92a3d.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c CheckSymbolExists.c: In function ‘main’: CheckSymbolExists.c:8:19: error: ‘arc4random’ undeclared (first use in this function); did you mean ‘srandom’? 8 | return ((int*)(&arc4random))[argc]; | ^~~~~~ | srandom CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in ninja: build stopped: subcommand failed.

File /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: / /

include

int main(int argc, char** argv) { (void)argv;

ifndef arc4random

return ((int*)(&arc4random))[argc];

else

(void)argc; return 0;

endif

} Performing C SOURCE FILE Test C_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_fe003 && [1/2] Building C object CMakeFiles/cmTC_fe003.dir/src.c.o FAILED: CMakeFiles/cmTC_fe003.dir/src.c.o /usr/bin/cc -DC_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW -Werror=unguarded-availability-new -o CMakeFiles/cmTC_fe003.dir/src.c.o -c src.c cc1: error: '-Werror=unguarded-availability-new': no option -Wunguarded-availability-new ninja: build stopped: subcommand failed.

Source file was: int main(void) { return 0; } Determining if the mallctl exist failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_91e3e && [1/2] Building C object CMakeFiles/cmTC_91e3e.dir/CheckSymbolExists.c.o FAILED: CMakeFiles/cmTC_91e3e.dir/CheckSymbolExists.c.o /usr/bin/cc -o CMakeFiles/cmTC_91e3e.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c CheckSymbolExists.c:2:10: fatal error: malloc_np.h: No such file or directory 2 | #include | ^~~~~ compilation terminated. ninja: build stopped: subcommand failed.

File /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: / /

include

int main(int argc, char** argv) { (void)argv;

ifndef mallctl

return ((int*)(&mallctl))[argc];

else

(void)argc; return 0;

endif

} Determining if the malloc_zone_statistics exist failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_02a67 && [1/2] Building C object CMakeFiles/cmTC_02a67.dir/CheckSymbolExists.c.o FAILED: CMakeFiles/cmTC_02a67.dir/CheckSymbolExists.c.o /usr/bin/cc -o CMakeFiles/cmTC_02a67.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c CheckSymbolExists.c:2:10: fatal error: malloc/malloc.h: No such file or directory 2 | #include <malloc/malloc.h> | ^~~~~ compilation terminated. ninja: build stopped: subcommand failed.

File /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: / /

include <malloc/malloc.h>

int main(int argc, char** argv) { (void)argv;

ifndef malloc_zone_statistics

return ((int*)(&malloc_zone_statistics))[argc];

else

(void)argc; return 0;

endif

} Determining if the strerror_s exist failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_389ca && [1/2] Building C object CMakeFiles/cmTC_389ca.dir/CheckSymbolExists.c.o FAILED: CMakeFiles/cmTC_389ca.dir/CheckSymbolExists.c.o /usr/bin/cc -o CMakeFiles/cmTC_389ca.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c CheckSymbolExists.c: In function ‘main’: CheckSymbolExists.c:8:19: error: ‘strerror_s’ undeclared (first use in this function); did you mean ‘strerror_l’? 8 | return ((int*)(&strerror_s))[argc]; | ^~~~~~ | strerror_l CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in ninja: build stopped: subcommand failed.

File /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: / /

include

int main(int argc, char** argv) { (void)argv;

ifndef strerror_s

return ((int*)(&strerror_s))[argc];

else

(void)argc; return 0;

endif

} Determining if the dladdr exist failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_4c096 && [1/2] Building C object CMakeFiles/cmTC_4c096.dir/CheckSymbolExists.c.o FAILED: CMakeFiles/cmTC_4c096.dir/CheckSymbolExists.c.o /usr/bin/cc -o CMakeFiles/cmTC_4c096.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c CheckSymbolExists.c: In function ‘main’: CheckSymbolExists.c:8:19: error: ‘dladdr’ undeclared (first use in this function) 8 | return ((int*)(&dladdr))[argc]; | ^~ CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in ninja: build stopped: subcommand failed.

File /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: / /

include

int main(int argc, char** argv) { (void)argv;

ifndef dladdr

return ((int*)(&dladdr))[argc];

else

(void)argc; return 0;

endif

} Performing C SOURCE FILE Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_bf5cd && [1/2] Building C object CMakeFiles/cmTC_bf5cd.dir/src.c.o FAILED: CMakeFiles/cmTC_bf5cd.dir/src.c.o /usr/bin/cc -DHAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC -o CMakeFiles/cmTC_bf5cd.dir/src.c.o -c src.c src.c: In function ‘main’: src.c:7:34: error: ‘struct stat’ has no member named ‘st_mtimespec’ 7 | (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec); | ^~ ninja: build stopped: subcommand failed.

Source file was:

include <sys/types.h>

include <sys/stat.h>

int main() { (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec); return 0; }

Performing C++ SOURCE FILE Test SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_ea546 && [1/2] Building CXX object CMakeFiles/cmTC_ea546.dir/src.cxx.o FAILED: CMakeFiles/cmTC_ea546.dir/src.cxx.o /usr/bin/c++ -DSUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG -Wgnu-zero-variadic-macro-arguments -std=c++14 -o CMakeFiles/cmTC_ea546.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-Wgnu-zero-variadic-macro-arguments' ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C++ SOURCE FILE Test CXX_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_7b6c4 && [1/2] Building CXX object CMakeFiles/cmTC_7b6c4.dir/src.cxx.o FAILED: CMakeFiles/cmTC_7b6c4.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -DCXX_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW -Werror -Werror=unguarded-availability-new -std=c++14 -o CMakeFiles/cmTC_7b6c4.dir/src.cxx.o -c src.cxx cc1plus: error: '-Werror=unguarded-availability-new': no option -Wunguarded-availability-new ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C SOURCE FILE Test C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_c3856 && [1/2] Building C object CMakeFiles/cmTC_c3856.dir/src.c.o FAILED: CMakeFiles/cmTC_c3856.dir/src.c.o /usr/bin/cc -fPIC -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -DC_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG -Werror -Wcovered-switch-default -o CMakeFiles/cmTC_c3856.dir/src.c.o -c src.c cc: error: unrecognized command line option '-Wcovered-switch-default'; did you mean '-Wno-switch-default'? ninja: build stopped: subcommand failed.

Source file was: int main(void) { return 0; } Performing C++ SOURCE FILE Test CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_638d2 && [1/2] Building CXX object CMakeFiles/cmTC_638d2.dir/src.cxx.o FAILED: CMakeFiles/cmTC_638d2.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -DCXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG -Werror -Wcovered-switch-default -std=c++14 -o CMakeFiles/cmTC_638d2.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-Wcovered-switch-default'; did you mean '-Wno-switch-default'? ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C SOURCE FILE Test C_SUPPORTS_DELETE_NON_VIRTUAL_DTOR_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_8b851 && [1/2] Building C object CMakeFiles/cmTC_8b851.dir/src.c.o FAILED: CMakeFiles/cmTC_8b851.dir/src.c.o /usr/bin/cc -fPIC -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -DC_SUPPORTS_DELETE_NON_VIRTUAL_DTOR_FLAG -Werror -Wdelete-non-virtual-dtor -o CMakeFiles/cmTC_8b851.dir/src.c.o -c src.c cc1: error: command line option '-Wdelete-non-virtual-dtor' is valid for C++/ObjC++ but not for C [-Werror] cc1: all warnings being treated as errors ninja: build stopped: subcommand failed.

Source file was: int main(void) { return 0; } Performing C SOURCE FILE Test C_WCOMMENT_ALLOWS_LINE_WRAP failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_4722b && [1/2] Building C object CMakeFiles/cmTC_4722b.dir/src.c.o FAILED: CMakeFiles/cmTC_4722b.dir/src.c.o /usr/bin/cc -D_GNU_SOURCE -fPIC -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -DC_WCOMMENT_ALLOWS_LINE_WRAP -Werror -Wcomment -o CMakeFiles/cmTC_4722b.dir/src.c.o -c src.c src.c:1:1: error: multi-line comment [-Werror=comment] 1 | // \ | ^ cc1: all warnings being treated as errors ninja: build stopped: subcommand failed.

Source file was: // \ // int main() {return 0;} Performing C SOURCE FILE Test C_SUPPORTS_STRING_CONVERSION_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_642b8 && [1/2] Building C object CMakeFiles/cmTC_642b8.dir/src.c.o FAILED: CMakeFiles/cmTC_642b8.dir/src.c.o /usr/bin/cc -fPIC -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-comment -DC_SUPPORTS_STRING_CONVERSION_FLAG -Werror -Wstring-conversion -o CMakeFiles/cmTC_642b8.dir/src.c.o -c src.c cc: error: unrecognized command line option '-Wstring-conversion'; did you mean '-Wsign-conversion'? ninja: build stopped: subcommand failed.

Source file was: int main(void) { return 0; } Performing C++ SOURCE FILE Test CXX_SUPPORTS_STRING_CONVERSION_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_2c938 && [1/2] Building CXX object CMakeFiles/cmTC_2c938.dir/src.cxx.o FAILED: CMakeFiles/cmTC_2c938.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -DCXX_SUPPORTS_STRING_CONVERSION_FLAG -Werror -Wstring-conversion -std=c++14 -o CMakeFiles/cmTC_2c938.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-Wstring-conversion'; did you mean '-Wsign-conversion'? ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C++ SOURCE FILE Test LINKER_SUPPORTS_COLOR_DIAGNOSTICS failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_b6f03 && [1/2] Building CXX object CMakeFiles/cmTC_b6f03.dir/src.cxx.o [2/2] Linking CXX executable cmTC_b6f03 FAILED: cmTC_b6f03 : && /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -fdiagnostics-color -DLINKER_SUPPORTS_COLOR_DIAGNOSTICS -Wl,--color-diagnostics CMakeFiles/cmTC_b6f03.dir/src.cxx.o -o cmTC_b6f03 -lm && : /usr/bin/ld: unrecognized option '--color-diagnostics' /usr/bin/ld: use the --help option for usage information collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Determining if the os_signpost_interval_begin exist failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_37f97 && [1/2] Building C object CMakeFiles/cmTC_37f97.dir/CheckSymbolExists.c.o FAILED: CMakeFiles/cmTC_37f97.dir/CheckSymbolExists.c.o /usr/bin/cc -D_GNU_SOURCE -fPIC -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-comment -fdiagnostics-color -ffunction-sections -fdata-sections -o CMakeFiles/cmTC_37f97.dir/CheckSymbolExists.c.o -c CheckSymbolExists.c CheckSymbolExists.c:2:10: fatal error: os/signpost.h: No such file or directory 2 | #include <os/signpost.h> | ^~~~~~~ compilation terminated. ninja: build stopped: subcommand failed.

File /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: / /

include <os/signpost.h>

int main(int argc, char** argv) { (void)argv;

ifndef os_signpost_interval_begin

return ((int*)(&os_signpost_interval_begin))[argc];

else

(void)argc; return 0;

endif

} Performing C++ SOURCE FILE Test CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_c3eb7 && [1/2] Building CXX object CMakeFiles/cmTC_c3eb7.dir/src.cxx.o FAILED: CMakeFiles/cmTC_c3eb7.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -fdiagnostics-color -ffunction-sections -fdata-sections -fno-common -Woverloaded-virtual -fno-strict-aliasing -DCXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG -Werror -Wnested-anon-types -std=c++14 -o CMakeFiles/cmTC_c3eb7.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-Wnested-anon-types' ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_c59a6 && [1/2] Building CXX object CMakeFiles/cmTC_c59a6.dir/src.cxx.o FAILED: CMakeFiles/cmTC_c59a6.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -fdiagnostics-color -ffunction-sections -fdata-sections -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32 -Wshorten-64-to-32 -Wshorten-64-to-32 -std=c++14 -o CMakeFiles/cmTC_c59a6.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-Wshorten-64-to-32' c++: error: unrecognized command line option '-Wshorten-64-to-32' ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WD654 failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_620ce && [1/2] Building CXX object CMakeFiles/cmTC_620ce.dir/src.cxx.o FAILED: CMakeFiles/cmTC_620ce.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -fdiagnostics-color -ffunction-sections -fdata-sections -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wfloat-equal -fstrict-aliasing -fno-exceptions -Wno-suggest-override -Wstrict-aliasing -DHAVE_CXX_FLAG_WD654 -wd654 -wd654 -std=c++14 -o CMakeFiles/cmTC_620ce.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-wd654' c++: error: unrecognized command line option '-wd654' ninja: build stopped: subcommand failed.

Source file was: int main() { return 0; } Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WTHREAD_SAFETY failed with the following output: Change Dir: /home/ubuntu/github-project/Pluto-Obfuscator/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/ninja cmTC_821ce && [1/2] Building CXX object CMakeFiles/cmTC_821ce.dir/src.cxx.o FAILED: CMakeFiles/cmTC_821ce.dir/src.cxx.o /usr/bin/c++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -fdiagnostics-color -ffunction-sections -fdata-sections -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wfloat-equal -fstrict-aliasing -fno-exceptions -Wno-suggest-override -Wstrict-aliasing -DHAVE_CXX_FLAG_WTHREAD_SAFETY -Wthread-safety -Wthread-safety -std=c++14 -o CMakeFiles/cmTC_821ce.dir/src.cxx.o -c src.cxx c++: error: unrecognized command line option '-Wthread-safety' c++: error: unrecognized command line option '-Wthread-safety' ninja: build stopped: subcommand failed.

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