Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Checking whether the ASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)":
- clang version 6.0.1-14 (tags/RELEASE_601/final)
- Target: x86_64-pc-linux-gnu
- Thread model: posix
- InstalledDir: /usr/bin
- Determining if the F_FULLFSYNC exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_a1d58/fast && /usr/bin/make -f CMakeFiles/cmTC_a1d58.dir/build.make CMakeFiles/cmTC_a1d58.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_a1d58.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_a1d58.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'F_FULLFSYNC'
- return ((int*)(&F_FULLFSYNC))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_a1d58.dir/build.make:66: CMakeFiles/cmTC_a1d58.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_a1d58/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <fcntl.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef F_FULLFSYNC
- return ((int*)(&F_FULLFSYNC))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the getmntinfo exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_f02da/fast && /usr/bin/make -f CMakeFiles/cmTC_f02da.dir/build.make CMakeFiles/cmTC_f02da.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_f02da.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_f02da.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'getmntinfo'
- return ((int*)(&getmntinfo))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_f02da.dir/build.make:66: CMakeFiles/cmTC_f02da.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_f02da/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <sys/mount.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef getmntinfo
- return ((int*)(&getmntinfo))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the strcpy_s exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_62968/fast && /usr/bin/make -f CMakeFiles/cmTC_62968.dir/build.make CMakeFiles/cmTC_62968.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_62968.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_62968.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'strcpy_s'; did you mean 'strcpy'?
- return ((int*)(&strcpy_s))[argc];
- ^~~~~~~~
- strcpy
- /usr/include/string.h:122:14: note: 'strcpy' declared here
- extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_62968.dir/build.make:66: CMakeFiles/cmTC_62968.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_62968/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <string.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef strcpy_s
- return ((int*)(&strcpy_s))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the strlcpy exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_f7f4a/fast && /usr/bin/make -f CMakeFiles/cmTC_f7f4a.dir/build.make CMakeFiles/cmTC_f7f4a.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_f7f4a.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_f7f4a.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'strlcpy'
- return ((int*)(&strlcpy))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_f7f4a.dir/build.make:66: CMakeFiles/cmTC_f7f4a.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_f7f4a/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <string.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef strlcpy
- return ((int*)(&strlcpy))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the arc4random_buf exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_de601/fast && /usr/bin/make -f CMakeFiles/cmTC_de601.dir/build.make CMakeFiles/cmTC_de601.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_de601.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_de601.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'arc4random_buf'
- return ((int*)(&arc4random_buf))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_de601.dir/build.make:66: CMakeFiles/cmTC_de601.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_de601/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <stdlib.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef arc4random_buf
- return ((int*)(&arc4random_buf))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Performing C SOURCE FILE Test HAVE_STAT_BIRTHTIME failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_f1342/fast && /usr/bin/make -f CMakeFiles/cmTC_f1342.dir/build.make CMakeFiles/cmTC_f1342.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_f1342.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_STAT_BIRTHTIME -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_f1342.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:7:36: error: no member named 'st_birthtimespec' in 'struct stat'
- (void)sizeof(((struct stat *)0)->st_birthtimespec);
- ~~~~~~~~~~~~~~~~~~ ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_f1342.dir/build.make:66: CMakeFiles/cmTC_f1342.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_f1342/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/stat.h>
- int main()
- {
- (void)sizeof(((struct stat *)0)->st_birthtimespec);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_STAT_FLAGS failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_fc7d3/fast && /usr/bin/make -f CMakeFiles/cmTC_fc7d3.dir/build.make CMakeFiles/cmTC_fc7d3.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_fc7d3.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_STAT_FLAGS -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_fc7d3.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:7:36: error: no member named 'st_flags' in 'struct stat'
- (void)sizeof(((struct stat *)0)->st_flags);
- ~~~~~~~~~~~~~~~~~~ ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_fc7d3.dir/build.make:66: CMakeFiles/cmTC_fc7d3.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_fc7d3/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/stat.h>
- int main()
- {
- (void)sizeof(((struct stat *)0)->st_flags);
- return 0;
- }
- Determining if the lchflags exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_5c6ca/fast && /usr/bin/make -f CMakeFiles/cmTC_5c6ca.dir/build.make CMakeFiles/cmTC_5c6ca.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_5c6ca.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_5c6ca.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:9:19: error: use of undeclared identifier 'lchflags'
- return ((int*)(&lchflags))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_5c6ca.dir/build.make:66: CMakeFiles/cmTC_5c6ca.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_5c6ca/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <sys/types.h>
- #include <sys/stat.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef lchflags
- return ((int*)(&lchflags))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Performing C SOURCE FILE Test HAVE_STAT_TIMESPEC failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_9d349/fast && /usr/bin/make -f CMakeFiles/cmTC_9d349.dir/build.make CMakeFiles/cmTC_9d349.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_9d349.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_STAT_TIMESPEC -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_9d349.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:7:36: error: no member named 'st_atimespec' in 'struct stat'
- (void)sizeof(((struct stat *)0)->st_atimespec);
- ~~~~~~~~~~~~~~~~~~ ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_9d349.dir/build.make:66: CMakeFiles/cmTC_9d349.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_9d349/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/stat.h>
- int main()
- {
- (void)sizeof(((struct stat *)0)->st_atimespec);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_STAT_NSEC failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_e78fe/fast && /usr/bin/make -f CMakeFiles/cmTC_e78fe.dir/build.make CMakeFiles/cmTC_e78fe.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_e78fe.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_STAT_NSEC -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_e78fe.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:7:36: error: no member named 'st_atimensec' in 'struct stat'
- (void)sizeof(((struct stat *)0)->st_atimensec);
- ~~~~~~~~~~~~~~~~~~ ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_e78fe.dir/build.make:66: CMakeFiles/cmTC_e78fe.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_e78fe/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/stat.h>
- int main()
- {
- (void)sizeof(((struct stat *)0)->st_atimensec);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_DIRENT_NAME_LEN failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_28799/fast && /usr/bin/make -f CMakeFiles/cmTC_28799.dir/build.make CMakeFiles/cmTC_28799.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_28799.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_DIRENT_NAME_LEN -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_28799.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:38: error: no member named 'd_namlen' in 'struct dirent'; did you mean 'd_name'?
- (void)sizeof(((struct dirent *)0)->d_namlen);
- ^~~~~~~~
- d_name
- /usr/include/x86_64-linux-gnu/bits/dirent.h:33:10: note: 'd_name' declared here
- char d_name[256]; /* We must not include limits.h! */
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_28799.dir/build.make:66: CMakeFiles/cmTC_28799.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_28799/fast] error 2
- Source file was:
- #include <dirent.h>
- int main()
- {
- (void)sizeof(((struct dirent *)0)->d_namlen);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_STATFS_FSTYPENAME failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_bf173/fast && /usr/bin/make -f CMakeFiles/cmTC_bf173.dir/build.make CMakeFiles/cmTC_bf173.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_bf173.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_STATFS_FSTYPENAME -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_bf173.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:36: error: incomplete definition of type 'struct statfs'
- (void)sizeof(((struct statfs *)0)->f_fstypename);
- ~~~~~~~~~~~~~~~~~~~~^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:25: note: forward declaration of 'struct statfs'
- (void)sizeof(((struct statfs *)0)->f_fstypename);
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_bf173.dir/build.make:66: CMakeFiles/cmTC_bf173.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_bf173/fast] error 2
- Source file was:
- #include <sys/mount.h>
- int main()
- {
- (void)sizeof(((struct statfs *)0)->f_fstypename);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_STATVFS_FSTYPENAME failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_05273/fast && /usr/bin/make -f CMakeFiles/cmTC_05273.dir/build.make CMakeFiles/cmTC_05273.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_05273.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_STATVFS_FSTYPENAME -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_05273.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:37: error: incomplete definition of type 'struct statvfs'
- (void)sizeof(((struct statvfs *)0)->f_fstypename);
- ~~~~~~~~~~~~~~~~~~~~~^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:25: note: forward declaration of 'struct statvfs'
- (void)sizeof(((struct statvfs *)0)->f_fstypename);
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_05273.dir/build.make:66: CMakeFiles/cmTC_05273.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_05273/fast] error 2
- Source file was:
- #include <sys/mount.h>
- int main()
- {
- (void)sizeof(((struct statvfs *)0)->f_fstypename);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_READDIR_R failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_56e8a/fast && /usr/bin/make -f CMakeFiles/cmTC_56e8a.dir/build.make CMakeFiles/cmTC_56e8a.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_56e8a.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_READDIR_R -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_56e8a.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:9:9: error: 'readdir_r' is deprecated [-Werror,-Wdeprecated-declarations]
- readdir_r(dir, entry, &result);
- ^
- /usr/include/dirent.h:186:28: note: 'readdir_r' has been explicitly marked deprecated here
- __nonnull ((1, 2, 3)) __attribute_deprecated__;
- ^
- /usr/include/x86_64-linux-gnu/sys/cdefs.h:251:51: note: expanded from macro '__attribute_deprecated__'
- # define __attribute_deprecated__ __attribute__ ((__deprecated__))
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_56e8a.dir/build.make:66: CMakeFiles/cmTC_56e8a.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_56e8a/fast] error 2
- Source file was:
- #include <dirent.h>
- #include <stddef.h>
- int main(void)
- {
- DIR* dir = NULL;
- struct dirent* entry = NULL;
- struct dirent* result;
- readdir_r(dir, entry, &result);
- return 0;
- }
- Performing C SOURCE FILE Test KEVENT_HAS_VOID_UDATA failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_0e858/fast && /usr/bin/make -f CMakeFiles/cmTC_0e858.dir/build.make CMakeFiles/cmTC_0e858.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_0e858.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DKEVENT_HAS_VOID_UDATA -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_0e858.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:3:14: fatal error: 'sys/event.h' file not found
- #include <sys/event.h>
- ^~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_0e858.dir/build.make:66: CMakeFiles/cmTC_0e858.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_0e858/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/event.h>
- int main(void)
- {
- struct kevent event;
- void* data;
- EV_SET(&event, 0, EVFILT_READ, 0, 0, 0, data);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_FDS_BITS failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_4c20e/fast && /usr/bin/make -f CMakeFiles/cmTC_4c20e.dir/build.make CMakeFiles/cmTC_4c20e.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_4c20e.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_FDS_BITS -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_4c20e.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:36: error: incomplete definition of type 'struct fd_set'
- (void)sizeof(((struct fd_set *)0)->fds_bits);
- ~~~~~~~~~~~~~~~~~~~~^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:25: note: forward declaration of 'struct fd_set'
- (void)sizeof(((struct fd_set *)0)->fds_bits);
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_4c20e.dir/build.make:66: CMakeFiles/cmTC_4c20e.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_4c20e/fast] error 2
- Source file was:
- #include <sys/select.h>
- int main()
- {
- (void)sizeof(((struct fd_set *)0)->fds_bits);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_PRIVATE_FDS_BITS failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_f7485/fast && /usr/bin/make -f CMakeFiles/cmTC_f7485.dir/build.make CMakeFiles/cmTC_f7485.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_f7485.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_PRIVATE_FDS_BITS -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_f7485.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:36: error: incomplete definition of type 'struct fd_set'
- (void)sizeof(((struct fd_set *)0)->__fds_bits);
- ~~~~~~~~~~~~~~~~~~~~^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:25: note: forward declaration of 'struct fd_set'
- (void)sizeof(((struct fd_set *)0)->__fds_bits);
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_f7485.dir/build.make:66: CMakeFiles/cmTC_f7485.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_f7485/fast] error 2
- Source file was:
- #include <sys/select.h>
- int main()
- {
- (void)sizeof(((struct fd_set *)0)->__fds_bits);
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_SENDFILE_6 failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_51e94/fast && /usr/bin/make -f CMakeFiles/cmTC_51e94.dir/build.make CMakeFiles/cmTC_51e94.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_51e94.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_SENDFILE_6 -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_51e94.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:30: error: implicit declaration of function 'sendfile' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
- int main(void) { int i = sendfile(0, 0, 0, NULL, NULL, 0); return 0; }
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_51e94.dir/build.make:66: CMakeFiles/cmTC_51e94.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_51e94/fast] error 2
- Source file was:
- #include <stdlib.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <sys/uio.h>
- int main(void) { int i = sendfile(0, 0, 0, NULL, NULL, 0); return 0; }
- Performing C SOURCE FILE Test HAVE_SENDFILE_7 failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_2b39d/fast && /usr/bin/make -f CMakeFiles/cmTC_2b39d.dir/build.make CMakeFiles/cmTC_2b39d.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_2b39d.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_SENDFILE_7 -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_2b39d.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:6:30: error: implicit declaration of function 'sendfile' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
- int main(void) { int i = sendfile(0, 0, 0, 0, NULL, NULL, 0); return 0; }
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_2b39d.dir/build.make:66: CMakeFiles/cmTC_2b39d.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_2b39d/fast] error 2
- Source file was:
- #include <stdlib.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <sys/uio.h>
- int main(void) { int i = sendfile(0, 0, 0, 0, NULL, NULL, 0); return 0; }
- Determining if the fcopyfile exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_81155/fast && /usr/bin/make -f CMakeFiles/cmTC_81155.dir/build.make CMakeFiles/cmTC_81155.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_81155.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_81155.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: 'copyfile.h' file not found
- #include <copyfile.h>
- ^~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_81155.dir/build.make:66: CMakeFiles/cmTC_81155.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_81155/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <copyfile.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef fcopyfile
- return ((int*)(&fcopyfile))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if files sys/sockio.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_7be67/fast && /usr/bin/make -f CMakeFiles/cmTC_7be67.dir/build.make CMakeFiles/cmTC_7be67.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_7be67.dir/HAVE_SYS_SOCKIO_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_7be67.dir/HAVE_SYS_SOCKIO_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SOCKIO_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SOCKIO_H.c:2:10: fatal error: 'sys/sockio.h' file not found
- #include <sys/sockio.h>
- ^~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_7be67.dir/build.make:66: CMakeFiles/cmTC_7be67.dir/HAVE_SYS_SOCKIO_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_7be67/fast] error 2
- Source:
- /* */
- #include <sys/sockio.h>
- int main(void){return 0;}
- Determining if files sys/proc_info.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_a07cd/fast && /usr/bin/make -f CMakeFiles/cmTC_a07cd.dir/build.make CMakeFiles/cmTC_a07cd.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_a07cd.dir/HAVE_SYS_PROCINFO_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_a07cd.dir/HAVE_SYS_PROCINFO_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PROCINFO_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PROCINFO_H.c:2:10: fatal error: 'sys/proc_info.h' file not found
- #include <sys/proc_info.h>
- ^~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_a07cd.dir/build.make:66: CMakeFiles/cmTC_a07cd.dir/HAVE_SYS_PROCINFO_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_a07cd/fast] error 2
- Source:
- /* */
- #include <sys/proc_info.h>
- int main(void){return 0;}
- Determining if the kqueue exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_eb805/fast && /usr/bin/make -f CMakeFiles/cmTC_eb805.dir/build.make CMakeFiles/cmTC_eb805.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_eb805.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_eb805.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:3:10: fatal error: 'sys/event.h' file not found
- #include <sys/event.h>
- ^~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_eb805.dir/build.make:66: CMakeFiles/cmTC_eb805.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_eb805/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <sys/types.h>
- #include <sys/event.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef kqueue
- return ((int*)(&kqueue))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the disconnectx exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_a905b/fast && /usr/bin/make -f CMakeFiles/cmTC_a905b.dir/build.make CMakeFiles/cmTC_a905b.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_a905b.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_a905b.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'disconnectx'
- return ((int*)(&disconnectx))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_a905b.dir/build.make:66: CMakeFiles/cmTC_a905b.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_a905b/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <sys/socket.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef disconnectx
- return ((int*)(&disconnectx))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the clock_gettime_nsec_np exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_54f57/fast && /usr/bin/make -f CMakeFiles/cmTC_54f57.dir/build.make CMakeFiles/cmTC_54f57.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_54f57.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_54f57.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'clock_gettime_nsec_np'
- return ((int*)(&clock_gettime_nsec_np))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_54f57.dir/build.make:66: CMakeFiles/cmTC_54f57.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_54f57/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <time.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef clock_gettime_nsec_np
- return ((int*)(&clock_gettime_nsec_np))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Performing C SOURCE FILE Test INOTIFY_RM_WATCH_WD_UNSIGNED failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_ba0e8/fast && /usr/bin/make -f CMakeFiles/cmTC_ba0e8.dir/build.make CMakeFiles/cmTC_ba0e8.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_ba0e8.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DINOTIFY_RM_WATCH_WD_UNSIGNED -Werror -Wsign-conversion -fPIE -o CMakeFiles/cmTC_ba0e8.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:8:37: error: implicit conversion changes signedness: 'uint32_t' (aka 'unsigned int') to 'int' [-Werror,-Wsign-conversion]
- return inotify_rm_watch(fd, wd);
- ~~~~~~~~~~~~~~~~ ^~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_ba0e8.dir/build.make:66: CMakeFiles/cmTC_ba0e8.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_ba0e8/fast] error 2
- Source file was:
- #include <sys/inotify.h>
- int main(void)
- {
- intptr_t fd;
- uint32_t wd;
- return inotify_rm_watch(fd, wd);
- }
- Determining if the prototype getpriority exists for PRIORITY_REQUIRES_INT_WHO failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_f7527/fast && /usr/bin/make -f CMakeFiles/cmTC_f7527.dir/build.make CMakeFiles/cmTC_f7527.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_f7527.dir/CheckPrototypeDefinition.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_f7527.dir/CheckPrototypeDefinition.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:14:5: error: conflicting types for 'getpriority'
- int getpriority(int which, int who) {
- ^
- /usr/include/x86_64-linux-gnu/sys/resource.h:93:12: note: previous declaration is here
- extern int getpriority (__priority_which_t __which, id_t __who) __THROW;
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_f7527.dir/build.make:66: CMakeFiles/cmTC_f7527.dir/CheckPrototypeDefinition.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_f7527/fast] error 2
- #include <sys/resource.h>
- static void cmakeRequireSymbol(int dummy, ...) {
- (void) dummy;
- }
- static void checkSymbol(void) {
- #ifndef getpriority
- cmakeRequireSymbol(0, &getpriority);
- #endif
- }
- int getpriority(int which, int who) {
- return 0;
- }
- #ifdef __CLASSIC_C__
- int main() {
- int ac;
- char*av[];
- #else
- int main(int ac, char *av[]) {
- #endif
- checkSymbol();
- if (ac > 1000) {
- return *av[0];
- }
- return 0;
- }
- Determining if the prototype kevent exists for KEVENT_REQUIRES_INT_PARAMS failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_cc722/fast && /usr/bin/make -f CMakeFiles/cmTC_cc722.dir/build.make CMakeFiles/cmTC_cc722.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_cc722.dir/CheckPrototypeDefinition.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_cc722.dir/CheckPrototypeDefinition.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:2:10: fatal error: 'sys/event.h' file not found
- #include <sys/event.h>
- ^~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_cc722.dir/build.make:66: CMakeFiles/cmTC_cc722.dir/CheckPrototypeDefinition.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_cc722/fast] error 2
- #include <sys/types.h>
- #include <sys/event.h>
- static void cmakeRequireSymbol(int dummy, ...) {
- (void) dummy;
- }
- static void checkSymbol(void) {
- #ifndef kevent
- cmakeRequireSymbol(0, &kevent);
- #endif
- }
- int kevent(int kg, const struct kevent* chagelist, int nchanges, struct kevent* eventlist, int nevents, const struct timespec* timeout) {
- return 0;
- }
- #ifdef __CLASSIC_C__
- int main() {
- int ac;
- char*av[];
- #else
- int main(int ac, char *av[]) {
- #endif
- checkSymbol();
- if (ac > 1000) {
- return *av[0];
- }
- return 0;
- }
- Performing C SOURCE FILE Test HAVE_NETINET_TCP_VAR_H failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_c33cf/fast && /usr/bin/make -f CMakeFiles/cmTC_c33cf.dir/build.make CMakeFiles/cmTC_c33cf.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_c33cf.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_NETINET_TCP_VAR_H -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_c33cf.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:8:14: fatal error: 'netinet/tcp_var.h' file not found
- #include <netinet/tcp_var.h>
- ^~~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_c33cf.dir/build.make:66: CMakeFiles/cmTC_c33cf.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_c33cf/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/socketvar.h>
- #include <sys/queue.h>
- #include <netinet/in.h>
- #include <netinet/ip.h>
- #include <netinet/tcp.h>
- #include <netinet/tcp_var.h>
- int main(void) { return 0; }
- Performing C SOURCE FILE Test HAVE_NETINET_UDP_VAR_H failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_987a6/fast && /usr/bin/make -f CMakeFiles/cmTC_987a6.dir/build.make CMakeFiles/cmTC_987a6.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_987a6.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_NETINET_UDP_VAR_H -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_987a6.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:7:14: fatal error: 'netinet/ip_var.h' file not found
- #include <netinet/ip_var.h>
- ^~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_987a6.dir/build.make:66: CMakeFiles/cmTC_987a6.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_987a6/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/socketvar.h>
- #include <sys/queue.h>
- #include <netinet/in.h>
- #include <netinet/ip.h>
- #include <netinet/ip_var.h>
- #include <netinet/udp.h>
- #include <netinet/udp_var.h>
- int main(void) { return 0; }
- Performing C SOURCE FILE Test HAVE_NETINET_IP_VAR_H failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_dd6aa/fast && /usr/bin/make -f CMakeFiles/cmTC_dd6aa.dir/build.make CMakeFiles/cmTC_dd6aa.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_dd6aa.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_NETINET_IP_VAR_H -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_dd6aa.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:7:14: fatal error: 'netinet/ip_var.h' file not found
- #include <netinet/ip_var.h>
- ^~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_dd6aa.dir/build.make:66: CMakeFiles/cmTC_dd6aa.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_dd6aa/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/socketvar.h>
- #include <sys/queue.h>
- #include <netinet/in.h>
- #include <netinet/ip.h>
- #include <netinet/ip_var.h>
- int main(void) { return 0; }
- Performing C SOURCE FILE Test HAVE_NETINET_ICMP_VAR_H failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_36e7d/fast && /usr/bin/make -f CMakeFiles/cmTC_36e7d.dir/build.make CMakeFiles/cmTC_36e7d.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_36e7d.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_NETINET_ICMP_VAR_H -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_36e7d.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:8:14: fatal error: 'netinet/icmp_var.h' file not found
- #include <netinet/icmp_var.h>
- ^~~~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_36e7d.dir/build.make:66: CMakeFiles/cmTC_36e7d.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_36e7d/fast] error 2
- Source file was:
- #include <sys/types.h>
- #include <sys/socketvar.h>
- #include <sys/queue.h>
- #include <netinet/in.h>
- #include <netinet/ip.h>
- #include <netinet/ip_icmp.h>
- #include <netinet/icmp_var.h>
- int main(void) { return 0; }
- Determining if the TCPS_ESTABLISHED exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_a4acc/fast && /usr/bin/make -f CMakeFiles/cmTC_a4acc.dir/build.make CMakeFiles/cmTC_a4acc.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_a4acc.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_a4acc.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: 'netinet/tcp_fsm.h' file not found
- #include <netinet/tcp_fsm.h>
- ^~~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_a4acc.dir/build.make:66: CMakeFiles/cmTC_a4acc.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_a4acc/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <netinet/tcp_fsm.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef TCPS_ESTABLISHED
- return ((int*)(&TCPS_ESTABLISHED))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining size of struct rt_msghdr failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_5edfc/fast && /usr/bin/make -f CMakeFiles/cmTC_5edfc.dir/build.make CMakeFiles/cmTC_5edfc.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_5edfc.dir/HAVE_RT_MSGHDR.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_5edfc.dir/HAVE_RT_MSGHDR.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:25:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr'
- ('0' + ((SIZE / 10000)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^ ~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:25:12: note: forward declaration of 'struct rt_msghdr'
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:26:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr'
- ('0' + ((SIZE / 1000)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^ ~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:25:12: note: forward declaration of 'struct rt_msghdr'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:27:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr'
- ('0' + ((SIZE / 100)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^ ~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:25:12: note: forward declaration of 'struct rt_msghdr'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:28:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr'
- ('0' + ((SIZE / 10)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^ ~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:25:12: note: forward declaration of 'struct rt_msghdr'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:29:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr'
- ('0' + (SIZE % 10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^ ~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:25:12: note: forward declaration of 'struct rt_msghdr'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr))
- ^
- 5 errors generated.
- make[1]: *** [CMakeFiles/cmTC_5edfc.dir/build.make:66: CMakeFiles/cmTC_5edfc.dir/HAVE_RT_MSGHDR.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_5edfc/fast] error 2
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR.c:
- #include "sys/types.h"
- #include "net/if.h"
- #include "net/route.h"
- #undef KEY
- #if defined(__i386)
- # define KEY '_','_','i','3','8','6'
- #elif defined(__x86_64)
- # define KEY '_','_','x','8','6','_','6','4'
- #elif defined(__ppc__)
- # define KEY '_','_','p','p','c','_','_'
- #elif defined(__ppc64__)
- # define KEY '_','_','p','p','c','6','4','_','_'
- #elif defined(__aarch64__)
- # define KEY '_','_','a','a','r','c','h','6','4','_','_'
- #elif defined(__ARM_ARCH_7A__)
- # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
- #elif defined(__ARM_ARCH_7S__)
- # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
- #endif
- #define SIZE (sizeof(struct rt_msghdr))
- static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
- ('0' + ((SIZE / 10000)%10)),
- ('0' + ((SIZE / 1000)%10)),
- ('0' + ((SIZE / 100)%10)),
- ('0' + ((SIZE / 10)%10)),
- ('0' + (SIZE % 10)),
- ']',
- #ifdef KEY
- ' ','k','e','y','[', KEY, ']',
- #endif
- '\0'};
- #ifdef __CLASSIC_C__
- int main(argc, argv) int argc; char *argv[];
- #else
- int main(int argc, char *argv[])
- #endif
- {
- int require = 0;
- require += info_size[argc];
- (void)argv;
- return require;
- }
- Determining size of struct rt_msghdr2 failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_b6707/fast && /usr/bin/make -f CMakeFiles/cmTC_b6707.dir/build.make CMakeFiles/cmTC_b6707.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_b6707.dir/HAVE_RT_MSGHDR2.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_b6707.dir/HAVE_RT_MSGHDR2.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:25:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:25:12: note: forward declaration of 'struct rt_msghdr2'
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:26:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr2'
- ('0' + ((SIZE / 1000)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:25:12: note: forward declaration of 'struct rt_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:27:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr2'
- ('0' + ((SIZE / 100)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:25:12: note: forward declaration of 'struct rt_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:28:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr2'
- ('0' + ((SIZE / 10)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:25:12: note: forward declaration of 'struct rt_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:29:12: error: invalid application of 'sizeof' to an incomplete type 'struct rt_msghdr2'
- ('0' + (SIZE % 10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:25:12: note: forward declaration of 'struct rt_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:23:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct rt_msghdr2))
- ^
- 5 errors generated.
- make[1]: *** [CMakeFiles/cmTC_b6707.dir/build.make:66: CMakeFiles/cmTC_b6707.dir/HAVE_RT_MSGHDR2.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_b6707/fast] error 2
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_RT_MSGHDR2.c:
- #include "sys/types.h"
- #include "net/if.h"
- #include "net/route.h"
- #undef KEY
- #if defined(__i386)
- # define KEY '_','_','i','3','8','6'
- #elif defined(__x86_64)
- # define KEY '_','_','x','8','6','_','6','4'
- #elif defined(__ppc__)
- # define KEY '_','_','p','p','c','_','_'
- #elif defined(__ppc64__)
- # define KEY '_','_','p','p','c','6','4','_','_'
- #elif defined(__aarch64__)
- # define KEY '_','_','a','a','r','c','h','6','4','_','_'
- #elif defined(__ARM_ARCH_7A__)
- # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
- #elif defined(__ARM_ARCH_7S__)
- # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
- #endif
- #define SIZE (sizeof(struct rt_msghdr2))
- static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
- ('0' + ((SIZE / 10000)%10)),
- ('0' + ((SIZE / 1000)%10)),
- ('0' + ((SIZE / 100)%10)),
- ('0' + ((SIZE / 10)%10)),
- ('0' + (SIZE % 10)),
- ']',
- #ifdef KEY
- ' ','k','e','y','[', KEY, ']',
- #endif
- '\0'};
- #ifdef __CLASSIC_C__
- int main(argc, argv) int argc; char *argv[];
- #else
- int main(int argc, char *argv[])
- #endif
- {
- int require = 0;
- require += info_size[argc];
- (void)argv;
- return require;
- }
- Determining size of struct if_msghdr2 failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_b9f38/fast && /usr/bin/make -f CMakeFiles/cmTC_b9f38.dir/build.make CMakeFiles/cmTC_b9f38.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_b9f38.dir/HAVE_IF_MSGHDR2.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_b9f38.dir/HAVE_IF_MSGHDR2.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:23:12: error: invalid application of 'sizeof' to an incomplete type 'struct if_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:23:12: note: forward declaration of 'struct if_msghdr2'
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:24:12: error: invalid application of 'sizeof' to an incomplete type 'struct if_msghdr2'
- ('0' + ((SIZE / 1000)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:23:12: note: forward declaration of 'struct if_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:25:12: error: invalid application of 'sizeof' to an incomplete type 'struct if_msghdr2'
- ('0' + ((SIZE / 100)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:23:12: note: forward declaration of 'struct if_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:26:12: error: invalid application of 'sizeof' to an incomplete type 'struct if_msghdr2'
- ('0' + ((SIZE / 10)%10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:23:12: note: forward declaration of 'struct if_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:27:12: error: invalid application of 'sizeof' to an incomplete type 'struct if_msghdr2'
- ('0' + (SIZE % 10)),
- ^~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:15: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^ ~~~~~~~~~~~~~~~~~~~
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:23:12: note: forward declaration of 'struct if_msghdr2'
- ('0' + ((SIZE / 10000)%10)),
- ^
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:21:29: note: expanded from macro 'SIZE'
- #define SIZE (sizeof(struct if_msghdr2))
- ^
- 5 errors generated.
- make[1]: *** [CMakeFiles/cmTC_b9f38.dir/build.make:66: CMakeFiles/cmTC_b9f38.dir/HAVE_IF_MSGHDR2.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_b9f38/fast] error 2
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckTypeSize/HAVE_IF_MSGHDR2.c:
- #include "net/if.h"
- #undef KEY
- #if defined(__i386)
- # define KEY '_','_','i','3','8','6'
- #elif defined(__x86_64)
- # define KEY '_','_','x','8','6','_','6','4'
- #elif defined(__ppc__)
- # define KEY '_','_','p','p','c','_','_'
- #elif defined(__ppc64__)
- # define KEY '_','_','p','p','c','6','4','_','_'
- #elif defined(__aarch64__)
- # define KEY '_','_','a','a','r','c','h','6','4','_','_'
- #elif defined(__ARM_ARCH_7A__)
- # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
- #elif defined(__ARM_ARCH_7S__)
- # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
- #endif
- #define SIZE (sizeof(struct if_msghdr2))
- static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
- ('0' + ((SIZE / 10000)%10)),
- ('0' + ((SIZE / 1000)%10)),
- ('0' + ((SIZE / 100)%10)),
- ('0' + ((SIZE / 10)%10)),
- ('0' + (SIZE % 10)),
- ']',
- #ifdef KEY
- ' ','k','e','y','[', KEY, ']',
- #endif
- '\0'};
- #ifdef __CLASSIC_C__
- int main(argc, argv) int argc; char *argv[];
- #else
- int main(int argc, char *argv[])
- #endif
- {
- int require = 0;
- require += info_size[argc];
- (void)argv;
- return require;
- }
- Determining if files sys/types.h;sys/sysctl.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_c1ecb/fast && /usr/bin/make -f CMakeFiles/cmTC_c1ecb.dir/build.make CMakeFiles/cmTC_c1ecb.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_c1ecb.dir/HAVE_SYS_SYSCTL_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_c1ecb.dir/HAVE_SYS_SYSCTL_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SYSCTL_H.c
- In file included from /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SYSCTL_H.c:3:
- /usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror,-W#warnings]
- #warning "The <sys/sysctl.h> header is deprecated and will be removed."
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_c1ecb.dir/build.make:66: CMakeFiles/cmTC_c1ecb.dir/HAVE_SYS_SYSCTL_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_c1ecb/fast] error 2
- Source:
- /* */
- #include <sys/types.h>
- #include <sys/sysctl.h>
- int main(void){return 0;}
- Determining if files sys/filio.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_99ca4/fast && /usr/bin/make -f CMakeFiles/cmTC_99ca4.dir/build.make CMakeFiles/cmTC_99ca4.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_99ca4.dir/HAVE_SYS_FILIO_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_99ca4.dir/HAVE_SYS_FILIO_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_FILIO_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_FILIO_H.c:2:10: fatal error: 'sys/filio.h' file not found
- #include <sys/filio.h>
- ^~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_99ca4.dir/build.make:66: CMakeFiles/cmTC_99ca4.dir/HAVE_SYS_FILIO_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_99ca4/fast] error 2
- Source:
- /* */
- #include <sys/filio.h>
- int main(void){return 0;}
- Determining if files sys/mntent.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_dbefd/fast && /usr/bin/make -f CMakeFiles/cmTC_dbefd.dir/build.make CMakeFiles/cmTC_dbefd.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_dbefd.dir/HAVE_SYS_MNTENT_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_dbefd.dir/HAVE_SYS_MNTENT_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MNTENT_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_SYS_MNTENT_H.c:2:10: fatal error: 'sys/mntent.h' file not found
- #include <sys/mntent.h>
- ^~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_dbefd.dir/build.make:66: CMakeFiles/cmTC_dbefd.dir/HAVE_SYS_MNTENT_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_dbefd/fast] error 2
- Source:
- /* */
- #include <sys/mntent.h>
- int main(void){return 0;}
- Determining if files stdint.h;net/if_media.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_ecd9b/fast && /usr/bin/make -f CMakeFiles/cmTC_ecd9b.dir/build.make CMakeFiles/cmTC_ecd9b.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_ecd9b.dir/HAVE_NET_IFMEDIA_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_ecd9b.dir/HAVE_NET_IFMEDIA_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_NET_IFMEDIA_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_NET_IFMEDIA_H.c:3:10: fatal error: 'net/if_media.h' file not found
- #include <net/if_media.h>
- ^~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_ecd9b.dir/build.make:66: CMakeFiles/cmTC_ecd9b.dir/HAVE_NET_IFMEDIA_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_ecd9b/fast] error 2
- Source:
- /* */
- #include <stdint.h>
- #include <net/if_media.h>
- int main(void){return 0;}
- Determining if files IOKit/serial/ioss.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_c96d9/fast && /usr/bin/make -f CMakeFiles/cmTC_c96d9.dir/build.make CMakeFiles/cmTC_c96d9.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_c96d9.dir/HAVE_IOSS_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_c96d9.dir/HAVE_IOSS_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_IOSS_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_IOSS_H.c:2:10: fatal error: 'IOKit/serial/ioss.h' file not found
- #include <IOKit/serial/ioss.h>
- ^~~~~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_c96d9.dir/build.make:66: CMakeFiles/cmTC_c96d9.dir/HAVE_IOSS_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_c96d9/fast] error 2
- Source:
- /* */
- #include <IOKit/serial/ioss.h>
- int main(void){return 0;}
- Determining if the getpeereid exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_40284/fast && /usr/bin/make -f CMakeFiles/cmTC_40284.dir/build.make CMakeFiles/cmTC_40284.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_40284.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_40284.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'getpeereid'
- return ((int*)(&getpeereid))[argc];
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_40284.dir/build.make:66: CMakeFiles/cmTC_40284.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_40284/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <unistd.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef getpeereid
- return ((int*)(&getpeereid))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if files GSS/GSS.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_3af61/fast && /usr/bin/make -f CMakeFiles/cmTC_3af61.dir/build.make CMakeFiles/cmTC_3af61.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_3af61.dir/HAVE_GSSFW_HEADERS.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_3af61.dir/HAVE_GSSFW_HEADERS.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_GSSFW_HEADERS.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_GSSFW_HEADERS.c:2:10: fatal error: 'GSS/GSS.h' file not found
- #include <GSS/GSS.h>
- ^~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_3af61.dir/build.make:66: CMakeFiles/cmTC_3af61.dir/HAVE_GSSFW_HEADERS.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_3af61/fast] error 2
- Source:
- /* */
- #include <GSS/GSS.h>
- int main(void){return 0;}
- Determining if the GSS_SPNEGO_MECHANISM exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_2819e/fast && /usr/bin/make -f CMakeFiles/cmTC_2819e.dir/build.make CMakeFiles/cmTC_2819e.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_2819e.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_2819e.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: 'gssapi/gssapi.h' file not found
- #include <gssapi/gssapi.h>
- ^~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_2819e.dir/build.make:66: CMakeFiles/cmTC_2819e.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_2819e/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <gssapi/gssapi.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef GSS_SPNEGO_MECHANISM
- return ((int*)(&GSS_SPNEGO_MECHANISM))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if the GSS_KRB5_CRED_NO_CI_FLAGS_X exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_15545/fast && /usr/bin/make -f CMakeFiles/cmTC_15545.dir/build.make CMakeFiles/cmTC_15545.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_15545.dir/CheckSymbolExists.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_15545.dir/CheckSymbolExists.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: 'gssapi/gssapi_krb5.h' file not found
- #include <gssapi/gssapi_krb5.h>
- ^~~~~~~~~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_15545.dir/build.make:66: CMakeFiles/cmTC_15545.dir/CheckSymbolExists.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_15545/fast] error 2
- File /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
- /* */
- #include <gssapi/gssapi_krb5.h>
- int main(int argc, char** argv)
- {
- (void)argv;
- #ifndef GSS_KRB5_CRED_NO_CI_FLAGS_X
- return ((int*)(&GSS_KRB5_CRED_NO_CI_FLAGS_X))[argc];
- #else
- (void)argc;
- return 0;
- #endif
- }
- Determining if files crt_externs.h exist failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_6ecf6/fast && /usr/bin/make -f CMakeFiles/cmTC_6ecf6.dir/build.make CMakeFiles/cmTC_6ecf6.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_6ecf6.dir/HAVE_CRT_EXTERNS_H.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_6ecf6.dir/HAVE_CRT_EXTERNS_H.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_CRT_EXTERNS_H.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CheckIncludeFiles/HAVE_CRT_EXTERNS_H.c:2:10: fatal error: 'crt_externs.h' file not found
- #include <crt_externs.h>
- ^~~~~~~~~~~~~~~
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_6ecf6.dir/build.make:66: CMakeFiles/cmTC_6ecf6.dir/HAVE_CRT_EXTERNS_H.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_6ecf6/fast] error 2
- Source:
- /* */
- #include <crt_externs.h>
- int main(void){return 0;}
- Performing C SOURCE FILE Test HAVE_TCP_H_TCP_KEEPALIVE failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_7108e/fast && /usr/bin/make -f CMakeFiles/cmTC_7108e.dir/build.make CMakeFiles/cmTC_7108e.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_7108e.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_TCP_H_TCP_KEEPALIVE -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_7108e.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c:5:17: error: use of undeclared identifier 'TCP_KEEPALIVE'
- int x = TCP_KEEPALIVE;
- ^
- 1 error generated.
- make[1]: *** [CMakeFiles/cmTC_7108e.dir/build.make:66: CMakeFiles/cmTC_7108e.dir/src.c.o] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_7108e/fast] error 2
- Source file was:
- #include <netinet/tcp.h>
- int main(void)
- {
- int x = TCP_KEEPALIVE;
- return x;
- }
- Performing C SOURCE FILE Test HAVE_BUILTIN_MUL_OVERFLOW failed with the following output:
- Change Dir: /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp
- Run Build Command(s):/usr/bin/make cmTC_839f5/fast && /usr/bin/make -f CMakeFiles/cmTC_839f5.dir/build.make CMakeFiles/cmTC_839f5.dir/build
- make[1]: Entering to directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- Building C object CMakeFiles/cmTC_839f5.dir/src.c.o
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_BUILTIN_MUL_OVERFLOW -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -fPIE -o CMakeFiles/cmTC_839f5.dir/src.c.o -c /home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp/src.c
- Linking C executable cmTC_839f5
- /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_839f5.dir/link.txt --verbose=1
- /usr/bin/clang-6.0 -std=gnu99 -D_GNU_SOURCE -DHAVE_BUILTIN_MUL_OVERFLOW -Werror -Wno-error=unused-value -Wno-error=unused-variable -Wunguarded-availability -pie -Wl,--build-id=sha1 -Wl,-z,relro,-z,now -pie -Wl,--build-id=sha1 -Wl,-z,relro,-z,now CMakeFiles/cmTC_839f5.dir/src.c.o -o cmTC_839f5
- /usr/bin/ld: CMakeFiles/cmTC_839f5.dir/src.c.o: in function `main':
- src.c:(.text+0x2c): undefined reference to `__muloti4'
- clang: error: linker command failed with exit code 1 (use -v to see invocation)
- make[1]: *** [CMakeFiles/cmTC_839f5.dir/build.make:87: cmTC_839f5] error 1
- make[1]: leaving directory '/home/mdev/Desktop/runtime/artifacts/obj/coreclr/Linux.x64.Debug/CMakeFiles/CMakeTmp'
- make: *** [Makefile:121: cmTC_839f5/fast] error 2
- Source file was:
- #include <unistd.h>
- int main(void)
- {
- size_t result;
- (void)__builtin_mul_overflow(0, 0, &result);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement