gst-plugins-bad: avtp: how to notify meson to use custom kernel header

John Rama john.rama01 at gmail.com
Tue Jul 14 21:21:51 UTC 2020


hi

On 2020/07/14 16:44, Desouza, Ederson wrote:
> On Tue, 2020-07-14 at 15:28 -0400, John Rama wrote:
>> Hello, 
>>
> Hi,
> 
>> On 2020/07/13 19:32, Desouza, Ederson wrote:
>>> Hi,
>>>
>>> On Mon, 2020-07-13 at 16:45 -0400, John Rama wrote:
>>>> Hello expert                                                                                            
>>>>                                                                                                         
>>>> I'm now trying to evalute avtp plugin of gst-plugins-bad, however I can not                             
>>>> build avtp plugin successfully because meson can not find "strut sock_txtime"                           
>>>> in "linux/net_tstamp.h" of my system.                                                                   
>>>>                                                                                                         
>>>> I'm using the custom build kernel of 4.19.0 and it's headers are installed at                           
>>>> /usr/src/linux-headers-4.19.0                                                                           
>>>>                                                                                                         
>>>> Question is how can I tell meson to look for /usr/src/linux-headers-4.19.0 ?? 
>>>>                                                                                                         
>>>> Really appreciated your help !!
>>>>
>>>> ============================================================                                                                
>>>>                                                                                                         
>>>> # What I tried                                                                                          
>>>>   I tried followings, but meson can not detect "strut sock_txtime" in "linux/net_tstamp.h".             
>>>>   1. export C_INCLUDE_PATH="/usr/src/linux-headers-4.19.0"                                        
>>>>      to add /usr/src/linux-headers-4.19.0 for default search path.                                
>>>>       $cc -E  -v -                                                                                      
>>>>         ...                                                                                             
>>>>         #include <...> search starts here:                                                              
>>>>        /usr/src/linux-headers-4.19.0                                                              
>>>>        /usr/lib/gcc/x86_64-linux-gnu/6/include                                                          
>>>>        /usr/local/include                                                                               
>>>>        /usr/lib/gcc/x86_64-linux-gnu/6/include-fixed                                                    
>>>>        /usr/include/x86_64-linux-gnu                                                                    
>>>>        /usr/include                                                                                     
>>>>       End of search list.                                                                               
>>>>   2.  add following line in gst-plugins-bad/ext/avtp/meson.build                                        
>>>>       include_directories('/usr/src/linux-headers-4.19.0/')                                       
>>>>                                                                                                         
>>>> # environment                                                                                           
>>>>   I'm using master of gst-build. 
>>>>                                                
>>>>   the version of meson and ninja is as following.                                                       
>>>>   $meson --version                                                                                      
>>>>   0.53.1                                                                                                
>>>>   $ ninja --version                                                                                     
>>>>   17.7.2                                                                                                
>>>>                                                                                                         
>>>> # how to build                                                                                          
>>>>   $meson build 
>>>
>>> Did you try something like `CFLAGS='-I/usr/src/linux-headers-4.19.0' meson build`?
>>>
>> Yes, I tried but no success.. 
> 
> Could you please share the meson-log.txt for this case, or at least the
> relevant part, where it tries to compile the check for the struct?
> 
Thanks for your response.

Sure. 

This is the result of 
$CFLAGS='-I/usr/src/linux-headers-4.19.0-hoge/include' meson build
(Actually linux/net_tstamp.h is located under /usr/src/linux-headers-4.19.0-hoge/include)


Just FYI.
I also asking the same question at meson git issue.
https://github.com/mesonbuild/meson/issues/7456


>>
>>
>>>>                                                                                          
>>>>   $ninja -C build                                                                                       
>>>>                                                                                                         
>>>> # Log of "meson build"                                                                                  
>>>>   |Dependency avtp from subproject subprojects/avtp found: YES 0.1.0                                    
>>>>   |Checking for type "struct sock_txtime" : NO                                                          
>>>>                                                                                                         
>>>> # The code of gst-plugins-bad/ext/avtp/meson.build                                                      
>>>>     if avtp_dep.found() and cc.has_type('struct sock_txtime', prefix : '#include <linux/net_tstamp.h>') 
>>>>        gstavtp = library('gstavtp', avtp_sources,                                                       
>>>>        .....                                                                                            
>>>>     )                                                                                                   
>>>>
>>>> ============================================================
>>>> John Rama
>>>> _______________________________________________
>>>> gstreamer-devel mailing list
>>>> gstreamer-devel at lists.freedesktop.org
>>>> https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

-------------- next part --------------
Build started at 2020-07-14T17:07:11.766097
Main binary: /usr/bin/python3
Build Options: 
Python system: Linux
The Meson build system
Version: 0.53.2
Source dir: /home/makoto/Work/src/gstreamer/gst-build-master
Build dir: /home/makoto/Work/src/gstreamer/gst-build-master/build
Build type: native build
Project name: All GStreamer modules
Project version: 1.17.2.1
Appending CFLAGS from environment: '-I/usr/src/linux-headers-4.19.0-hoge/include'
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Sanity testing C compiler: cc
Is cross compiler: False.
Sanity check compiler command line: cc /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckc.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckc.exe -I/usr/src/linux-headers-4.19.0-hoge/include -pipe -D_FILE_OFFSET_BITS=64
Sanity check compile stdout:

-----
Sanity check compile stderr:

-----
Running test binary command: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckc.exe
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
Appending CFLAGS from environment: '-I/usr/src/linux-headers-4.19.0-hoge/include'
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Sanity testing C compiler: cc
Is cross compiler: False.
Sanity check compiler command line: cc /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckc.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckc.exe -I/usr/src/linux-headers-4.19.0-hoge/include -pipe -D_FILE_OFFSET_BITS=64
Sanity check compile stdout:

-----
Sanity check compile stderr:

-----
Running test binary command: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckc.exe
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Build machine cpu family: x86_64
Build machine cpu: x86_64
Host machine cpu family: x86_64
Host machine cpu: x86_64
Target machine cpu family: x86_64
Target machine cpu: x86_64
Program python3 found: YES (/usr/bin/python3)
Running command: /usr/bin/python3 -c 
import os
assert('GST_ENV' not in os.environ)

--- stdout ---

--- stderr ---



Executing subproject orc method meson 

Project name: orc
Project version: 0.4.29
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgak9s1fw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgak9s1fw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgak9s1fw/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjnktd9js
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjnktd9js/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjnktd9js/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwf8se1c7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwf8se1c7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwf8se1c7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define clock_gettime meson_disable_define_of_clock_gettime
        
        #include <limits.h>
        #undef clock_gettime
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char clock_gettime (void);
        
        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return clock_gettime ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "clock_gettime" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp26988iji
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp26988iji/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp26988iji/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <android/log.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef __android_log_print
                __android_log_print;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp26988iji/testfile.c:2:33: fatal error: android/log.h: No such file or directory
         #include <android/log.h>
                                 ^
compilation terminated.

Header <android/log.h> has symbol "__android_log_print" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiy3l6frm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiy3l6frm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiy3l6frm/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <time.h>
#include <unistd.h>
int main() {
  #if !(defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 && defined(CLOCK_MONOTONIC))
  #error No monotonic clock
  #endif
  return 0;
}

Compiler stdout:
 
Compiler stderr:
 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf8l_ii0h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf8l_ii0h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf8l_ii0h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define gettimeofday meson_disable_define_of_gettimeofday
        
        #include <limits.h>
        #undef gettimeofday
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gettimeofday (void);
        
        #if defined __stub_gettimeofday || defined __stub___gettimeofday
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gettimeofday ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "gettimeofday" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdlib.h>
#include <limits.h>

        #if defined __stub_posix_memalign || defined __stub___posix_memalign
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &posix_memalign;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "posix_memalign" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mmap meson_disable_define_of_mmap
        
        #include <limits.h>
        #undef mmap
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mmap (void);
        
        #if defined __stub_mmap || defined __stub___mmap
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mmap ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "mmap" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/time.h")
          #error "Header 'sys/time.h' could not be found"
         #endif
        #else
         #include <sys/time.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/time.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "unistd.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2_lqaaqw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2_lqaaqw/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("valgrind/valgrind.h")
          #error "Header 'valgrind/valgrind.h' could not be found"
         #endif
        #else
         #include <valgrind/valgrind.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "valgrind/valgrind.h" : YES 
Adding test "test_accsadubl"
Adding test "test-schro"
Adding test "exec_opcodes_sys"
Adding test "exec_parse"
Adding test "perf_opcodes_sys"
Adding test "perf_parse"
Adding test "memcpy_speed"
Adding test "abi"
Adding test "test-limits"
Adding test "test_parse"
Adding test "orc_test"
Adding test "test2"
Adding test "test3"
Program gtkdoc-scan skipped: feature gtk_doc disabled
Message: Not building documentation as gtk-doc was not found
Configuring orc-0.4.pc using configuration
Configuring config.h using configuration
Build targets in project: 44
Subproject orc finished.


Executing subproject gstreamer method meson 

Project name: gstreamer
Project version: 1.17.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5j2bvtp4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5j2bvtp4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5j2bvtp4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx7hsibwt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx7hsibwt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx7hsibwt/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpumzzvpxb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpumzzvpxb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpumzzvpxb/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Message: Disabling deprecated GLib API
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b57_rpf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b57_rpf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dlfcn.h")
          #error "Header 'dlfcn.h' could not be found"
         #endif
        #else
         #include <dlfcn.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "dlfcn.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "inttypes.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "memory.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw3yy4qfo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw3yy4qfo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("poll.h")
          #error "Header 'poll.h' could not be found"
         #endif
        #else
         #include <poll.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "poll.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "stdint.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsa0dkma
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsa0dkma/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdio_ext.h")
          #error "Header 'stdio_ext.h' could not be found"
         #endif
        #else
         #include <stdio_ext.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "stdio_ext.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "strings.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "string.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprfo9azny
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprfo9azny/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/param.h")
          #error "Header 'sys/param.h' could not be found"
         #endif
        #else
         #include <sys/param.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/param.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptptg2dij
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptptg2dij/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/poll.h")
          #error "Header 'sys/poll.h' could not be found"
         #endif
        #else
         #include <sys/poll.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/poll.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps3v0xahw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps3v0xahw/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/prctl.h")
          #error "Header 'sys/prctl.h' could not be found"
         #endif
        #else
         #include <sys/prctl.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/prctl.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/socket.h")
          #error "Header 'sys/socket.h' could not be found"
         #endif
        #else
         #include <sys/socket.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/socket.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/stat.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphapow99a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphapow99a/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/times.h")
          #error "Header 'sys/times.h' could not be found"
         #endif
        #else
         #include <sys/times.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/times.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/time.h")
          #error "Header 'sys/time.h' could not be found"
         #endif
        #else
         #include <sys/time.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/time.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/types.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3tyfy158
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3tyfy158/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/utsname.h")
          #error "Header 'sys/utsname.h' could not be found"
         #endif
        #else
         #include <sys/utsname.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/utsname.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq_gts9c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq_gts9c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/wait.h")
          #error "Header 'sys/wait.h' could not be found"
         #endif
        #else
         #include <sys/wait.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/wait.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjwg3de5l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjwg3de5l/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("ucontext.h")
          #error "Header 'ucontext.h' could not be found"
         #endif
        #else
         #include <ucontext.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "ucontext.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2_lqaaqw/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("valgrind/valgrind.h")
          #error "Header 'valgrind/valgrind.h' could not be found"
         #endif
        #else
         #include <valgrind/valgrind.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "valgrind/valgrind.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu44gln6u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu44gln6u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/resource.h")
          #error "Header 'sys/resource.h' could not be found"
         #endif
        #else
         #include <sys/resource.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/resource.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l3y0mto
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l3y0mto/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/uio.h")
          #error "Header 'sys/uio.h' could not be found"
         #endif
        #else
         #include <sys/uio.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/uio.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw4lrdu9i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw4lrdu9i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw4lrdu9i/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
        void bar(void) {
            struct tm foo;
            foo.tm_gmtoff;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct tm" has member "tm_gmtoff" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define gmtime_r meson_disable_define_of_gmtime_r
        
        #include <limits.h>
        #undef gmtime_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gmtime_r (void);
        
        #if defined __stub_gmtime_r || defined __stub___gmtime_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gmtime_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "gmtime_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzu_xbn0h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzu_xbn0h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzu_xbn0h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define sigaction meson_disable_define_of_sigaction
        
        #include <limits.h>
        #undef sigaction
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sigaction (void);
        
        #if defined __stub_sigaction || defined __stub___sigaction
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sigaction ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "sigaction" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp13__7zeh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp13__7zeh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp13__7zeh/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getrusage meson_disable_define_of_getrusage
        
        #include <limits.h>
        #undef getrusage
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getrusage (void);
        
        #if defined __stub_getrusage || defined __stub___getrusage
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getrusage ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getrusage" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_4gtft_f
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_4gtft_f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_4gtft_f/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fseeko meson_disable_define_of_fseeko
        
        #include <limits.h>
        #undef fseeko
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fseeko (void);
        
        #if defined __stub_fseeko || defined __stub___fseeko
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fseeko ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "fseeko" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpopahlvtl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpopahlvtl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpopahlvtl/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define ftello meson_disable_define_of_ftello
        
        #include <limits.h>
        #undef ftello
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char ftello (void);
        
        #if defined __stub_ftello || defined __stub___ftello
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return ftello ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "ftello" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define poll meson_disable_define_of_poll
        
        #include <limits.h>
        #undef poll
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char poll (void);
        
        #if defined __stub_poll || defined __stub___poll
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return poll ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "poll" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkmx2q038
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkmx2q038/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkmx2q038/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define ppoll meson_disable_define_of_ppoll
        
        #include <limits.h>
        #undef ppoll
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char ppoll (void);
        
        #if defined __stub_ppoll || defined __stub___ppoll
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return ppoll ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "ppoll" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7128eg8w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7128eg8w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7128eg8w/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define pselect meson_disable_define_of_pselect
        
        #include <limits.h>
        #undef pselect
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pselect (void);
        
        #if defined __stub_pselect || defined __stub___pselect
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pselect ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "pselect" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuhe8lg49
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuhe8lg49/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuhe8lg49/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getpagesize meson_disable_define_of_getpagesize
        
        #include <limits.h>
        #undef getpagesize
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpagesize (void);
        
        #if defined __stub_getpagesize || defined __stub___getpagesize
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpagesize ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getpagesize" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define clock_gettime meson_disable_define_of_clock_gettime
        
        #include <limits.h>
        #undef clock_gettime
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char clock_gettime (void);
        
        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return clock_gettime ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "clock_gettime" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strnlen meson_disable_define_of_strnlen
        
        #include <limits.h>
        #undef strnlen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strnlen (void);
        
        #if defined __stub_strnlen || defined __stub___strnlen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strnlen ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strnlen" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpow0n402u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpow0n402u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpow0n402u/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getline meson_disable_define_of_getline
        
        #include <limits.h>
        #undef getline
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getline (void);
        
        #if defined __stub_getline || defined __stub___getline
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getline ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getline" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuoww7w9x
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuoww7w9x/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuoww7w9x/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mkstemp meson_disable_define_of_mkstemp
        
        #include <limits.h>
        #undef mkstemp
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mkstemp (void);
        
        #if defined __stub_mkstemp || defined __stub___mkstemp
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mkstemp ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "mkstemp" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd0fwms3s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd0fwms3s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd0fwms3s/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define alarm meson_disable_define_of_alarm
        
        #include <limits.h>
        #undef alarm
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char alarm (void);
        
        #if defined __stub_alarm || defined __stub___alarm
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return alarm ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "alarm" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf8l_ii0h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf8l_ii0h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define gettimeofday meson_disable_define_of_gettimeofday
        
        #include <limits.h>
        #undef gettimeofday
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gettimeofday (void);
        
        #if defined __stub_gettimeofday || defined __stub___gettimeofday
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gettimeofday ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "gettimeofday" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3p1pfloh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3p1pfloh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3p1pfloh/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<time.h>
#include <limits.h>

        #if defined __stub_localtime_r || defined __stub___localtime_r
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &localtime_r;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "localtime_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazi9c7hw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazi9c7hw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazi9c7hw/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <pthread.h>
               int main() {
                 pthread_setname_np("example"); return 0;
               }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazi9c7hw/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazi9c7hw/testfile.c:3:18: warning: implicit declaration of function 'pthread_setname_np' [-Wimplicit-function-declaration]
                  pthread_setname_np("example"); return 0;
                  ^~~~~~~~~~~~~~~~~~
/tmp/ccgefeEG.o: In function `main':
testfile.c:(.text+0x11): undefined reference to `pthread_setname_np'
collect2: error: ld returned 1 exit status

Checking if "pthread_setname_np(const char*)" links: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_condattr_setclock
                pthread_condattr_setclock;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <pthread.h> has symbol "pthread_condattr_setclock" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_cond_timedwait_relative_np
                pthread_cond_timedwait_relative_np;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c:6:17: error: 'pthread_cond_timedwait_relative_np' undeclared (first use in this function)
                 pthread_cond_timedwait_relative_np;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c:6:17: note: each undeclared identifier is reported only once for each function it appears in

Header <pthread.h> has symbol "pthread_cond_timedwait_relative_np" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <linux/futex.h>
               #include <sys/syscall.h>
               #include <unistd.h>
               int main (int argc, char ** argv) {
                 syscall (__NR_futex, NULL, FUTEX_WAKE, FUTEX_WAIT);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 
Checking if "futex(2) system call" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp02wl_gf_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp02wl_gf_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp02wl_gf_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
#include <unistd.h>
#if !defined(_POSIX_TIMERS) || _POSIX_TIMERS < 0 || !defined(CLOCK_REALTIME)
#error Either _POSIX_TIMERS or CLOCK_REALTIME not defined
#endif

Compiler stdout:
 
Compiler stderr:
 
Checking if "posix timers from time.h" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphbfiypw_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphbfiypw_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphbfiypw_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
#include <unistd.h>
#if !defined(_POSIX_MONOTONIC_CLOCK) || _POSIX_MONOTONIC_CLOCK < 0 || !defined(CLOCK_MONOTONIC)
#error Either _POSIX_MONOTONIC_CLOCK or CLOCK_MONOTONIC not defined
#endif

Compiler stdout:
 
Compiler stderr:
 
Checking if "monotonic clock from time.h" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp93jlzrfa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp93jlzrfa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp93jlzrfa/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 int main() {
static __uint128_t v1 = 100;
static __uint128_t v2 = 10;
static __uint128_t u;
u = v1 / v2;
}
Compiler stdout:
 
Compiler stderr:
 
Checking if "__uint128_t available" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpal7oqv6o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpal7oqv6o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpal7oqv6o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getpid meson_disable_define_of_getpid
        
        #include <limits.h>
        #undef getpid
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpid (void);
        
        #if defined __stub_getpid || defined __stub___getpid
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpid ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getpid" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1dkvu4f5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1dkvu4f5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1dkvu4f5/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strdup meson_disable_define_of_strdup
        
        #include <limits.h>
        #undef strdup
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strdup (void);
        
        #if defined __stub_strdup || defined __stub___strdup
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strdup ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1dkvu4f5/testfile.c:10:14: warning: conflicting types for built-in function 'strdup'
         char strdup (void);
              ^~~~~~

Checking for function "strdup" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strsignal meson_disable_define_of_strsignal
        
        #include <limits.h>
        #undef strsignal
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strsignal (void);
        
        #if defined __stub_strsignal || defined __stub___strsignal
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strsignal ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strsignal" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5i_d9vwq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5i_d9vwq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5i_d9vwq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
        void bar(void) {
            sizeof(clockid_t);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "clockid_t" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplcn8c3z8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplcn8c3z8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplcn8c3z8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
        void bar(void) {
            sizeof(timer_t);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "timer_t" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7700ia0a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7700ia0a/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7700ia0a/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
        void bar(void) {
            struct timespec foo;
            foo.tv_sec;
foo.tv_nsec;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct timespec" has members "tv_sec", "tv_nsec" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk5k41ra0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk5k41ra0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk5k41ra0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <time.h>
        void bar(void) {
            struct itimerspec foo;
            foo.it_interval;
foo.it_value;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct itimerspec" has members "it_interval", "it_value" : YES 
Pkg-config binary for MachineChoice.HOST is not cached.
Pkg-config binary missing from cross or native file, or env var undefined.
Trying a default pkg-config fallback at pkg-config
Trying pkg-config binary pkg-config for machine MachineChoice.HOST at ['/usr/bin/pkg-config']
Found pkg-config: /usr/bin/pkg-config (0.29)
Determining dependency 'libunwind' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libunwind` -> 1

CMake binary for MachineChoice.HOST is not cached
CMake binary missing from cross or native file, or env var undefined.
Trying a default CMake fallback at cmake
Trying CMake binary cmake for machine MachineChoice.HOST at ['/usr/bin/cmake']
Found CMake: /usr/bin/cmake (3.7.2)
Extracting basic cmake information
Try CMake generator: auto
No CXXFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Failed to find a fortran compiler for CMake. This might cause CMake to fail.
Called `/usr/bin/cmake --trace-expand .` in /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_libunwind -> 0
  -- Module search paths:    ['/', '/usr', '/usr/local']
  -- CMake root:             /usr/share/cmake-3.7
  -- CMake architectures:    ['x86_64-linux-gnu']
  -- CMake lib search paths: ['lib', 'lib32', 'lib64', 'libx32', 'share', 'lib/x86_64-linux-gnu']
Preliminary CMake check failed. Aborting.
Run-time dependency libunwind found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdw' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libdw` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdw found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'DbgHelp' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion DbgHelp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency dbghelp found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeagggt82
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeagggt82/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeagggt82/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define backtrace meson_disable_define_of_backtrace
        
        #include <limits.h>
        #undef backtrace
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char backtrace (void);
        
        #if defined __stub_backtrace || defined __stub___backtrace
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return backtrace ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "backtrace" : YES 
Message: Minimal support for stack traces, no source info.
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmm67e3yj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmm67e3yj/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("execinfo.h")
          #error "Header 'execinfo.h' could not be found"
         #endif
        #else
         #include <execinfo.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "execinfo.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkfvy_iu6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkfvy_iu6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkfvy_iu6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <execinfo.h>
#include <limits.h>

        #if defined __stub_backtrace || defined __stub___backtrace
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &backtrace;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "backtrace" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8vdh4qam
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8vdh4qam/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8vdh4qam/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_k4r906w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_k4r906w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_k4r906w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3t928bg7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3t928bg7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3t928bg7/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8ep1ko84
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8ep1ko84/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8ep1ko84/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wundef 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wundef: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5igc6csi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5igc6csi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5igc6csi/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt8gbkyse
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt8gbkyse/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt8gbkyse/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgfkhvr3t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgfkhvr3t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgfkhvr3t/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C supports arguments -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1reezl1v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1reezl1v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1reezl1v/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo8qb2s1v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo8qb2s1v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo8qb2s1v/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wold-style-definition: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjthuc_r7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjthuc_r7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjthuc_r7/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfb9ydy7a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfb9ydy7a/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfb9ydy7a/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Wmissing-include-dirs]

Compiler for C supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplud4vg6p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplud4vg6p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplud4vg6p/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqgjtvh0w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqgjtvh0w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqgjtvh0w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waggregate-return 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waggregate-return: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4kacd7l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4kacd7l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4kacd7l/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp33z4kh_b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp33z4kh_b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp33z4kh_b/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp41word1r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp41word1r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp41word1r/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmgf8ydz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmgf8ydz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmgf8ydz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp16o4d62a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp16o4d62a/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp16o4d62a/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lgmp -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lgmp
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5xr6dwhg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5xr6dwhg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5xr6dwhg/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwgyy79d_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwgyy79d_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwgyy79d_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 --print-search-dirs 

Code:
 
Compiler stdout:
 install: /usr/lib/gcc/x86_64-linux-gnu/6/
programs: =/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/
libraries: =/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../lib/:/lib/x86_64-linux-gnu/6/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/6/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../:/lib/:/usr/lib/

Compiler stderr:
 
Library gmp found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp242kg26i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp242kg26i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp242kg26i/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lgsl -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lgsl
collect2: error: ld returned 1 exit status

Library gsl found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2rcebg1_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2rcebg1_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2rcebg1_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lgslcblas -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lgslcblas
collect2: error: ld returned 1 exit status

Library gslcblas found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpre7l53l6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpre7l53l6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpre7l53l6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -ldl -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Library dl found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppy0os5l3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppy0os5l3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppy0os5l3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -ldl -Wl,--end-group 

Code:
 
        #define dladdr meson_disable_define_of_dladdr
        
        #include <limits.h>
        #undef dladdr
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char dladdr (void);
        
        #if defined __stub_dladdr || defined __stub___dladdr
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return dladdr ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "dladdr" with dependency -ldl: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'glib-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion glib-2.0` -> 0
2.50.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags glib-2.0` -> 0
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config glib-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lglib-2.0
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config glib-2.0 --libs` -> 0
-lglib-2.0
Run-time dependency glib-2.0 found: YES 2.50.3
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gobject-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gobject-2.0` -> 0
2.50.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags gobject-2.0` -> 0
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gobject-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lgobject-2.0 -lglib-2.0
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gobject-2.0 --libs` -> 0
-lgobject-2.0 -lglib-2.0
Run-time dependency gobject-2.0 found: YES 2.50.3
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gmodule-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gmodule-2.0` -> 0
2.50.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags gmodule-2.0` -> 0
-pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gmodule-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gmodule-2.0 --libs` -> 0
-Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0
Run-time dependency gmodule-2.0 found: YES 2.50.3
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gio-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gio-2.0` -> 0
2.50.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags gio-2.0` -> 0
-pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gio-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lgio-2.0 -lgobject-2.0 -lglib-2.0
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gio-2.0 --libs` -> 0
-lgio-2.0 -lgobject-2.0 -lglib-2.0
Run-time dependency gio-2.0 found: YES 2.50.3
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gio-unix-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gio-unix-2.0` -> 0
2.50.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags gio-unix-2.0` -> 0
-pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gio-unix-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lgio-2.0 -lgobject-2.0 -lglib-2.0
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gio-unix-2.0 --libs` -> 0
-lgio-2.0 -lgobject-2.0 -lglib-2.0
Run-time dependency gio-unix-2.0 found: YES 2.50.3
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn64xl7ny
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn64xl7ny/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn64xl7ny/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lrt -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Library rt found: YES
Program g-ir-scanner found: NO
Program python3 found: YES (/usr/bin/python3)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'bash-completion' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion bash-completion` -> 0
2.1
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags bash-completion` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config bash-completion --libs` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config bash-completion --libs` -> 0

Run-time dependency bash-completion found: YES 2.1
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --define-variable=prefix=/usr/local --variable=completionsdir bash-completion` -> 0
/usr/local/share/bash-completion/completions
Got pkgconfig variable completionsdir : /usr/local/share/bash-completion/completions
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --define-variable=prefix=/usr/local --variable=helpersdir bash-completion` -> 0
/usr/local/share/bash-completion/helpers
Got pkgconfig variable helpersdir : /usr/local/share/bash-completion/helpers
Configuring gstconfig.h using configuration
Configuring gstversion.h using configuration
Program flex found: YES (/usr/bin/flex)
Program get_flex_version.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gstreamer/gst/parse/get_flex_version.py)
Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gstreamer/gst/parse/get_flex_version.py /usr/bin/flex
--- stdout ---
2.6.1

--- stderr ---


Message: flex version 2.6.1 >= 2.5.31: YES
Configuring gen_lex.py using configuration
Program bison found: YES (/usr/bin/bison)
Running command: /usr/bin/bison --version
--- stdout ---
bison (GNU Bison) 3.0.4
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Message: bison version 3.0.4 >= 2.4: YES
Configuring grammar.y using configuration
Configuring gen_grammar.py using configuration
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi8z8wqq9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi8z8wqq9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi8z8wqq9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-format-nonliteral -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 long long ll = 1LL;
                  int i = 63;
                  int some_func (void) {
                    long long llmax = (long long) -1;
                    return ll << i | ll >> i | llmax / ll | llmax % ll;
                  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "long long" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0ilsgmup
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0ilsgmup/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0ilsgmup/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
                  #include <inttypes.h>
                  uintmax_t i = (uintmax_t) -1;
               
Compiler stdout:
 
Compiler stderr:
 
Checking if "uintmax_t in inttypes.h" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxjsvdsvu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxjsvdsvu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxjsvdsvu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
                  #include <stdint.h>
                  uintmax_t i = (uintmax_t) -1;
               
Compiler stdout:
 
Compiler stderr:
 
Checking if "uintmax_t in stdint.h" compiles: YES 
Message: PTP supported on linux.
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjuhafjds
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjuhafjds/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjuhafjds/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/ioctl.h>
                    #include <net/if.h>
                    int some_func (void) {
                      struct ifreq ifr;
                      struct ifconf ifc;
                      ioctl(0, SIOCGIFCONF, &ifc);
                      ioctl(0, SIOCGIFFLAGS, &ifr);
                      ioctl(0, SIOCGIFHWADDR, &ifr);
                      return ifr.ifr_hwaddr.sa_data[0];
                    }
Compiler stdout:
 
Compiler stderr:
 
Checking if "SIOCGIFCONF, SIOCGIFFLAGS and SIOCGIFHWADDR available" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzhut_wz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzhut_wz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzhut_wz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <ifaddrs.h>
                    #include <net/if.h>
                    #include <net/if_dl.h>
                    int some_func (void) {
                      struct ifaddrs *ifaddr;
                      getifaddrs(&ifaddr);
                      return (ifaddr->ifa_flags & IFF_LOOPBACK) && ifaddr->ifa_addr->sa_family != AF_LINK;
                    }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzhut_wz/testfile.c:3:43: fatal error: net/if_dl.h: No such file or directory
                     #include <net/if_dl.h>
                                           ^
compilation terminated.

Checking if "getifaddrs() and AF_LINK available" compiles: NO 
Program setcap found: NO
Program /usr/sbin/setcap found: NO
Program /sbin/setcap found: YES (/sbin/setcap)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libcap' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libcap` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libcap found: NO (tried pkgconfig and cmake)
Message: How to install gst-ptp-helper: setuid-root
Program ptp_helper_post_install.sh found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gstreamer/libs/gst/helpers/ptp_helper_post_install.sh)
Configuring libgstreamer-1.0.so.0.1702.0-gdb.py using configuration
Configuring check.h using configuration
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjhsiu_o5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjhsiu_o5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjhsiu_o5/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-undef -Wundef 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-undef -Wundef: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpviznub0e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpviznub0e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpviznub0e/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-redundant-decls -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-redundant-decls -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgk1t6i2k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgk1t6i2k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgk1t6i2k/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-missing-prototypes -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2kn84mrz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2kn84mrz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2kn84mrz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-missing-declarations -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp15s64r2v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp15s64r2v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp15s64r2v/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-old-style-definition -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-old-style-definition -Wold-style-definition: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv6quu2nn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv6quu2nn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv6quu2nn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-declaration-after-statement -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-declaration-after-statement -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2yywjfot
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2yywjfot/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2yywjfot/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-format-nonliteral -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprz3kydnb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprz3kydnb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprz3kydnb/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-tautological-constant-out-of-range-compare -Wtautological-constant-out-of-range-compare 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wtautological-constant-out-of-range-compare'

Compiler for C supports arguments -Wno-tautological-constant-out-of-range-compare -Wtautological-constant-out-of-range-compare: NO 
Configuring internal-check.h using configuration
Configuring gstreamer-base-1.0.pc using configuration
Configuring gstreamer-base-1.0-uninstalled.pc using configuration
Configuring gstreamer-controller-1.0.pc using configuration
Configuring gstreamer-controller-1.0-uninstalled.pc using configuration
Configuring gstreamer-net-1.0.pc using configuration
Configuring gstreamer-net-1.0-uninstalled.pc using configuration
Configuring gstreamer-1.0.pc using configuration
Configuring gstreamer-1.0-uninstalled.pc using configuration
Configuring gstreamer-check-1.0.pc using configuration
Configuring gstreamer-check-1.0-uninstalled.pc using configuration
Adding test "validate.simplest"
subprojects/gstreamer/tests/check/meson.build:116: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
No CXXFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Sanity testing C++ compiler: c++
Is cross compiler: False.
Sanity check compiler command line: c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckcpp.cc -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckcpp.exe -pipe -D_FILE_OFFSET_BITS=64
Sanity check compile stdout:

-----
Sanity check compile stderr:

-----
Running test binary command: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckcpp.exe
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
No CXXFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Sanity testing C++ compiler: c++
Is cross compiler: False.
Sanity check compiler command line: c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckcpp.cc -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckcpp.exe -pipe -D_FILE_OFFSET_BITS=64
Sanity check compile stdout:

-----
Sanity check compile stderr:

-----
Running test binary command: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/sanitycheckcpp.exe
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Adding test "gst_gst"
Adding test "gst_gstabi"
Adding test "gst_gstatomicqueue"
Adding test "gst_gstbuffer"
Adding test "gst_gstbufferlist"
Adding test "gst_gstbufferpool"
Adding test "gst_gstchildproxy"
Adding test "gst_gstclock"
Adding test "gst_gstcontext"
Adding test "gst_gstcontroller"
Adding test "gst_gstcaps"
Adding test "gst_gstcapsfeatures"
Adding test "gst_gstdatetime"
Adding test "gst_gstdeinit"
Adding test "gst_gstdevice"
Adding test "gst_gstelement"
Adding test "gst_gstelementfactory"
Adding test "gst_gstghostpad"
Adding test "gst_gstinfo"
Adding test "gst_gstiterator"
Adding test "gst_gstmessage"
Adding test "gst_gstmemory"
Adding test "gst_gstmeta"
Adding test "gst_gstminiobject"
Adding test "gst_gstobject"
Adding test "gst_gstpad"
Adding test "gst_gstparamspecs"
Adding test "gst_gstprintf"
Adding test "gst_gstpipeline"
Adding test "gst_gstpoll"
Adding test "gst_gstplugin"
Adding test "gst_gstpreset"
Adding test "gst_gstprotection"
Adding test "gst_gstquery"
Adding test "gst_gstregistry"
Adding test "gst_gstpromise"
Adding test "gst_gstsegment"
Adding test "gst_gststream"
Adding test "gst_gststructure"
Adding test "gst_gstsystemclock"
Adding test "gst_gsttag"
Adding test "gst_gsttagsetter"
Adding test "gst_gsttask"
Adding test "gst_gsttoc"
Adding test "gst_gsttocsetter"
Adding test "gst_gsttracerrecord"
Adding test "gst_gsturi"
Adding test "gst_gstutils"
Adding test "gst_gstvalue"
Adding test "generic_states"
Adding test "libs_adapter"
Adding test "libs_aggregator"
Adding test "libs_baseparse"
Adding test "libs_basesrc"
Adding test "libs_basesink"
Adding test "libs_bitreader"
Adding test "libs_bitwriter"
Adding test "libs_bytereader"
Adding test "libs_bytewriter"
Adding test "libs_bitreader_noinline"
Adding test "libs_bytereader_noinline"
Adding test "libs_bytewriter_noinline"
Adding test "libs_collectpads"
Adding test "libs_controller"
Adding test "libs_flowcombiner"
Adding test "libs_gstharness"
Adding test "libs_gstnetclientclock"
Adding test "libs_gstnettimeprovider"
Adding test "libs_gsttestclock"
Adding test "libs_libsabi"
Adding test "libs_sparsefile"
Adding test "libs_transform1"
Adding test "libs_transform2"
Adding test "libs_typefindhelper"
Adding test "libs_queuearray"
Adding test "elements_capsfilter"
Adding test "elements_clocksync"
Adding test "elements_concat"
Adding test "elements_dataurisrc"
Adding test "elements_fakesrc"
Adding test "elements_fdsrc"
Adding test "elements_filesink"
Adding test "elements_filesrc"
Adding test "elements_funnel"
Adding test "elements_identity"
Adding test "elements_leaks"
Adding test "elements_multiqueue"
Adding test "elements_selector"
Adding test "elements_streamiddemux"
Adding test "elements_tee"
Adding test "elements_queue"
Adding test "elements_queue2"
Adding test "elements_valve"
Adding test "pipelines_seek"
Adding test "pipelines_queue_error"
Adding test "pipelines_simple_launch_lines"
Adding test "pipelines_parse_launch"
Adding test "pipelines_cleanup"
Adding test "tools_gstinspect"
Adding test "elements_fakesink"
Adding test "gst_gstbin"
Adding test "gst_gstbus"
Adding test "gst_gstevent"
Adding test "pipelines_stress"
Adding test "generic_sinks"
Adding test "gst_gstcpp"
Adding test "libs_gstlibscpp"
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gtk+-3.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-3.0 found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4cwku4ry
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4cwku4ry/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("pthread.h")
          #error "Header 'pthread.h' could not be found"
         #endif
        #else
         #include <pthread.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "pthread.h" : YES 
Run-time dependency threads found: YES
Configuring gst using configuration
Program /home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gstreamer/docs/gst-plugins-doc-cache-generator found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gstreamer/docs/gst-plugins-doc-cache-generator)
Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Program xgettext found: YES (/usr/bin/xgettext)
Configuring config.h using configuration
Running command: /usr/bin/python3 -c import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")
--- stdout ---

--- stderr ---


Build targets in project: 204
Subproject gstreamer finished.

Running command: /usr/bin/python3 -c 
import os

os.symlink(os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'subprojects', 'gstreamer'),
  os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'gstreamer'))

--- stdout ---

--- stderr ---
Traceback (most recent call last):
  File "<string>", line 5, in <module>
FileExistsError: [Errno 17] File exists: '/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gstreamer' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gstreamer'



Executing subproject gst-plugins-base method meson 

Project name: gst-plugins-base
Project version: 1.17.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
subprojects/gst-plugins-base/meson.build:19: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
subprojects/gst-plugins-base/meson.build:20: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
No OBJCFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Compiler for language objc for the build machine not found.
No OBJCFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Compiler for language objc for the host machine not found.
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ujluq1y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ujluq1y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ujluq1y/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3czju0y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3czju0y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3czju0y/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl4jlv7ny
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl4jlv7ny/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl4jlv7ny/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Message: Disabling deprecated GLib API
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b57_rpf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dlfcn.h")
          #error "Header 'dlfcn.h' could not be found"
         #endif
        #else
         #include <dlfcn.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "dlfcn.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmyj55dx2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmyj55dx2/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("emmintrin.h")
          #error "Header 'emmintrin.h' could not be found"
         #endif
        #else
         #include <emmintrin.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "emmintrin.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "inttypes.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "memory.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsryee5ev
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsryee5ev/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("netinet/in.h")
          #error "Header 'netinet/in.h' could not be found"
         #endif
        #else
         #include <netinet/in.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "netinet/in.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvf8_i0k6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvf8_i0k6/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("netinet/tcp.h")
          #error "Header 'netinet/tcp.h' could not be found"
         #endif
        #else
         #include <netinet/tcp.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "netinet/tcp.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lo095m5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lo095m5/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("process.h")
          #error "Header 'process.h' could not be found"
         #endif
        #else
         #include <process.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lo095m5/testfile.c:4:12: error: #error "Header 'process.h' could not be found"
           #error "Header 'process.h' could not be found"
            ^~~~~

Has header "process.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvb4atyyb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvb4atyyb/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("smmintrin.h")
          #error "Header 'smmintrin.h' could not be found"
         #endif
        #else
         #include <smmintrin.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "smmintrin.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdint.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "strings.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/socket.h")
          #error "Header 'sys/socket.h' could not be found"
         #endif
        #else
         #include <sys/socket.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/socket.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq_gts9c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/wait.h")
          #error "Header 'sys/wait.h' could not be found"
         #endif
        #else
         #include <sys/wait.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/wait.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("winsock2.h")
          #error "Header 'winsock2.h' could not be found"
         #endif
        #else
         #include <winsock2.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c:4:12: error: #error "Header 'winsock2.h' could not be found"
           #error "Header 'winsock2.h' could not be found"
            ^~~~~

Has header "winsock2.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyqnrxb0z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyqnrxb0z/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("xmmintrin.h")
          #error "Header 'xmmintrin.h' could not be found"
         #endif
        #else
         #include <xmmintrin.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "xmmintrin.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr58yy87f
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr58yy87f/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/dma-buf.h")
          #error "Header 'linux/dma-buf.h' could not be found"
         #endif
        #else
         #include <linux/dma-buf.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr58yy87f/testfile.c:4:12: error: #error "Header 'linux/dma-buf.h' could not be found"
           #error "Header 'linux/dma-buf.h' could not be found"
            ^~~~~

Has header "linux/dma-buf.h" : NO 
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp05l6wr4k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp05l6wr4k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp05l6wr4k/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<libintl.h>
#include <limits.h>

        #if defined __stub_dcgettext || defined __stub___dcgettext
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &dcgettext;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "dcgettext" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3sqc0c_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3sqc0c_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3sqc0c_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<time.h>
#include <limits.h>

        #if defined __stub_gmtime_r || defined __stub___gmtime_r
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &gmtime_r;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "gmtime_r" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkr0f_jtx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkr0f_jtx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkr0f_jtx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<time.h>
#include <limits.h>

        #if defined __stub_localtime_r || defined __stub___localtime_r
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &localtime_r;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "localtime_r" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnfsw5ha3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnfsw5ha3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnfsw5ha3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<math.h>
#include <limits.h>

        #if defined __stub_lrintf || defined __stub___lrintf
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &lrintf;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "lrintf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplx93pcat
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplx93pcat/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplx93pcat/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<sys/mman.h>
#include <limits.h>

        #if defined __stub_mmap || defined __stub___mmap
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &mmap;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "mmap" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcwl8d3_4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcwl8d3_4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcwl8d3_4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<math.h>
#include <limits.h>

        #if defined __stub_log2 || defined __stub___log2
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &log2;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "log2" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpme5yk9ii
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpme5yk9ii/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpme5yk9ii/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(char)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Checking for size of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy926av8c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy926av8c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy926av8c/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(int)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkgtpzo0t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkgtpzo0t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkgtpzo0t/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6el258y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6el258y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6el258y/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(short)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Checking for size of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7cbdkvci
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7cbdkvci/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7cbdkvci/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void*)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_93thvwo
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_93thvwo/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_93thvwo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Waggregate-return 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Waggregate-return: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpia49tkqn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpia49tkqn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpia49tkqn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdbg2jstj
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdbg2jstj/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdbg2jstj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplbhqwrmi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplbhqwrmi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplbhqwrmi/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp774p5_ff
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp774p5_ff/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp774p5_ff/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc5kjhmry
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc5kjhmry/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc5kjhmry/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wundef 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wundef: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2sv6c398
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2sv6c398/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2sv6c398/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wundef 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wundef: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphgp74gzm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphgp74gzm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphgp74gzm/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_018wuea
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_018wuea/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_018wuea/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ty3txgu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ty3txgu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ty3txgu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu0mdmvlk
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu0mdmvlk/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu0mdmvlk/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaqgl1m6e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaqgl1m6e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaqgl1m6e/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C supports arguments -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv3neuqza
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv3neuqza/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv3neuqza/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1plus: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C++ supports arguments -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv9vulvak
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv9vulvak/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv9vulvak/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfqpj88pk
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfqpj88pk/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfqpj88pk/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1plus: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C++ supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0dnpttyc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0dnpttyc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0dnpttyc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp5supyrr
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp5supyrr/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp5supyrr/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr_je6t2t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr_je6t2t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr_je6t2t/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Wmissing-include-dirs]

Compiler for C supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt_jb1nux
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt_jb1nux/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt_jb1nux/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe7rbvljk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe7rbvljk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe7rbvljk/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaw9zj8u_
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaw9zj8u_/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaw9zj8u_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpls6hdxwy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpls6hdxwy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpls6hdxwy/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknidy1gt
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknidy1gt/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknidy1gt/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6bg3k4ji
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6bg3k4ji/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6bg3k4ji/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpviih9gr5
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpviih9gr5/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpviih9gr5/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92_8fmjg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92_8fmjg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92_8fmjg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp28qkqbei
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp28qkqbei/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp28qkqbei/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbq8jawqd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbq8jawqd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbq8jawqd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiz8dxzac
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiz8dxzac/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiz8dxzac/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'x11' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion x11` -> 0
1.6.4
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags x11` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config x11 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lX11
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config x11 --libs` -> 0
-lX11
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqr08gxji
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqr08gxji/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqr08gxji/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vubibpl
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vubibpl/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vubibpl/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive --print-search-dirs 

Code:
 
Compiler stdout:
 install: /usr/lib/gcc/x86_64-linux-gnu/6/
programs: =/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/
libraries: =/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../lib/:/lib/x86_64-linux-gnu/6/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/6/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../:/lib/:/usr/lib/

Compiler stderr:
 
Run-time dependency x11 found: YES 1.6.4
Dependency glib-2.0 found: YES 2.50.3 (cached)
Dependency gobject-2.0 found: YES 2.50.3 (cached)
Dependency gio-2.0 found: YES 2.50.3 (cached)
Dependency gio-unix-2.0 found: YES 2.50.3 (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gmodule-no-export-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gmodule-no-export-2.0` -> 0
2.50.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags gmodule-no-export-2.0` -> 0
-pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gmodule-no-export-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lgmodule-2.0 -pthread -lglib-2.0
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config gmodule-no-export-2.0 --libs` -> 0
-lgmodule-2.0 -pthread -lglib-2.0
Run-time dependency gmodule-no-export-2.0 found: YES 2.50.3
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gdk-pixbuf-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gdk-pixbuf-2.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gdk-pixbuf-2.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-3.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-x11-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gtk+-x11-3.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-x11-3.0 found: NO (tried pkgconfig and cmake)
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --variable=giomoduledir gio-2.0` -> 0
/usr/lib/x86_64-linux-gnu/gio/modules
Got pkgconfig variable giomoduledir : /usr/lib/x86_64-linux-gnu/gio/modules
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --variable=libdir gio-2.0` -> 0
/usr/lib/x86_64-linux-gnu
Got pkgconfig variable libdir : /usr/lib/x86_64-linux-gnu
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --variable=prefix gio-2.0` -> 0
/usr
Got pkgconfig variable prefix : /usr
Dependency gstreamer-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-base-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-net-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-check-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-controller-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency orc-0.4 from subproject subprojects/orc found: YES 0.4.29
Program orcc found: YES (overridden: orcc)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphqfzvrew
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphqfzvrew/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphqfzvrew/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -msse 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -msse: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5hntcnzd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5hntcnzd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5hntcnzd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -msse2 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -msse2: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2eclhq_9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2eclhq_9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2eclhq_9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -msse4.1 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -msse4.1: YES 
Message: GStreamer debug system is enabled
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptba3m7qo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptba3m7qo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptba3m7qo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <netinet/tcp.h>
        void bar(void) {
            struct tcp_info foo;
            foo.__tcpi_reordering;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptba3m7qo/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptba3m7qo/testfile.c:4:16: error: 'struct tcp_info' has no member named '__tcpi_reordering'; did you mean 'tcpi_reordering'?
             foo.__tcpi_reordering;
                ^

Checking whether type "struct tcp_info" has member "__tcpi_reordering" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcjogdn5q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcjogdn5q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcjogdn5q/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <netinet/tcp.h>
        void bar(void) {
            struct tcp_info foo;
            foo.tcpi_reordering;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct tcp_info" has member "tcpi_reordering" : YES 
Program g-ir-scanner found: NO
Program python3 found: YES (/usr/bin/python3)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'iso-codes' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion iso-codes` -> 0
3.75
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags iso-codes` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config iso-codes --libs` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config iso-codes --libs` -> 0

Run-time dependency iso-codes found: YES 3.75
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --variable=domains iso-codes` -> 0
iso_639-2 iso_639-3 iso_639-5 iso_3166-1 iso_3166-2 iso_3166-3 iso_4217 iso_15924
Got pkgconfig variable domains : iso_639-2 iso_639-3 iso_639-5 iso_3166-1 iso_3166-2 iso_3166-3 iso_4217 iso_15924
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --variable=prefix iso-codes` -> 0
/usr
Got pkgconfig variable prefix : /usr
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'zlib' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion zlib` -> 0
1.2.8
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags zlib` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config zlib --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lz
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config zlib --libs` -> 0
-lz
Run-time dependency zlib found: YES 1.2.8
Configuring gstpluginsbaseversion.h using configuration
Looking for a fallback subproject for the dependency (anonymous)

Executing subproject gl-headers method meson 

Project name: gl-headers
Project version: 2019.1.0
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Program python3 found: YES (/usr/bin/python3)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydt9dtpq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydt9dtpq/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("KHR/khrplatform.h")
          #error "Header 'KHR/khrplatform.h' could not be found"
         #endif
        #else
         #include <KHR/khrplatform.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydt9dtpq/testfile.c:4:12: error: #error "Header 'KHR/khrplatform.h' could not be found"
           #error "Header 'KHR/khrplatform.h' could not be found"
            ^~~~~

Has header "KHR/khrplatform.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcc6ba4wb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcc6ba4wb/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("GL/wglext.h")
          #error "Header 'GL/wglext.h' could not be found"
         #endif
        #else
         #include <GL/wglext.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcc6ba4wb/testfile.c:4:12: error: #error "Header 'GL/wglext.h' could not be found"
           #error "Header 'GL/wglext.h' could not be found"
            ^~~~~

Has header "GL/wglext.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xkp123e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xkp123e/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("GL/glext.h")
          #error "Header 'GL/glext.h' could not be found"
         #endif
        #else
         #include <GL/glext.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xkp123e/testfile.c:4:12: error: #error "Header 'GL/glext.h' could not be found"
           #error "Header 'GL/glext.h' could not be found"
            ^~~~~

Has header "GL/glext.h" : NO 
Build targets in project: 238
Subproject gl-headers finished.

Dependency (anonymous) from subproject subprojects/gl-headers found: YES 2019.1.0
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gl' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gl` -> 1

Run-time dependency gl found: NO (tried pkgconfig)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_vyiw7zm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_vyiw7zm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_vyiw7zm/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lGL -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lGL
collect2: error: ld returned 1 exit status

Library GL found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpey2c9i7w
Command line:  cc -I/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gl-headers/glext -I/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gl-headers/khrplatform -I/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gl-headers/wglext -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpey2c9i7w/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("GL/gl.h")
          #error "Header 'GL/gl.h' could not be found"
         #endif
        #else
         #include <GL/gl.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpey2c9i7w/testfile.c:4:12: error: #error "Header 'GL/gl.h' could not be found"
           #error "Header 'GL/gl.h' could not be found"
            ^~~~~

Has header "GL/gl.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'glesv2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion glesv2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency glesv2 found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphb2vqq9_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphb2vqq9_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphb2vqq9_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lGLESv2 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lGLESv2
collect2: error: ld returned 1 exit status

Library GLESv2 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuszd10e8
Command line:  cc -I/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gl-headers/glext -I/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gl-headers/khrplatform -I/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gl-headers/wglext -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuszd10e8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("GLES2/gl2.h")
          #error "Header 'GLES2/gl2.h' could not be found"
         #endif
        #else
         #include <GLES2/gl2.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuszd10e8/testfile.c:4:12: error: #error "Header 'GLES2/gl2.h' could not be found"
           #error "Header 'GLES2/gl2.h' could not be found"
            ^~~~~

Has header "GLES2/gl2.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'egl' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion egl` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency egl found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyx_607ky
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyx_607ky/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyx_607ky/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lEGL -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lEGL
collect2: error: ld returned 1 exit status

Library EGL found: NO
Message: Could not find EGL libraries for wayland
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'x11-xcb' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion x11-xcb` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency x11-xcb found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'bcm_host' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion bcm_host` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency bcm_host found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxte3eu2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxte3eu2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxte3eu2/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lbcm_host -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lbcm_host
collect2: error: ld returned 1 exit status

Library bcm_host found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gudev-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gudev-1.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gudev-1.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdrm' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libdrm` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdrm found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gbm' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gbm` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gbm found: NO (tried pkgconfig and cmake)
Message: No OpenGL API libraries found or requested
Message: No OpenGL Platforms found or requested
Message: No OpenGL Window systems found or requested
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'alsa' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion alsa` -> 0
1.1.3
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags alsa` -> 0
-I/usr/include/alsa
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config alsa --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lasound
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config alsa --libs` -> 0
-lasound
Run-time dependency alsa found: YES 1.1.3
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'cdparanoia-3' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion cdparanoia-3` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency cdparanoia-3 found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0b43fk8t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0b43fk8t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0b43fk8t/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lcdda_paranoia -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lcdda_paranoia
collect2: error: ld returned 1 exit status

Library cdda_paranoia found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphu4xtn_z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphu4xtn_z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphu4xtn_z/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lcdda_interface -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lcdda_interface
collect2: error: ld returned 1 exit status

Library cdda_interface found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libvisual-0.4' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libvisual-0.4` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libvisual-0.4 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'ogg' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion ogg` -> 0
1.3.2
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags ogg` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config ogg --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -logg
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config ogg --libs` -> 0
-logg
Run-time dependency ogg found: YES 1.3.2
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opus' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion opus` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opus found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'pangocairo' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion pangocairo` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency pangocairo found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'theoradec' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion theoradec` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency theoradec found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'theoraenc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion theoraenc` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency theoraenc found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vorbis' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vorbis` -> 0
1.3.5
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags vorbis` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config vorbis --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lvorbis
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config vorbis --libs` -> 0
-lvorbis
Run-time dependency vorbis found: YES 1.3.5
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vorbisenc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vorbisenc` -> 0
1.3.5
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags vorbisenc` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config vorbisenc --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lvorbisenc
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config vorbisenc --libs` -> 0
-lvorbisenc
Run-time dependency vorbisenc found: YES 1.3.5
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vorbisidec' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vorbisidec` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency vorbisidec found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xext' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xext` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xext found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8ya07ffl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8ya07ffl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8ya07ffl/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-deprecated-declarations -Wdeprecated-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-deprecated-declarations -Wdeprecated-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc_tegt52
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc_tegt52/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc_tegt52/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-deprecated-declarations -Wdeprecated-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-deprecated-declarations -Wdeprecated-declarations: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xv' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xv` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xv found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'valgrind' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion valgrind` -> 0
3.12.0.SVN
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags valgrind` -> 0
-I/usr/include/valgrind
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config valgrind --libs` -> 0
-L/usr/lib/valgrind -lcoregrind-amd64-linux -lvex-amd64-linux -lgcc
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config valgrind --libs` -> 0
-L/usr/lib/valgrind -lcoregrind-amd64-linux -lvex-amd64-linux -lgcc
Run-time dependency valgrind found: YES 3.12.0.SVN
Adding test "gst_typefindfunctions"
Adding test "libs_audio"
Adding test "libs_audiocdsrc"
Adding test "libs_audiodecoder"
Adding test "libs_audioencoder"
Adding test "libs_audiosink"
Adding test "libs_baseaudiovisualizer"
Adding test "libs_discoverer"
Adding test "libs_fft"
Adding test "libs_libsabi"
Adding test "libs_mikey"
Adding test "libs_navigation"
Adding test "libs_pbutils"
Adding test "libs_profile"
Adding test "libs_rtp"
Adding test "libs_rtpbasedepayload"
Adding test "libs_rtpbasepayload"
Adding test "libs_rtpmeta"
Adding test "libs_rtsp"
Adding test "libs_sdp"
Adding test "libs_tag"
Adding test "libs_video"
Adding test "libs_videoanc"
Adding test "libs_videoencoder"
Adding test "libs_videodecoder"
Adding test "libs_videotimecode"
Adding test "libs_xmpwriter"
Adding test "elements_adder"
Adding test "elements_appsink"
Adding test "elements_appsrc"
Adding test "elements_audioconvert"
Adding test "elements_audiointerleave"
Adding test "elements_audiomixer"
Adding test "elements_audiorate"
Adding test "elements_audiotestsrc"
Adding test "elements_audioresample"
Adding test "elements_compositor"
Adding test "elements_decodebin"
Adding test "elements_overlaycomposition"
Adding test "elements_playbin"
Adding test "elements_playsink"
Adding test "elements_streamsynchronizer"
Adding test "elements_subparse"
Adding test "elements_urisourcebin"
Adding test "elements_videoconvert"
Adding test "elements_videorate"
Adding test "elements_videoscale"
Adding test "elements_videotestsrc"
Adding test "elements_volume"
Adding test "generic_clock_selection"
Adding test "generic_states"
Adding test "pipelines_simple_launch_lines"
Adding test "pipelines_basetime"
Adding test "pipelines_capsfilter_renegotiation"
Adding test "pipelines_gio"
Adding test "pipelines_streamsynchronizer"
Adding test "libs_allocators"
Adding test "libs_rtspconnection"
Adding test "elements_multifdsink"
Adding test "elements_multisocketsink"
Adding test "elements_playbin_complex"
Adding test "elements_vorbisdec"
Adding test "elements_vorbistag"
Adding test "pipelines_oggmux"
Adding test "pipelines_tcp"
Adding test "pipelines_vorbisenc"
Adding test "pipelines_vorbisdec"
Adding test "libs_gstlibscpp"
Adding test "elements-videoscale-1"
Adding test "elements-videoscale-2"
Adding test "elements-videoscale-3"
Adding test "elements-videoscale-4"
Adding test "elements-videoscale-5"
Adding test "elements-videoscale-6"
Dependency  from subproject subprojects/orc found: YES 0.4.29
Adding test "orc_audio"
Adding test "orc_video"
Adding test "orc_adder"
Adding test "orc_audiomixer"
Adding test "orc_compositor"
Adding test "orc_volume"
Adding test "orc_videotestsrc"
Adding benchmark "bench_benchmark_appsink"
Adding benchmark "bench_benchmark_appsrc"
Adding benchmark "bench_benchmark_video_conversion"
WARNING: Project targeting '>= 0.48' but tried to use feature introduced in '0.52.0': is_disabler
WARNING: rcc dependencies will not work reliably until this upstream issue is fixed: https://bugreports.qt.io/browse/QTBUG-45460
Trying to find qt with pkg-config
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'Qt5Gui' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion Qt5Gui` -> 1

Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'Qt5Widgets' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion Qt5Widgets` -> 1

Trying to find qt with qmake
Run-time dependency qt5 (modules: Gui, Widgets) found: NO (tried pkgconfig, qmake-qt5 and qmake)
Program moc-qt5 found: NO
Configuring gstreamer-allocators-1.0.pc using configuration
Configuring gstreamer-allocators-1.0-uninstalled.pc using configuration
Configuring gstreamer-app-1.0.pc using configuration
Configuring gstreamer-app-1.0-uninstalled.pc using configuration
Configuring gstreamer-audio-1.0.pc using configuration
Configuring gstreamer-audio-1.0-uninstalled.pc using configuration
Configuring gstreamer-fft-1.0.pc using configuration
Configuring gstreamer-fft-1.0-uninstalled.pc using configuration
Configuring gstreamer-pbutils-1.0.pc using configuration
Configuring gstreamer-pbutils-1.0-uninstalled.pc using configuration
Configuring gstreamer-plugins-base-1.0.pc using configuration
Configuring gstreamer-plugins-base-1.0-uninstalled.pc using configuration
Configuring gstreamer-riff-1.0.pc using configuration
Configuring gstreamer-riff-1.0-uninstalled.pc using configuration
Configuring gstreamer-rtp-1.0.pc using configuration
Configuring gstreamer-rtp-1.0-uninstalled.pc using configuration
Configuring gstreamer-rtsp-1.0.pc using configuration
Configuring gstreamer-rtsp-1.0-uninstalled.pc using configuration
Configuring gstreamer-sdp-1.0.pc using configuration
Configuring gstreamer-sdp-1.0-uninstalled.pc using configuration
Configuring gstreamer-tag-1.0.pc using configuration
Configuring gstreamer-tag-1.0-uninstalled.pc using configuration
Configuring gstreamer-video-1.0.pc using configuration
Configuring gstreamer-video-1.0-uninstalled.pc using configuration
Program xgettext found: YES (/usr/bin/xgettext)
Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Program scripts/update-orc-dist-files.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-base/scripts/update-orc-dist-files.py)
WARNING: Project targeting '>= 0.48' but tried to use feature introduced in '0.52.0': alias_target
Configuring config.h using configuration
Running command: /usr/bin/python3 -c import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")
--- stdout ---

--- stderr ---


Build targets in project: 423
WARNING: Project specifies a minimum meson_version '>= 0.48' but uses features which were added in newer versions:
 * 0.52.0: {'is_disabler', 'alias_target'}
Subproject gst-plugins-base finished.

Running command: /usr/bin/python3 -c 
import os

os.symlink(os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'subprojects', 'gst-plugins-base'),
  os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'gst-plugins-base'))

--- stdout ---

--- stderr ---
Traceback (most recent call last):
  File "<string>", line 5, in <module>
FileExistsError: [Errno 17] File exists: '/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-base' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-plugins-base'



Executing subproject gst-plugins-good method meson 

Project name: gst-plugins-good
Project version: 1.17.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
subprojects/gst-plugins-good/meson.build:19: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj0mjhke9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj0mjhke9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj0mjhke9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdiir7fpn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdiir7fpn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdiir7fpn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpopy5r5mz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpopy5r5mz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpopy5r5mz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Message: Disabling deprecated GLib API
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b57_rpf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dlfcn.h")
          #error "Header 'dlfcn.h' could not be found"
         #endif
        #else
         #include <dlfcn.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "dlfcn.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpagfu9da6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpagfu9da6/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("fcntl.h")
          #error "Header 'fcntl.h' could not be found"
         #endif
        #else
         #include <fcntl.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "fcntl.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "inttypes.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "memory.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lo095m5/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("process.h")
          #error "Header 'process.h' could not be found"
         #endif
        #else
         #include <process.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lo095m5/testfile.c:4:12: error: #error "Header 'process.h' could not be found"
           #error "Header 'process.h' could not be found"
            ^~~~~

Has header "process.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdint.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4304_n0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4304_n0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdlib.h")
          #error "Header 'stdlib.h' could not be found"
         #endif
        #else
         #include <stdlib.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "stdlib.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "strings.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyjkyntsf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyjkyntsf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/ioctl.h")
          #error "Header 'sys/ioctl.h' could not be found"
         #endif
        #else
         #include <sys/ioctl.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/ioctl.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprfo9azny/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/param.h")
          #error "Header 'sys/param.h' could not be found"
         #endif
        #else
         #include <sys/param.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/param.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/socket.h")
          #error "Header 'sys/socket.h' could not be found"
         #endif
        #else
         #include <sys/socket.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/socket.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/time.h")
          #error "Header 'sys/time.h' could not be found"
         #endif
        #else
         #include <sys/time.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/time.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp82712tv0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp82712tv0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp82712tv0/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<math.h>
#include <limits.h>

        #if defined __stub_asinh || defined __stub___asinh
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &asinh;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "asinh" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmgetztie
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmgetztie/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmgetztie/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<time.h>
#include <limits.h>

        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &clock_gettime;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "clock_gettime" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpisg68e8t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpisg68e8t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpisg68e8t/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<math.h>
#include <limits.h>

        #if defined __stub_cosh || defined __stub___cosh
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &cosh;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "cosh" with dependency -lm: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp05l6wr4k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp05l6wr4k/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<libintl.h>
#include <limits.h>

        #if defined __stub_dcgettext || defined __stub___dcgettext
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &dcgettext;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "dcgettext" with dependency -lm: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp29nbz2h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp29nbz2h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp29nbz2h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<unistd.h>
#include <limits.h>

        #if defined __stub_getpagesize || defined __stub___getpagesize
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &getpagesize;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getpagesize" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9l4k59rt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9l4k59rt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9l4k59rt/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<math.h>
#include <limits.h>

        #if defined __stub_isinf || defined __stub___isinf
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &isinf;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "isinf" with dependency -lm: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplx93pcat/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplx93pcat/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<sys/mman.h>
#include <limits.h>

        #if defined __stub_mmap || defined __stub___mmap
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &mmap;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "mmap" with dependency -lm: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nb1zjk1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nb1zjk1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nb1zjk1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<sys/mman.h>
#include <limits.h>

        #if defined __stub_mmap64 || defined __stub___mmap64
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &mmap64;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nb1zjk1/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nb1zjk1/testfile.c:9:32: error: 'mmap64' undeclared (first use in this function)
             void *a = (void*) &mmap64;
                                ^~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nb1zjk1/testfile.c:9:32: note: each undeclared identifier is reported only once for each function it appears in

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjd5v3ns
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjd5v3ns/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjd5v3ns/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<sys/mman.h>
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_mmap64)
                #error "__builtin_mmap64 not found"
            #endif
        #elif ! defined(mmap64)
            /* Check for __builtin_mmap64 only if no includes were added to the
             * prefix above, which means no definition of mmap64 can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 0
                __builtin_mmap64;
            #else
                #error "No definition for __builtin_mmap64 found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjd5v3ns/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjd5v3ns/testfile.c:16:18: error: #error "No definition for __builtin_mmap64 found in the prefix"
                 #error "No definition for __builtin_mmap64 found in the prefix"
                  ^~~~~

Checking for function "mmap64" with dependency -lm: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzlss0rqd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzlss0rqd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzlss0rqd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<math.h>
#include <limits.h>

        #if defined __stub_sinh || defined __stub___sinh
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &sinh;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "sinh" with dependency -lm: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3sqc0c_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3sqc0c_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 #include<time.h>
#include <limits.h>

        #if defined __stub_gmtime_r || defined __stub___gmtime_r
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &gmtime_r;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "gmtime_r" with dependency -lm: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn8l9xx9k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn8l9xx9k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn8l9xx9k/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(char)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Checking for size of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfky2oqqp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfky2oqqp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfky2oqqp/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(int)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp68arhl21
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp68arhl21/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp68arhl21/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo_46x2km
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo_46x2km/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo_46x2km/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(short)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Checking for size of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp552xdwvb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp552xdwvb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp552xdwvb/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void*)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0a7jml4b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0a7jml4b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0a7jml4b/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(off_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "off_t" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7av85hpt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7av85hpt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7av85hpt/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiojsj4to
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiojsj4to/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiojsj4to/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8rkp8opg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8rkp8opg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8rkp8opg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpchtqm206
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpchtqm206/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpchtqm206/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3x8esuw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3x8esuw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3x8esuw/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa7kbe2_c
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa7kbe2_c/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa7kbe2_c/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkhcsay69
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkhcsay69/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkhcsay69/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppl0vo343
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppl0vo343/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppl0vo343/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4wcumj84
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4wcumj84/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4wcumj84/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Wmissing-include-dirs]

Compiler for C supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpev0ix4m1
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpev0ix4m1/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpev0ix4m1/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcurcwpb5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcurcwpb5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcurcwpb5/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9bke9gyf
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9bke9gyf/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9bke9gyf/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphm5y_p8n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphm5y_p8n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphm5y_p8n/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6y5g8x67
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6y5g8x67/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6y5g8x67/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps6nc2tbu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps6nc2tbu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps6nc2tbu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphj0kew7p
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphj0kew7p/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphj0kew7p/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsl70i68k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsl70i68k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsl70i68k/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0hzz0dnk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0hzz0dnk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0hzz0dnk/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph25a19vi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph25a19vi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph25a19vi/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wold-style-definition: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_s0h46wy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_s0h46wy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_s0h46wy/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waggregate-return 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waggregate-return: YES 
Dependency gstreamer-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-base-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-net-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-controller-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-check-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-pbutils-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-allocators-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-app-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-audio-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-fft-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-riff-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-rtp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-rtsp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-sdp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-tag-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-video-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-gl-1.0 from subproject subprojects/gst-plugins-base found: NO
Dependency zlib found: YES 1.2.8 (cached)
Dependency glib-2.0 found: YES 2.50.3 (cached)
Dependency gobject-2.0 found: YES 2.50.3 (cached)
Dependency gio-2.0 found: YES 2.50.3 (cached)
Dependency orc-0.4 from subproject subprojects/orc found: YES 0.4.29
Program orcc found: YES (overridden: orcc)
Running compile:
Working directory:  /tmp/tmpuj3gt930
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /tmp/tmpuj3gt930/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        
        #ifndef __ILP32__
        # define __ILP32__
        #endif
        "MESON_GET_DEFINE_DELIMITER"
__ILP32__
Compiler stdout:
         "MESON_GET_DEFINE_DELIMITER"


Compiler stderr:
 
Fetching value of define "__ILP32__" :  
Program nasm found: NO
Message: GStreamer debug system is enabled
Program python3 found: YES (/usr/bin/python3)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6b7qfhs4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6b7qfhs4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6b7qfhs4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lbz2 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lbz2
collect2: error: ld returned 1 exit status

Library bz2 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc7d8azne
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc7d8azne/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/soundcard.h")
          #error "Header 'sys/soundcard.h' could not be found"
         #endif
        #else
         #include <sys/soundcard.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/soundcard.h" : YES 
Message: Checking headers needed for Open Sound System 4 plugin...
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpagfu9da6/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("fcntl.h")
          #error "Header 'fcntl.h' could not be found"
         #endif
        #else
         #include <fcntl.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "fcntl.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyjkyntsf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/ioctl.h")
          #error "Header 'sys/ioctl.h' could not be found"
         #endif
        #else
         #include <sys/ioctl.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/ioctl.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Message: Required headers found, building Open Sound System 4 plugin.
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn08boapz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn08boapz/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/videodev2.h")
          #error "Header 'linux/videodev2.h' could not be found"
         #endif
        #else
         #include <linux/videodev2.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "linux/videodev2.h" : YES 
Message: building v4l2 plugin
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gudev-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gudev-1.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libv4l2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libv4l2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libv4l2 found: NO (tried pkgconfig and cmake)
Dependency x11 found: YES 1.6.4 (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xext' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xext found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xfixes' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xfixes` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xfixes found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xdamage' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xdamage` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xdamage found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplj75eyhm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplj75eyhm/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("aalib.h")
          #error "Header 'aalib.h' could not be found"
         #endif
        #else
         #include <aalib.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplj75eyhm/testfile.c:4:12: error: #error "Header 'aalib.h' could not be found"
           #error "Header 'aalib.h' could not be found"
            ^~~~~

Has header "aalib.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'cairo-gobject' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion cairo-gobject` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency cairo-gobject found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'flac' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion flac` -> 0
1.3.2
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags flac` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config flac --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lFLAC
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config flac --libs` -> 0
-lFLAC
Run-time dependency flac found: YES 1.3.2
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gdk-pixbuf-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gdk-pixbuf-2.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-3.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'jack' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion jack` -> 0
1.9.11
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags jack` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config jack --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -ljack
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config jack --libs` -> 0
-ljack
Run-time dependency jack found: YES 1.9.11
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libjpeg' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libjpeg` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libjpeg found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy0fym3oz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy0fym3oz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy0fym3oz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lmp3lame -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lmp3lame
collect2: error: ld returned 1 exit status

Library mp3lame found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'caca' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion caca` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency caca found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdv' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libdv` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdv found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libpng' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libpng` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libpng found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libmpg123' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libmpg123` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libmpg123 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libraw1394' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libraw1394` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libraw1394 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libavc1394' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libavc1394` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libavc1394 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libiec61883' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libiec61883` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libiec61883 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libpulse' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libpulse` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libpulse found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'shout' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion shout` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency shout found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libsoup-2.4' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libsoup-2.4` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libsoup-2.4 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency libsoup-2.4

Executing subproject libsoup method meson 

Project name: libsoup
Project version: 2.70.0
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6uzc50k5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6uzc50k5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6uzc50k5/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wall 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wall: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6a0b8b2p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6a0b8b2p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6a0b8b2p/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Wmissing-include-dirs]

Compiler for C supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6jg45_6w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6jg45_6w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6jg45_6w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprdzmnxbu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprdzmnxbu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprdzmnxbu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xrlbvof
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xrlbvof/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xrlbvof/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa01vfrw9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa01vfrw9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa01vfrw9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=missing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgxqkaklq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgxqkaklq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgxqkaklq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=implicit-function-declaration 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=implicit-function-declaration: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph0pjnlvt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph0pjnlvt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph0pjnlvt/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=aggregate-return 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=aggregate-return: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy8wccl5f
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy8wccl5f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy8wccl5f/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=format=2 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=format=2: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuyzc7tl8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuyzc7tl8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuyzc7tl8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuop8fjbo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuop8fjbo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuop8fjbo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-format-zero-length -Wformat-zero-length 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-zero-length ignored without -Wformat [-Wformat-zero-length]

Compiler for C supports arguments -Wno-format-zero-length -Wformat-zero-length: YES 
subprojects/libsoup/meson.build:81: WARNING: Consider using the built-in warning_level option instead of using "-Wall".
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'glib-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Dependency glib-2.0 found: NO found 2.50.3 but need: '>= 2.58'
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency glib-2.0 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency glib-2.0

Executing subproject glib method meson 

Project name: glib
Project version: 2.62.6
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5r7n3rdq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5r7n3rdq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5r7n3rdq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplkqyd8mz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplkqyd8mz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplkqyd8mz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror 

Code:
 
  void
  __attribute__ ((visibility ("hidden")))
       f_hidden (void)
  {
  }
  void
  __attribute__ ((visibility ("internal")))
       f_internal (void)
  {
  }
  void
  __attribute__ ((visibility ("default")))
       f_default (void)
  {
  }
  int main (void)
  {
    f_hidden();
    f_internal();
    f_default();
    return 0;
  }
  
Compiler stdout:
 
Compiler stderr:
 
Checking if "GNU C visibility attributes test" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr95vi51d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr95vi51d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr95vi51d/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps0m2c8xv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps0m2c8xv/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("alloca.h")
          #error "Header 'alloca.h' could not be found"
         #endif
        #else
         #include <alloca.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "alloca.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmn12m6q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmn12m6q/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("crt_externs.h")
          #error "Header 'crt_externs.h' could not be found"
         #endif
        #else
         #include <crt_externs.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmn12m6q/testfile.c:4:12: error: #error "Header 'crt_externs.h' could not be found"
           #error "Header 'crt_externs.h' could not be found"
            ^~~~~

Has header "crt_externs.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6aej8rhj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6aej8rhj/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dirent.h")
          #error "Header 'dirent.h' could not be found"
         #endif
        #else
         #include <dirent.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "dirent.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsqanyxf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsqanyxf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("float.h")
          #error "Header 'float.h' could not be found"
         #endif
        #else
         #include <float.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "float.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl7nfvruq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl7nfvruq/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("fstab.h")
          #error "Header 'fstab.h' could not be found"
         #endif
        #else
         #include <fstab.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "fstab.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp15zf6uz8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp15zf6uz8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("grp.h")
          #error "Header 'grp.h' could not be found"
         #endif
        #else
         #include <grp.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "grp.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "inttypes.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiglpwa50
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiglpwa50/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("limits.h")
          #error "Header 'limits.h' could not be found"
         #endif
        #else
         #include <limits.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "limits.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbpf4pb8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbpf4pb8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/magic.h")
          #error "Header 'linux/magic.h' could not be found"
         #endif
        #else
         #include <linux/magic.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "linux/magic.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7a479ho1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7a479ho1/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("locale.h")
          #error "Header 'locale.h' could not be found"
         #endif
        #else
         #include <locale.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "locale.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprxwppx6t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprxwppx6t/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("mach/mach_time.h")
          #error "Header 'mach/mach_time.h' could not be found"
         #endif
        #else
         #include <mach/mach_time.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprxwppx6t/testfile.c:4:12: error: #error "Header 'mach/mach_time.h' could not be found"
           #error "Header 'mach/mach_time.h' could not be found"
            ^~~~~

Has header "mach/mach_time.h" : NO 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "memory.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpezymc21p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpezymc21p/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("mntent.h")
          #error "Header 'mntent.h' could not be found"
         #endif
        #else
         #include <mntent.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "mntent.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw3yy4qfo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("poll.h")
          #error "Header 'poll.h' could not be found"
         #endif
        #else
         #include <poll.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "poll.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbixmihq1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbixmihq1/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("pwd.h")
          #error "Header 'pwd.h' could not be found"
         #endif
        #else
         #include <pwd.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "pwd.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyl7i844g
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyl7i844g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sched.h")
          #error "Header 'sched.h' could not be found"
         #endif
        #else
         #include <sched.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sched.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpepgy2ize
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpepgy2ize/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("spawn.h")
          #error "Header 'spawn.h' could not be found"
         #endif
        #else
         #include <spawn.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "spawn.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdint.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4304_n0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdlib.h")
          #error "Header 'stdlib.h' could not be found"
         #endif
        #else
         #include <stdlib.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdlib.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "strings.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe3jkc9xb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe3jkc9xb/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/auxv.h")
          #error "Header 'sys/auxv.h' could not be found"
         #endif
        #else
         #include <sys/auxv.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/auxv.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6pugy4hp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6pugy4hp/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/event.h")
          #error "Header 'sys/event.h' could not be found"
         #endif
        #else
         #include <sys/event.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6pugy4hp/testfile.c:4:12: error: #error "Header 'sys/event.h' could not be found"
           #error "Header 'sys/event.h' could not be found"
            ^~~~~

Has header "sys/event.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd08937db
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd08937db/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/filio.h")
          #error "Header 'sys/filio.h' could not be found"
         #endif
        #else
         #include <sys/filio.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd08937db/testfile.c:4:12: error: #error "Header 'sys/filio.h' could not be found"
           #error "Header 'sys/filio.h' could not be found"
            ^~~~~

Has header "sys/filio.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tq5gmgc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tq5gmgc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/inotify.h")
          #error "Header 'sys/inotify.h' could not be found"
         #endif
        #else
         #include <sys/inotify.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/inotify.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp30erfyof
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp30erfyof/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mkdev.h")
          #error "Header 'sys/mkdev.h' could not be found"
         #endif
        #else
         #include <sys/mkdev.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp30erfyof/testfile.c:4:12: error: #error "Header 'sys/mkdev.h' could not be found"
           #error "Header 'sys/mkdev.h' could not be found"
            ^~~~~

Has header "sys/mkdev.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxwcmir6u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxwcmir6u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mntctl.h")
          #error "Header 'sys/mntctl.h' could not be found"
         #endif
        #else
         #include <sys/mntctl.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxwcmir6u/testfile.c:4:12: error: #error "Header 'sys/mntctl.h' could not be found"
           #error "Header 'sys/mntctl.h' could not be found"
            ^~~~~

Has header "sys/mntctl.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2dh_g_i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2dh_g_i/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mnttab.h")
          #error "Header 'sys/mnttab.h' could not be found"
         #endif
        #else
         #include <sys/mnttab.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2dh_g_i/testfile.c:4:12: error: #error "Header 'sys/mnttab.h' could not be found"
           #error "Header 'sys/mnttab.h' could not be found"
            ^~~~~

Has header "sys/mnttab.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd23ds33u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd23ds33u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mount.h")
          #error "Header 'sys/mount.h' could not be found"
         #endif
        #else
         #include <sys/mount.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/mount.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprfo9azny/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/param.h")
          #error "Header 'sys/param.h' could not be found"
         #endif
        #else
         #include <sys/param.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/param.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu44gln6u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/resource.h")
          #error "Header 'sys/resource.h' could not be found"
         #endif
        #else
         #include <sys/resource.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/resource.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa4ndaxhz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa4ndaxhz/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/select.h")
          #error "Header 'sys/select.h' could not be found"
         #endif
        #else
         #include <sys/select.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/select.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wlqz6pg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wlqz6pg/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/statfs.h")
          #error "Header 'sys/statfs.h' could not be found"
         #endif
        #else
         #include <sys/statfs.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/statfs.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgg5x4yqs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgg5x4yqs/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/statvfs.h")
          #error "Header 'sys/statvfs.h' could not be found"
         #endif
        #else
         #include <sys/statvfs.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/statvfs.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzoqq_rzs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzoqq_rzs/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/sysctl.h")
          #error "Header 'sys/sysctl.h' could not be found"
         #endif
        #else
         #include <sys/sysctl.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/sysctl.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/time.h")
          #error "Header 'sys/time.h' could not be found"
         #endif
        #else
         #include <sys/time.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/time.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphapow99a/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/times.h")
          #error "Header 'sys/times.h' could not be found"
         #endif
        #else
         #include <sys/times.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/times.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l3y0mto/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/uio.h")
          #error "Header 'sys/uio.h' could not be found"
         #endif
        #else
         #include <sys/uio.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/uio.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx84bjk6y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx84bjk6y/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/vfs.h")
          #error "Header 'sys/vfs.h' could not be found"
         #endif
        #else
         #include <sys/vfs.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "sys/vfs.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxov4cxd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxov4cxd/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/vfstab.h")
          #error "Header 'sys/vfstab.h' could not be found"
         #endif
        #else
         #include <sys/vfstab.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxov4cxd/testfile.c:4:12: error: #error "Header 'sys/vfstab.h' could not be found"
           #error "Header 'sys/vfstab.h' could not be found"
            ^~~~~

Has header "sys/vfstab.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3enjgaax
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3enjgaax/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/vmount.h")
          #error "Header 'sys/vmount.h' could not be found"
         #endif
        #else
         #include <sys/vmount.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3enjgaax/testfile.c:4:12: error: #error "Header 'sys/vmount.h' could not be found"
           #error "Header 'sys/vmount.h' could not be found"
            ^~~~~

Has header "sys/vmount.h" : NO 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq_gts9c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/wait.h")
          #error "Header 'sys/wait.h' could not be found"
         #endif
        #else
         #include <sys/wait.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/wait.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0dad93xu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0dad93xu/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("termios.h")
          #error "Header 'termios.h' could not be found"
         #endif
        #else
         #include <termios.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "termios.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpls2tvd5_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpls2tvd5_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("values.h")
          #error "Header 'values.h' could not be found"
         #endif
        #else
         #include <values.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "values.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8l3w19q0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8l3w19q0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("wchar.h")
          #error "Header 'wchar.h' could not be found"
         #endif
        #else
         #include <wchar.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "wchar.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzfc4f_z8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzfc4f_z8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("xlocale.h")
          #error "Header 'xlocale.h' could not be found"
         #endif
        #else
         #include <xlocale.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "xlocale.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf1plerdn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf1plerdn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf1plerdn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <malloc.h>
Compiler stdout:
 
Compiler stderr:
 
Checking if "malloc.h" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvz9c0jfg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvz9c0jfg/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/netlink.h")
          #error "Header 'linux/netlink.h' could not be found"
         #endif
        #else
         #include <linux/netlink.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "linux/netlink.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphn_a7xa_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphn_a7xa_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphn_a7xa_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <locale.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef LC_MESSAGES
                LC_MESSAGES;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <locale.h> has symbol "LC_MESSAGES" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_mtimensec;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/testfile.c:45:16: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'?
             foo.st_mtimensec;
                ^

Checking whether type "struct stat" has member "st_mtimensec" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqcv6qzw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqcv6qzw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqcv6qzw/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_mtim.tv_nsec;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct stat" has member "st_mtim.tv_nsec" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_atimensec;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/testfile.c:46:16: error: 'struct stat' has no member named 'st_atimensec'; did you mean 'st_atim'?
             foo.st_atimensec;
                ^

Checking whether type "struct stat" has member "st_atimensec" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tlusljj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tlusljj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tlusljj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_atim.tv_nsec;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct stat" has member "st_atim.tv_nsec" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_ctimensec;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/testfile.c:47:16: error: 'struct stat' has no member named 'st_ctimensec'; did you mean 'st_ctim'?
             foo.st_ctimensec;
                ^

Checking whether type "struct stat" has member "st_ctimensec" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqouqsg3b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqouqsg3b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqouqsg3b/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_ctim.tv_nsec;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct stat" has member "st_ctim.tv_nsec" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtime;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtime'; did you mean 'st_blksize'?
             foo.st_birthtime;
                ^

Checking whether type "struct stat" has member "st_birthtime" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtimensec;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtimensec'
             foo.st_birthtimensec;
                ^

Checking whether type "struct stat" has member "st_birthtimensec" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtim;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtim'; did you mean 'st_atim'?
             foo.st_birthtim;
                ^

Checking whether type "struct stat" has member "st_birthtim" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtim.tv_nsec;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtim'; did you mean 'st_atim'?
             foo.st_birthtim.tv_nsec;
                ^

Checking whether type "struct stat" has member "st_birthtim.tv_nsec" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hp82ydg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hp82ydg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hp82ydg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct stat foo;
            foo.st_blksize;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct stat" has member "st_blksize" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbx2p8z31
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbx2p8z31/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbx2p8z31/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct stat foo;
            foo.st_blocks;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct stat" has member "st_blocks" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct statfs foo;
            foo.f_fstypename;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/testfile.c:65:16: error: 'struct statfs' has no member named 'f_fstypename'; did you mean 'f_type'?
             foo.f_fstypename;
                ^

Checking whether type "struct statfs" has member "f_fstypename" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn7g30fqs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn7g30fqs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn7g30fqs/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct statfs foo;
            foo.f_bavail;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct statfs" has member "f_bavail" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmesvbwir
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmesvbwir/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmesvbwir/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#include <sys/types.h>
                           #include <dirent.h>
        void bar(void) {
            struct dirent foo;
            foo.d_type;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct dirent" has member "d_type" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#include <sys/statvfs.h>
        void bar(void) {
            struct statvfs foo;
            foo.f_basetype;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/testfile.c:52:16: error: 'struct statvfs' has no member named 'f_basetype'; did you mean 'f_bsize'?
             foo.f_basetype;
                ^

Checking whether type "struct statvfs" has member "f_basetype" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#include <sys/statvfs.h>
        void bar(void) {
            struct statvfs foo;
            foo.f_fstypename;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/testfile.c:52:16: error: 'struct statvfs' has no member named 'f_fstypename'
             foo.f_fstypename;
                ^

Checking whether type "struct statvfs" has member "f_fstypename" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuzeb_mm9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuzeb_mm9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuzeb_mm9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#include <time.h>
        void bar(void) {
            struct tm foo;
            foo.tm_gmtoff;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct tm" has member "tm_gmtoff" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#define HAVE_STRUCT_TM_TM_GMTOFF 1
#include <time.h>
        void bar(void) {
            struct tm foo;
            foo.__tm_gmtoff;

        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/testfile.c:53:16: error: 'struct tm' has no member named '__tm_gmtoff'; did you mean 'tm_gmtoff'?
             foo.__tm_gmtoff;
                ^

Checking whether type "struct tm" has member "__tm_gmtoff" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc75e1fti
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc75e1fti/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc75e1fti/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wall 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wall: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvtu1nad
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvtu1nad/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvtu1nad/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wduplicated-branches 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wduplicated-branches'; did you mean '-Wduplicated-cond'?

Compiler for C supports arguments -Wduplicated-branches: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr8__lp6z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr8__lp6z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr8__lp6z/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wimplicit-fallthrough'; did you mean '-Wno-fallthrough'?

Compiler for C supports arguments -Wimplicit-fallthrough: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqj4gfxh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqj4gfxh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqj4gfxh/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmisleading-indentation 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmisleading-indentation: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcu8tdput
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcu8tdput/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcu8tdput/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgyzfhpp8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgyzfhpp8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgyzfhpp8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wunused: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg7peph7q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg7peph7q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg7peph7q/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unused-parameter -Wunused-parameter 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj927tijr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj927tijr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj927tijr/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-bad-function-cast -Wbad-function-cast 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-bad-function-cast -Wbad-function-cast: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_2a_l6ux
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_2a_l6ux/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_2a_l6ux/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-cast-function-type -Wcast-function-type 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wcast-function-type'; did you mean '-Wbad-function-cast'?

Compiler for C supports arguments -Wno-cast-function-type -Wcast-function-type: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7c4vb10w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7c4vb10w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7c4vb10w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-pedantic -Wpedantic 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-pedantic -Wpedantic: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8fpzwd3a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8fpzwd3a/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8fpzwd3a/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=declaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=declaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp52f2wcp0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp52f2wcp0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp52f2wcp0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=format=2 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=format=2: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqodx17cm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqodx17cm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqodx17cm/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=implicit-function-declaration 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=implicit-function-declaration: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi9liyt0l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi9liyt0l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi9liyt0l/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=init-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=init-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp87yuz5le
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp87yuz5le/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp87yuz5le/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: error: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Werror=missing-include-dirs]
cc1: some warnings being treated as errors

Compiler for C supports arguments -Werror=missing-include-dirs: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_5ctrodh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_5ctrodh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_5ctrodh/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=missing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk_94szii
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk_94szii/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk_94szii/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=pointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=pointer-arith: YES 
subprojects/glib/meson.build:397: WARNING: Consider using the built-in warning_level option instead of using "-Wall".
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybsibdd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybsibdd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybsibdd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-z,nodelete 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-z,nodelete: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzi96morm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzi96morm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzi96morm/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdw4zzl8o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdw4zzl8o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdw4zzl8o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define endmntent meson_disable_define_of_endmntent
        
        #include <limits.h>
        #undef endmntent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char endmntent (void);
        
        #if defined __stub_endmntent || defined __stub___endmntent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return endmntent ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "endmntent" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6g6_hw2u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6g6_hw2u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6g6_hw2u/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define endservent meson_disable_define_of_endservent
        
        #include <limits.h>
        #undef endservent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char endservent (void);
        
        #if defined __stub_endservent || defined __stub___endservent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return endservent ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "endservent" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9sfnkch7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9sfnkch7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9sfnkch7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fallocate meson_disable_define_of_fallocate
        
        #include <limits.h>
        #undef fallocate
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fallocate (void);
        
        #if defined __stub_fallocate || defined __stub___fallocate
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fallocate ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "fallocate" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbhlk__0j
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbhlk__0j/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbhlk__0j/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fchmod meson_disable_define_of_fchmod
        
        #include <limits.h>
        #undef fchmod
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fchmod (void);
        
        #if defined __stub_fchmod || defined __stub___fchmod
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fchmod ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "fchmod" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxi91kt3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxi91kt3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxi91kt3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fchown meson_disable_define_of_fchown
        
        #include <limits.h>
        #undef fchown
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fchown (void);
        
        #if defined __stub_fchown || defined __stub___fchown
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fchown ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "fchown" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyiee2a3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyiee2a3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyiee2a3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fdwalk meson_disable_define_of_fdwalk
        
        #include <limits.h>
        #undef fdwalk
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fdwalk (void);
        
        #if defined __stub_fdwalk || defined __stub___fdwalk
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fdwalk ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/cchTZ2Mg.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `fdwalk'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_fdwalk)
                #error "__builtin_fdwalk not found"
            #endif
        #elif ! defined(fdwalk)
            /* Check for __builtin_fdwalk only if no includes were added to the
             * prefix above, which means no definition of fdwalk can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_fdwalk;
            #else
                #error "No definition for __builtin_fdwalk found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c:14:17: error: '__builtin_fdwalk' undeclared (first use in this function)
                 __builtin_fdwalk;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "fdwalk" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1zduwyp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1zduwyp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1zduwyp/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fsync meson_disable_define_of_fsync
        
        #include <limits.h>
        #undef fsync
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fsync (void);
        
        #if defined __stub_fsync || defined __stub___fsync
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fsync ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "fsync" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b64vqbk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b64vqbk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b64vqbk/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getauxval meson_disable_define_of_getauxval
        
        #include <limits.h>
        #undef getauxval
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getauxval (void);
        
        #if defined __stub_getauxval || defined __stub___getauxval
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getauxval ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getauxval" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr50ty4ea
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr50ty4ea/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr50ty4ea/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getc_unlocked meson_disable_define_of_getc_unlocked
        
        #include <limits.h>
        #undef getc_unlocked
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getc_unlocked (void);
        
        #if defined __stub_getc_unlocked || defined __stub___getc_unlocked
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getc_unlocked ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getc_unlocked" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxntgll3u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxntgll3u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxntgll3u/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getfsstat meson_disable_define_of_getfsstat
        
        #include <limits.h>
        #undef getfsstat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getfsstat (void);
        
        #if defined __stub_getfsstat || defined __stub___getfsstat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getfsstat ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccJdojaw.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `getfsstat'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_getfsstat)
                #error "__builtin_getfsstat not found"
            #endif
        #elif ! defined(getfsstat)
            /* Check for __builtin_getfsstat only if no includes were added to the
             * prefix above, which means no definition of getfsstat can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_getfsstat;
            #else
                #error "No definition for __builtin_getfsstat found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c:14:17: error: '__builtin_getfsstat' undeclared (first use in this function)
                 __builtin_getfsstat;
                 ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "getfsstat" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm1ukt1mv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm1ukt1mv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm1ukt1mv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getgrgid_r meson_disable_define_of_getgrgid_r
        
        #include <limits.h>
        #undef getgrgid_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getgrgid_r (void);
        
        #if defined __stub_getgrgid_r || defined __stub___getgrgid_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getgrgid_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getgrgid_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__n085lr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__n085lr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__n085lr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getmntent_r meson_disable_define_of_getmntent_r
        
        #include <limits.h>
        #undef getmntent_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getmntent_r (void);
        
        #if defined __stub_getmntent_r || defined __stub___getmntent_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getmntent_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getmntent_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbcx7fjb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbcx7fjb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbcx7fjb/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getpwuid_r meson_disable_define_of_getpwuid_r
        
        #include <limits.h>
        #undef getpwuid_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpwuid_r (void);
        
        #if defined __stub_getpwuid_r || defined __stub___getpwuid_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpwuid_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getpwuid_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmply1g20b2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmply1g20b2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmply1g20b2/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getresuid meson_disable_define_of_getresuid
        
        #include <limits.h>
        #undef getresuid
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getresuid (void);
        
        #if defined __stub_getresuid || defined __stub___getresuid
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getresuid ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getresuid" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjk6ri85l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjk6ri85l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjk6ri85l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getvfsstat meson_disable_define_of_getvfsstat
        
        #include <limits.h>
        #undef getvfsstat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getvfsstat (void);
        
        #if defined __stub_getvfsstat || defined __stub___getvfsstat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getvfsstat ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccBgQikK.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `getvfsstat'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_getvfsstat)
                #error "__builtin_getvfsstat not found"
            #endif
        #elif ! defined(getvfsstat)
            /* Check for __builtin_getvfsstat only if no includes were added to the
             * prefix above, which means no definition of getvfsstat can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_getvfsstat;
            #else
                #error "No definition for __builtin_getvfsstat found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c:14:17: error: '__builtin_getvfsstat' undeclared (first use in this function)
                 __builtin_getvfsstat;
                 ^~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "getvfsstat" : NO 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define gmtime_r meson_disable_define_of_gmtime_r
        
        #include <limits.h>
        #undef gmtime_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gmtime_r (void);
        
        #if defined __stub_gmtime_r || defined __stub___gmtime_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gmtime_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "gmtime_r" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8f7wfm7p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8f7wfm7p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8f7wfm7p/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define hasmntopt meson_disable_define_of_hasmntopt
        
        #include <limits.h>
        #undef hasmntopt
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char hasmntopt (void);
        
        #if defined __stub_hasmntopt || defined __stub___hasmntopt
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return hasmntopt ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "hasmntopt" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp22wwrfib
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp22wwrfib/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp22wwrfib/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define inotify_init1 meson_disable_define_of_inotify_init1
        
        #include <limits.h>
        #undef inotify_init1
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char inotify_init1 (void);
        
        #if defined __stub_inotify_init1 || defined __stub___inotify_init1
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return inotify_init1 ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "inotify_init1" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpld204vb0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpld204vb0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpld204vb0/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define issetugid meson_disable_define_of_issetugid
        
        #include <limits.h>
        #undef issetugid
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char issetugid (void);
        
        #if defined __stub_issetugid || defined __stub___issetugid
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return issetugid ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccOwizbL.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `issetugid'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_issetugid)
                #error "__builtin_issetugid not found"
            #endif
        #elif ! defined(issetugid)
            /* Check for __builtin_issetugid only if no includes were added to the
             * prefix above, which means no definition of issetugid can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_issetugid;
            #else
                #error "No definition for __builtin_issetugid found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c:14:17: error: '__builtin_issetugid' undeclared (first use in this function)
                 __builtin_issetugid;
                 ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "issetugid" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfduhuyn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfduhuyn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfduhuyn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define kevent meson_disable_define_of_kevent
        
        #include <limits.h>
        #undef kevent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char kevent (void);
        
        #if defined __stub_kevent || defined __stub___kevent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return kevent ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccrwmolS.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `kevent'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_kevent)
                #error "__builtin_kevent not found"
            #endif
        #elif ! defined(kevent)
            /* Check for __builtin_kevent only if no includes were added to the
             * prefix above, which means no definition of kevent can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_kevent;
            #else
                #error "No definition for __builtin_kevent found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c:14:17: error: '__builtin_kevent' undeclared (first use in this function)
                 __builtin_kevent;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "kevent" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpalikmbru
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpalikmbru/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpalikmbru/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define kqueue meson_disable_define_of_kqueue
        
        #include <limits.h>
        #undef kqueue
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char kqueue (void);
        
        #if defined __stub_kqueue || defined __stub___kqueue
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return kqueue ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccv90yDW.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `kqueue'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_kqueue)
                #error "__builtin_kqueue not found"
            #endif
        #elif ! defined(kqueue)
            /* Check for __builtin_kqueue only if no includes were added to the
             * prefix above, which means no definition of kqueue can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_kqueue;
            #else
                #error "No definition for __builtin_kqueue found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c:14:17: error: '__builtin_kqueue' undeclared (first use in this function)
                 __builtin_kqueue;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "kqueue" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define lchmod meson_disable_define_of_lchmod
        
        #include <limits.h>
        #undef lchmod
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char lchmod (void);
        
        #if defined __stub_lchmod || defined __stub___lchmod
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return lchmod ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c:13:9: error: unknown type name 'fail'
         fail fail fail this function is not going to work
         ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c:13:19: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fail'
         fail fail fail this function is not going to work
                   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c:13:19: error: unknown type name 'fail'

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_lchmod)
                #error "__builtin_lchmod not found"
            #endif
        #elif ! defined(lchmod)
            /* Check for __builtin_lchmod only if no includes were added to the
             * prefix above, which means no definition of lchmod can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_lchmod;
            #else
                #error "No definition for __builtin_lchmod found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c:14:17: error: '__builtin_lchmod' undeclared (first use in this function)
                 __builtin_lchmod;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "lchmod" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprexqa_cy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprexqa_cy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprexqa_cy/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define lchown meson_disable_define_of_lchown
        
        #include <limits.h>
        #undef lchown
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char lchown (void);
        
        #if defined __stub_lchown || defined __stub___lchown
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return lchown ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "lchown" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp043v_vtv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp043v_vtv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp043v_vtv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define link meson_disable_define_of_link
        
        #include <limits.h>
        #undef link
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char link (void);
        
        #if defined __stub_link || defined __stub___link
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return link ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "link" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx27w0xai
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx27w0xai/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx27w0xai/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define localtime_r meson_disable_define_of_localtime_r
        
        #include <limits.h>
        #undef localtime_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char localtime_r (void);
        
        #if defined __stub_localtime_r || defined __stub___localtime_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return localtime_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "localtime_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphif51b7b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphif51b7b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphif51b7b/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define lstat meson_disable_define_of_lstat
        
        #include <limits.h>
        #undef lstat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char lstat (void);
        
        #if defined __stub_lstat || defined __stub___lstat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return lstat ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "lstat" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgohtnzv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgohtnzv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgohtnzv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mbrtowc meson_disable_define_of_mbrtowc
        
        #include <limits.h>
        #undef mbrtowc
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mbrtowc (void);
        
        #if defined __stub_mbrtowc || defined __stub___mbrtowc
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mbrtowc ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "mbrtowc" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define memalign meson_disable_define_of_memalign
        
        #include <limits.h>
        #undef memalign
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char memalign (void);
        
        #if defined __stub_memalign || defined __stub___memalign
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return memalign ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "memalign" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mmap meson_disable_define_of_mmap
        
        #include <limits.h>
        #undef mmap
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mmap (void);
        
        #if defined __stub_mmap || defined __stub___mmap
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mmap ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "mmap" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsrvv5ya
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsrvv5ya/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsrvv5ya/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define newlocale meson_disable_define_of_newlocale
        
        #include <limits.h>
        #undef newlocale
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char newlocale (void);
        
        #if defined __stub_newlocale || defined __stub___newlocale
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return newlocale ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "newlocale" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define pipe2 meson_disable_define_of_pipe2
        
        #include <limits.h>
        #undef pipe2
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pipe2 (void);
        
        #if defined __stub_pipe2 || defined __stub___pipe2
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pipe2 ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "pipe2" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define poll meson_disable_define_of_poll
        
        #include <limits.h>
        #undef poll
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char poll (void);
        
        #if defined __stub_poll || defined __stub___poll
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return poll ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "poll" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps9z5cmc4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps9z5cmc4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps9z5cmc4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define prlimit meson_disable_define_of_prlimit
        
        #include <limits.h>
        #undef prlimit
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char prlimit (void);
        
        #if defined __stub_prlimit || defined __stub___prlimit
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return prlimit ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "prlimit" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2iy2wqa3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2iy2wqa3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2iy2wqa3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define readlink meson_disable_define_of_readlink
        
        #include <limits.h>
        #undef readlink
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char readlink (void);
        
        #if defined __stub_readlink || defined __stub___readlink
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return readlink ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "readlink" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj8u__2qs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj8u__2qs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj8u__2qs/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define recvmmsg meson_disable_define_of_recvmmsg
        
        #include <limits.h>
        #undef recvmmsg
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char recvmmsg (void);
        
        #if defined __stub_recvmmsg || defined __stub___recvmmsg
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return recvmmsg ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "recvmmsg" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphna4feno
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphna4feno/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphna4feno/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define sendmmsg meson_disable_define_of_sendmmsg
        
        #include <limits.h>
        #undef sendmmsg
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sendmmsg (void);
        
        #if defined __stub_sendmmsg || defined __stub___sendmmsg
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sendmmsg ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "sendmmsg" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvrq94p7y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvrq94p7y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvrq94p7y/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define setenv meson_disable_define_of_setenv
        
        #include <limits.h>
        #undef setenv
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setenv (void);
        
        #if defined __stub_setenv || defined __stub___setenv
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setenv ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "setenv" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tr0400d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tr0400d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tr0400d/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define setmntent meson_disable_define_of_setmntent
        
        #include <limits.h>
        #undef setmntent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setmntent (void);
        
        #if defined __stub_setmntent || defined __stub___setmntent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setmntent ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "setmntent" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvffwsed9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvffwsed9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvffwsed9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strerror_r meson_disable_define_of_strerror_r
        
        #include <limits.h>
        #undef strerror_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strerror_r (void);
        
        #if defined __stub_strerror_r || defined __stub___strerror_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strerror_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strerror_r" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strnlen meson_disable_define_of_strnlen
        
        #include <limits.h>
        #undef strnlen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strnlen (void);
        
        #if defined __stub_strnlen || defined __stub___strnlen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strnlen ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strnlen" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strsignal meson_disable_define_of_strsignal
        
        #include <limits.h>
        #undef strsignal
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strsignal (void);
        
        #if defined __stub_strsignal || defined __stub___strsignal
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strsignal ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strsignal" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprzrgvic_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprzrgvic_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprzrgvic_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtod_l meson_disable_define_of_strtod_l
        
        #include <limits.h>
        #undef strtod_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtod_l (void);
        
        #if defined __stub_strtod_l || defined __stub___strtod_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtod_l ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strtod_l" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_vvw0i8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_vvw0i8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_vvw0i8/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtoll_l meson_disable_define_of_strtoll_l
        
        #include <limits.h>
        #undef strtoll_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtoll_l (void);
        
        #if defined __stub_strtoll_l || defined __stub___strtoll_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtoll_l ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strtoll_l" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcvb2_6o7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcvb2_6o7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcvb2_6o7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtoull_l meson_disable_define_of_strtoull_l
        
        #include <limits.h>
        #undef strtoull_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtoull_l (void);
        
        #if defined __stub_strtoull_l || defined __stub___strtoull_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtoull_l ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strtoull_l" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bv8rzj4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bv8rzj4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bv8rzj4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define symlink meson_disable_define_of_symlink
        
        #include <limits.h>
        #undef symlink
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char symlink (void);
        
        #if defined __stub_symlink || defined __stub___symlink
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return symlink ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "symlink" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ur15wkx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ur15wkx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ur15wkx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define timegm meson_disable_define_of_timegm
        
        #include <limits.h>
        #undef timegm
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char timegm (void);
        
        #if defined __stub_timegm || defined __stub___timegm
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return timegm ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "timegm" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoqr5gj9s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoqr5gj9s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoqr5gj9s/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define unsetenv meson_disable_define_of_unsetenv
        
        #include <limits.h>
        #undef unsetenv
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char unsetenv (void);
        
        #if defined __stub_unsetenv || defined __stub___unsetenv
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return unsetenv ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "unsetenv" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprlhzalcd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprlhzalcd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprlhzalcd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define uselocale meson_disable_define_of_uselocale
        
        #include <limits.h>
        #undef uselocale
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char uselocale (void);
        
        #if defined __stub_uselocale || defined __stub___uselocale
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return uselocale ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "uselocale" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6rw9vr73
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6rw9vr73/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6rw9vr73/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define utimes meson_disable_define_of_utimes
        
        #include <limits.h>
        #undef utimes
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char utimes (void);
        
        #if defined __stub_utimes || defined __stub___utimes
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return utimes ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "utimes" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4fjkbb1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4fjkbb1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4fjkbb1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define valloc meson_disable_define_of_valloc
        
        #include <limits.h>
        #undef valloc
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char valloc (void);
        
        #if defined __stub_valloc || defined __stub___valloc
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return valloc ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "valloc" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvpbz8lq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvpbz8lq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvpbz8lq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define vasprintf meson_disable_define_of_vasprintf
        
        #include <limits.h>
        #undef vasprintf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char vasprintf (void);
        
        #if defined __stub_vasprintf || defined __stub___vasprintf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return vasprintf ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "vasprintf" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define vsnprintf meson_disable_define_of_vsnprintf
        
        #include <limits.h>
        #undef vsnprintf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char vsnprintf (void);
        
        #if defined __stub_vsnprintf || defined __stub___vsnprintf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return vsnprintf ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax/testfile.c:10:14: warning: conflicting types for built-in function 'vsnprintf'
         char vsnprintf (void);
              ^~~~~~~~~

Checking for function "vsnprintf" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxn_gazw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxn_gazw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxn_gazw/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define wcrtomb meson_disable_define_of_wcrtomb
        
        #include <limits.h>
        #undef wcrtomb
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcrtomb (void);
        
        #if defined __stub_wcrtomb || defined __stub___wcrtomb
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcrtomb ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "wcrtomb" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8bnj0jv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8bnj0jv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8bnj0jv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define wcslen meson_disable_define_of_wcslen
        
        #include <limits.h>
        #undef wcslen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcslen (void);
        
        #if defined __stub_wcslen || defined __stub___wcslen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcslen ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "wcslen" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsqhrk55o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsqhrk55o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsqhrk55o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define wcsnlen meson_disable_define_of_wcsnlen
        
        #include <limits.h>
        #undef wcsnlen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcsnlen (void);
        
        #if defined __stub_wcsnlen || defined __stub___wcsnlen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcsnlen ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "wcsnlen" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuec3fhzg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuec3fhzg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuec3fhzg/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define sysctlbyname meson_disable_define_of_sysctlbyname
        
        #include <limits.h>
        #undef sysctlbyname
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sysctlbyname (void);
        
        #if defined __stub_sysctlbyname || defined __stub___sysctlbyname
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sysctlbyname ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/cc4PI0Dm.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `sysctlbyname'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_sysctlbyname)
                #error "__builtin_sysctlbyname not found"
            #endif
        #elif ! defined(sysctlbyname)
            /* Check for __builtin_sysctlbyname only if no includes were added to the
             * prefix above, which means no definition of sysctlbyname can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_sysctlbyname;
            #else
                #error "No definition for __builtin_sysctlbyname found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c:14:17: error: '__builtin_sysctlbyname' undeclared (first use in this function)
                 __builtin_sysctlbyname;
                 ^~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "sysctlbyname" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1q7j4gdn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1q7j4gdn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1q7j4gdn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define _NSGetEnviron meson_disable_define_of__NSGetEnviron
        
        #include <limits.h>
        #undef _NSGetEnviron
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char _NSGetEnviron (void);
        
        #if defined __stub__NSGetEnviron || defined __stub____NSGetEnviron
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return _NSGetEnviron ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/cc8yZW6q.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `_NSGetEnviron'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin__NSGetEnviron)
                #error "__builtin__NSGetEnviron not found"
            #endif
        #elif ! defined(_NSGetEnviron)
            /* Check for __builtin__NSGetEnviron only if no includes were added to the
             * prefix above, which means no definition of _NSGetEnviron can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin__NSGetEnviron;
            #else
                #error "No definition for __builtin__NSGetEnviron found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c:14:17: error: '__builtin__NSGetEnviron' undeclared (first use in this function)
                 __builtin__NSGetEnviron;
                 ^~~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "_NSGetEnviron" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1n_8mw1l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1n_8mw1l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1n_8mw1l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define statvfs meson_disable_define_of_statvfs
        
        #include <limits.h>
        #undef statvfs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char statvfs (void);
        
        #if defined __stub_statvfs || defined __stub___statvfs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return statvfs ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "statvfs" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxj102i0m
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxj102i0m/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxj102i0m/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define statfs meson_disable_define_of_statfs
        
        #include <limits.h>
        #undef statfs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char statfs (void);
        
        #if defined __stub_statfs || defined __stub___statfs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return statfs ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "statfs" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9quowkvd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9quowkvd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9quowkvd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define if_indextoname meson_disable_define_of_if_indextoname
        
        #include <limits.h>
        #undef if_indextoname
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char if_indextoname (void);
        
        #if defined __stub_if_indextoname || defined __stub___if_indextoname
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return if_indextoname ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "if_indextoname" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi897japr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi897japr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi897japr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define if_nametoindex meson_disable_define_of_if_nametoindex
        
        #include <limits.h>
        #undef if_nametoindex
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char if_nametoindex (void);
        
        #if defined __stub_if_nametoindex || defined __stub___if_nametoindex
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return if_nametoindex ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "if_nametoindex" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq57yovct
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq57yovct/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq57yovct/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define splice meson_disable_define_of_splice
        
        #include <limits.h>
        #undef splice
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char splice (void);
        
        #if defined __stub_splice || defined __stub___splice
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return splice ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "splice" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyihf9t5k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyihf9t5k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyihf9t5k/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <string.h>
#include <limits.h>

        #if defined __stub_stpcpy || defined __stub___stpcpy
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &stpcpy;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "stpcpy" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdlib.h>
#include <limits.h>

        #if defined __stub_posix_memalign || defined __stub___posix_memalign
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &posix_memalign;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "posix_memalign" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp7y61g0c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp7y61g0c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp7y61g0c/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <spawn.h>
#include <limits.h>

        #if defined __stub_posix_spawn || defined __stub___posix_spawn
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &posix_spawn;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "posix_spawn" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq1z6ooj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq1z6ooj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq1z6ooj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define _GNU_SOURCE
                    #include <string.h>
                    int func (void) {
                      char error_string[256];
                      char *ptr = strerror_r (-2, error_string, 256);
                      char c = *strerror_r (-2, error_string, 256);
                      return c != 0 && ptr != (void*) 0L;
                    }
                 
Compiler stdout:
 
Compiler stderr:
 
Checking if "strerror_r() returns char *" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define snprintf meson_disable_define_of_snprintf
        
        #include <limits.h>
        #undef snprintf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char snprintf (void);
        
        #if defined __stub_snprintf || defined __stub___snprintf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return snprintf ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h/testfile.c:10:14: warning: conflicting types for built-in function 'snprintf'
         char snprintf (void);
              ^~~~~~~~

Checking for function "snprintf" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strcasecmp meson_disable_define_of_strcasecmp
        
        #include <limits.h>
        #undef strcasecmp
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strcasecmp (void);
        
        #if defined __stub_strcasecmp || defined __stub___strcasecmp
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strcasecmp ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h/testfile.c:10:14: warning: conflicting types for built-in function 'strcasecmp'
         char strcasecmp (void);
              ^~~~~~~~~~

Checking for function "strcasecmp" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strncasecmp meson_disable_define_of_strncasecmp
        
        #include <limits.h>
        #undef strncasecmp
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strncasecmp (void);
        
        #if defined __stub_strncasecmp || defined __stub___strncasecmp
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strncasecmp ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu/testfile.c:10:14: warning: conflicting types for built-in function 'strncasecmp'
         char strncasecmp (void);
              ^~~~~~~~~~~

Checking for function "strncasecmp" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/sysmacros.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef major
                major;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/sysmacros.h> has symbol "major" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz80bi7f6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz80bi7f6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz80bi7f6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_LAZY
                RTLD_LAZY;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_LAZY" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeqk1bp_b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeqk1bp_b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeqk1bp_b/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_NOW
                RTLD_NOW;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_NOW" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7y268oq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7y268oq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7y268oq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_GLOBAL
                RTLD_GLOBAL;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_GLOBAL" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3ms624dc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3ms624dc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3ms624dc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -D_GNU_SOURCE 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_NEXT
                RTLD_NEXT;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_NEXT" : YES 
Message: Checking whether to use statfs or statvfs .. statfs
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpol4p4g8o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpol4p4g8o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpol4p4g8o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define _GNU_SOURCE
                                #include <stdlib.h>
#include <limits.h>

        #if defined __stub_mkostemp || defined __stub___mkostemp
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &mkostemp;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "mkostemp" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <linux/futex.h>
               #include <sys/syscall.h>
               #include <unistd.h>
               int main (int argc, char ** argv) {
                 syscall (__NR_futex, NULL, FUTEX_WAKE, FUTEX_WAIT);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "futex(2) system call" links: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphfivx312
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphfivx312/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphfivx312/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/eventfd.h>
               #include <unistd.h>
               int main (int argc, char ** argv) {
                 eventfd (0, EFD_CLOEXEC);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 
Checking if "eventfd(2) system call" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsdl8n85g
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsdl8n85g/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsdl8n85g/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  #include <time.h>
  struct timespec t;
  int main (int argc, char ** argv) {
    return clock_gettime(CLOCK_REALTIME, &t);
  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "clock_gettime" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_24dwxz5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_24dwxz5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_24dwxz5/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <dlfcn.h>
int glib_underscore_test (void) { return 42; }
int main (int argc, char ** argv) {
  void *f1 = (void*)0, *f2 = (void*)0, *handle;
  handle = dlopen ((void*)0, 0);
  if (handle) {
    f1 = dlsym (handle, "glib_underscore_test");
    f2 = dlsym (handle, "_glib_underscore_test");
  }
  return (!f2 || f1);
}
Compiler stdout:
 
Compiler stderr:
 /tmp/ccuc4Ch7.o: In function `main':
testfile.c:(.text+0x35): undefined reference to `dlopen'
testfile.c:(.text+0x53): undefined reference to `dlsym'
testfile.c:(.text+0x6a): undefined reference to `dlsym'
collect2: error: ld returned 1 exit status

Checking if "dlopen() and dlsym() in system libraries" links: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqf_a_49w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqf_a_49w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqf_a_49w/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -ldl -Wl,--end-group 

Code:
 
#include <dlfcn.h>
int glib_underscore_test (void) { return 42; }
int main (int argc, char ** argv) {
  void *f1 = (void*)0, *f2 = (void*)0, *handle;
  handle = dlopen ((void*)0, 0);
  if (handle) {
    f1 = dlsym (handle, "glib_underscore_test");
    f2 = dlsym (handle, "_glib_underscore_test");
  }
  return (!f2 || f1);
}
Compiler stdout:
 
Compiler stderr:
 
Checking if "dlopen() and dlsym() in libdl" links: YES 
Library dl found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsbyz9zgo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsbyz9zgo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsbyz9zgo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#define HAVE_STRUCT_TM_TM_GMTOFF 1
#define HAVE_ENDMNTENT 1
#define HAVE_ENDSERVENT 1
#define HAVE_FALLOCATE 1
#define HAVE_FCHMOD 1
#define HAVE_FCHOWN 1
#define HAVE_FSYNC 1
#define HAVE_GETAUXVAL 1
#define HAVE_GETC_UNLOCKED 1
#define HAVE_GETGRGID_R 1
#define HAVE_GETMNTENT_R 1
#define HAVE_GETPWUID_R 1
#define HAVE_GETRESUID 1
#define HAVE_GMTIME_R 1
#define HAVE_HASMNTOPT 1
#define HAVE_INOTIFY_INIT1 1
#define HAVE_LCHOWN 1
#define HAVE_LINK 1
#define HAVE_LOCALTIME_R 1
#define HAVE_LSTAT 1
#define HAVE_MBRTOWC 1
#define HAVE_MEMALIGN 1
#define HAVE_MMAP 1
#define HAVE_NEWLOCALE 1
#define HAVE_PIPE2 1
#define HAVE_POLL 1
#define HAVE_PRLIMIT 1
#define HAVE_READLINK 1
#define HAVE_RECVMMSG 1
#define HAVE_SENDMMSG 1
#define HAVE_SETENV 1
#define HAVE_SETMNTENT 1
#define HAVE_STRERROR_R 1
#define HAVE_STRNLEN 1
#define HAVE_STRSIGNAL 1
#define HAVE_STRTOD_L 1
#define HAVE_STRTOLL_L 1
#define HAVE_STRTOULL_L 1
#define HAVE_SYMLINK 1
#define HAVE_TIMEGM 1
#define HAVE_UNSETENV 1
#define HAVE_USELOCALE 1
#define HAVE_UTIMES 1
#define HAVE_VALLOC 1
#define HAVE_VASPRINTF 1
#define HAVE_VSNPRINTF 1
#define HAVE_WCRTOMB 1
#define HAVE_WCSLEN 1
#define HAVE_WCSNLEN 1
#define HAVE_STATVFS 1
#define HAVE_STATFS 1
#define HAVE_IF_INDEXTONAME 1
#define HAVE_IF_NAMETOINDEX 1
#define HAVE_SPLICE 1
#define HAVE_SNPRINTF 1
#define HAVE_STRCASECMP 1
#define HAVE_STRNCASECMP 1

                 #include <unistd.h>
                        #ifdef HAVE_SYS_PARAM_H
                        #include <sys/param.h>
                        #endif
                        #ifdef HAVE_SYS_VFS_H
                        #include <sys/vfs.h>
                        #endif
                        #ifdef HAVE_SYS_MOUNT_H
                        #include <sys/mount.h>
                        #endif
                        #ifdef HAVE_SYS_STATFS_H
                        #include <sys/statfs.h>
                        #endif
                        void some_func (void) {
                          struct statfs st;
                          statfs("/", &st);
                        }
Compiler stdout:
 
Compiler stderr:
 
Checking if "number of arguments to statfs() (n=2)" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <fcntl.h>
                  #include <sys/types.h>
                  #include <sys/stat.h>],
                  void some_func (void) {
                    open(0, O_DIRECTORY, 0);
                  }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6/testfile.c:3:40: warning: extra tokens at end of #include directive
                   #include <sys/stat.h>],
                                        ^

Checking if "open() option O_DIRECTORY" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdio.h>
#include <stdarg.h>

int
doit(char * s, ...)
{
  char buffer[32];
  va_list args;
  int r;

  va_start(args, s);
  r = vsnprintf(buffer, 5, s, args);
  va_end(args);

  if (r != 7)
    exit(1);

  /* AIX 5.1 and Solaris seems to have a half-baked vsnprintf()
     implementation. The above will return 7 but if you replace
     the size of the buffer with 0, it borks! */
  va_start(args, s);
  r = vsnprintf(buffer, 0, s, args);
  va_end(args);

  if (r != 7)
    exit(1);

  exit(0);
}

int
main(void)
{
  doit("1234567");
  exit(1);
}
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:17:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:17:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:17:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:27:5: warning: incompatible implicit declaration of built-in function 'exit'
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:27:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:29:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(0);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:29:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:36:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(1);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjnh1z13/testfile.c:36:3: note: include '<stdlib.h>' or provide a declaration of 'exit'

Program stdout:


Program stderr:


Checking if "C99 vsnprintf" runs: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdio.h>
#include <stdarg.h>

int
doit()
{
  char buffer[32];
  va_list args;
  int r;

  r = snprintf(buffer, 5, "1234567");

  if (r != 7)
    exit(1);

  r = snprintf(buffer, 0, "1234567");

  if (r != 7)
    exit(1);

  r = snprintf(NULL, 0, "1234567");

  if (r != 7)
    exit(1);

  exit(0);
}

int
main(void)
{
  doit();
  exit(1);
}
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:15:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:15:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:15:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:20:5: warning: incompatible implicit declaration of built-in function 'exit'
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:20:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:25:5: warning: incompatible implicit declaration of built-in function 'exit'
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:25:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:27:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(0);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:27:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:34:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(1);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvufcmidx/testfile.c:34:3: note: include '<stdlib.h>' or provide a declaration of 'exit'

Program stdout:


Program stderr:


Checking if "C99 snprintf" runs: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdio.h>

int
main (void)
{
  char buffer[128];

  sprintf (buffer, "%2\$d %3\$d %1\$d", 1, 2, 3);
  if (strcmp ("2 3 1", buffer) == 0)
    exit (0);
  exit (1);
}
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:9:20: warning: unknown escape sequence: '\$'
   sprintf (buffer, "%2\$d %3\$d %1\$d", 1, 2, 3);
                    ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:10:7: warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration]
   if (strcmp ("2 3 1", buffer) == 0)
       ^~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:11:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
     exit (0);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:11:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:11:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:12:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit (1);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ko4ejm6/testfile.c:12:3: note: include '<stdlib.h>' or provide a declaration of 'exit'

Program stdout:


Program stderr:


Checking if "Unix98 printf positional parameters" runs: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkz8j7svz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkz8j7svz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkz8j7svz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *codeset = nl_langinfo (CODESET);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 
Checking if "nl_langinfo and CODESET" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ebyde4l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ebyde4l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ebyde4l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (PM_STR);
                 str = nl_langinfo (D_T_FMT);
                 str = nl_langinfo (D_FMT);
                 str = nl_langinfo (T_FMT);
                 str = nl_langinfo (T_FMT_AMPM);
                 str = nl_langinfo (MON_1);
                 str = nl_langinfo (ABMON_12);
                 str = nl_langinfo (DAY_1);
                 str = nl_langinfo (ABDAY_7);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 
Checking if "nl_langinfo (PM_STR)" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpleefzeje
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpleefzeje/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpleefzeje/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT0_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT1_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT2_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT3_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT4_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT5_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT6_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT7_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT8_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT9_MB);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 
Checking if "nl_langinfo (_NL_CTYPE_OUTDIGITn_MB)" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #ifndef _GNU_SOURCE
              # define _GNU_SOURCE
              #endif
              #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (ALTMON_1);
                 str = nl_langinfo (ALTMON_2);
                 str = nl_langinfo (ALTMON_3);
                 str = nl_langinfo (ALTMON_4);
                 str = nl_langinfo (ALTMON_5);
                 str = nl_langinfo (ALTMON_6);
                 str = nl_langinfo (ALTMON_7);
                 str = nl_langinfo (ALTMON_8);
                 str = nl_langinfo (ALTMON_9);
                 str = nl_langinfo (ALTMON_10);
                 str = nl_langinfo (ALTMON_11);
                 str = nl_langinfo (ALTMON_12);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:7:37: error: 'ALTMON_1' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_1);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:7:37: note: each undeclared identifier is reported only once for each function it appears in
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:8:37: error: 'ALTMON_2' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_2);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:9:37: error: 'ALTMON_3' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_3);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:10:37: error: 'ALTMON_4' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_4);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:11:37: error: 'ALTMON_5' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_5);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:12:37: error: 'ALTMON_6' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_6);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:13:37: error: 'ALTMON_7' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_7);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:14:37: error: 'ALTMON_8' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_8);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:15:37: error: 'ALTMON_9' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_9);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:16:37: error: 'ALTMON_10' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_10);
                                     ^~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:17:37: error: 'ALTMON_11' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_11);
                                     ^~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:18:37: error: 'ALTMON_12' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_12);
                                     ^~~~~~~~~

Checking if "nl_langinfo (ALTMON_n)" links: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #ifndef _GNU_SOURCE
              # define _GNU_SOURCE
              #endif
              #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (_NL_ABALTMON_1);
                 str = nl_langinfo (_NL_ABALTMON_2);
                 str = nl_langinfo (_NL_ABALTMON_3);
                 str = nl_langinfo (_NL_ABALTMON_4);
                 str = nl_langinfo (_NL_ABALTMON_5);
                 str = nl_langinfo (_NL_ABALTMON_6);
                 str = nl_langinfo (_NL_ABALTMON_7);
                 str = nl_langinfo (_NL_ABALTMON_8);
                 str = nl_langinfo (_NL_ABALTMON_9);
                 str = nl_langinfo (_NL_ABALTMON_10);
                 str = nl_langinfo (_NL_ABALTMON_11);
                 str = nl_langinfo (_NL_ABALTMON_12);
                 return 0;
               }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:7:37: error: '_NL_ABALTMON_1' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_1);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:7:37: note: each undeclared identifier is reported only once for each function it appears in
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:8:37: error: '_NL_ABALTMON_2' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_2);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:9:37: error: '_NL_ABALTMON_3' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_3);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:10:37: error: '_NL_ABALTMON_4' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_4);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:11:37: error: '_NL_ABALTMON_5' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_5);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:12:37: error: '_NL_ABALTMON_6' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_6);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:13:37: error: '_NL_ABALTMON_7' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_7);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:14:37: error: '_NL_ABALTMON_8' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_8);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:15:37: error: '_NL_ABALTMON_9' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_9);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:16:37: error: '_NL_ABALTMON_10' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_10);
                                     ^~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:17:37: error: '_NL_ABALTMON_11' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_11);
                                     ^~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:18:37: error: '_NL_ABALTMON_12' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_12);
                                     ^~~~~~~~~~~~~~~

Checking if "nl_langinfo (_NL_ABALTMON_n)" links: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydgbt9cd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydgbt9cd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydgbt9cd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 signed char x;
Compiler stdout:
 
Compiler stderr:
 
Checking if "signed" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <stddef.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef ptrdiff_t
                ptrdiff_t;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/testfile.c:6:17: warning: useless type name in empty declaration
                 ptrdiff_t;
                 ^~~~~~~~~

Header <stddef.h> has symbol "ptrdiff_t" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcgknmbsz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcgknmbsz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcgknmbsz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <signal.h>
               #include <sys/types.h>
               sig_atomic_t val = 42;
               int main (int argc, char ** argv) {
                 return val == 42 ? 0 : 1;
               }
Compiler stdout:
 
Compiler stderr:
 
Checking if "sig_atomic_t" links: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 long long ll = 1LL;
                  int i = 63;
                  int some_func (void) {
                    long long llmax = (long long) -1;
                    return ll << i | ll >> i | llmax / ll | llmax % ll;
                  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "long long" compiles: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6qa9h1t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6qa9h1t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6qa9h1t/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 /* The Stardent Vistra knows sizeof(long double), but does not support it.  */
                  long double foo = 0.0;
                  /* On Ultrix 4.3 cc, long double is 4 and double is 8.  */
                  int array [2*(sizeof(long double) >= sizeof(double)) - 1];
Compiler stdout:
 
Compiler stderr:
 
Checking if "long double" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <stddef.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef wchar_t
                wchar_t;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/testfile.c:6:17: warning: useless type name in empty declaration
                 wchar_t;
                 ^~~~~~~

Header <stddef.h> has symbol "wchar_t" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <wchar.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef wint_t
                wint_t;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/testfile.c:6:17: warning: useless type name in empty declaration
                 wint_t;
                 ^~~~~~

Header <wchar.h> has symbol "wint_t" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbl3dawgg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbl3dawgg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbl3dawgg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
                  #include <inttypes.h>
                  void some_func (void) {
                    uintmax_t i = (uintmax_t) -1;
                  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "uintmax_t in inttypes.h" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4f8kb9s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4f8kb9s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4f8kb9s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
                  #include <stdint.h>
                  void some_func (void) {
                    uintmax_t i = (uintmax_t) -1;
                  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "uintmax_t in stdint.h" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2660bgrr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2660bgrr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2660bgrr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(char)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Checking for size of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2sbtkqak
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2sbtkqak/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2sbtkqak/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(short)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Checking for size of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyr3plzy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyr3plzy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyr3plzy/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(int)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmc9g9164
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmc9g9164/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmc9g9164/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void*)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxexw7fkh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxexw7fkh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxexw7fkh/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdqopa2_2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdqopa2_2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdqopa2_2/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjupvlvlm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjupvlvlm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjupvlvlm/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(size_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "size_t" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpph3sq7wj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpph3sq7wj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpph3sq7wj/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(ssize_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "ssize_t" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph63f8hz9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph63f8hz9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph63f8hz9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #if defined(_AIX) && !defined(__GNUC__)
                    #pragma options langlvl=stdc99
                    #endif
                    #pragma GCC diagnostic error "-Wincompatible-pointer-types"
                    #include <stdint.h>
                    #include <stdio.h>
                    int main () {
                      int64_t i1 = 1;
                      long *i2 = &i1;
                      return 1;
                    }
Compiler stdout:
 
Compiler stderr:
 
Checking if "int64_t is long" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpco5diddz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpco5diddz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpco5diddz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            char target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1
Program stderr:


Checking for alignment of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmaz0mes6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmaz0mes6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmaz0mes6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            short target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2
Program stderr:


Checking for alignment of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6s3jgzxa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6s3jgzxa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6s3jgzxa/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            int target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4
Program stderr:


Checking for alignment of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpchsc01d8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpchsc01d8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpchsc01d8/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            void* target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxp0i7wxj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxp0i7wxj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxp0i7wxj/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            long target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp91l2dyw4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp91l2dyw4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp91l2dyw4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            long long target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "long long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps_ms6qtx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps_ms6qtx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps_ms6qtx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            size_t target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "size_t" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp77nbb1to
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp77nbb1to/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp77nbb1to/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        #include <stddef.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(wchar_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "wchar_t" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmkzy6wi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmkzy6wi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmkzy6wi/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdarg.h>
                    #include <stdlib.h>
                    #ifdef _MSC_VER
                    # include "msvc_recommended_pragmas.h"
                    #endif
                    void f (int i, ...) {
                    va_list args1, args2;
                    va_start (args1, i);
                    __va_copy (args2, args1);
                    if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
                      exit (1);
                    va_end (args1); va_end (args2);
                    }
                    int main() {
                      f (0, 42);
                      return 0;
                    }
Compiler stdout:
 
Compiler stderr:
 
Checking if "__va_copy check" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8hvf8fra
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8hvf8fra/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8hvf8fra/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdarg.h>
                    #include <stdlib.h>
                    #ifdef _MSC_VER
                    # include "msvc_recommended_pragmas.h"
                    #endif
                    void f (int i, ...) {
                    va_list args1, args2;
                    va_start (args1, i);
                    va_copy (args2, args1);
                    if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
                      exit (1);
                    va_end (args1); va_end (args2);
                    }
                    int main() {
                      f (0, 42);
                      return 0;
                    }
Compiler stdout:
 
Compiler stderr:
 
Checking if "va_copy check" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1s8c5y6w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1s8c5y6w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1s8c5y6w/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  #include <stdarg.h>
  #include <stdlib.h>
  void f (int i, ...) {
    va_list args1, args2;
    va_start (args1, i);
    args2 = args1;
    if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
      exit (1);
    va_end (args1); va_end (args2);
  }
  int main() {
    f (0, 42);
    return 0;
  }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1s8c5y6w/testfile.c: In function 'f':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1s8c5y6w/testfile.c:7:11: error: assignment to expression with array type
     args2 = args1;
           ^

Could not compile test file /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1s8c5y6w/testfile.c: 1

Checking if "va_lists can be copied as values" runs: DID NOT COMPILE
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9kwqs_9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9kwqs_9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9kwqs_9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  void some_func (void) {
    int a(int p1, int p2, int p3);
    #define call_a(...) a(1,__VA_ARGS__)
    call_a(2,3);
  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "ISO C99 varargs macros in C" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdr2ognfc
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdr2ognfc/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdr2ognfc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive 

Code:
 
  void some_func (void) {
    int a(int p1, int p2, int p3);
    #define call_a(...) a(1,__VA_ARGS__)
    call_a(2,3);
  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "ISO C99 varargs macros in C++" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldzmsofu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldzmsofu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldzmsofu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  void some_func (void) {
    int a(int p1, int p2, int p3);
    #define call_a(params...) a(1,params)
    call_a(2,3);
  }
Compiler stdout:
 
Compiler stderr:
 
Checking if "GNUC varargs macros" compiles: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps0m2c8xv/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("alloca.h")
          #error "Header 'alloca.h' could not be found"
         #endif
        #else
         #include <alloca.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "alloca.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptptg2dij/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/poll.h")
          #error "Header 'sys/poll.h' could not be found"
         #endif
        #else
         #include <sys/poll.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/poll.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("winsock2.h")
          #error "Header 'winsock2.h' could not be found"
         #endif
        #else
         #include <winsock2.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c:4:12: error: #error "Header 'winsock2.h' could not be found"
           #error "Header 'winsock2.h' could not be found"
            ^~~~~

Has header "winsock2.h" : NO (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwq34mfbq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwq34mfbq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwq34mfbq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLIN));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Computing int of "POLLIN" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfq9scywx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfq9scywx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfq9scywx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLOUT));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Computing int of "POLLOUT" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg_4gojmd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg_4gojmd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg_4gojmd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLPRI));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Computing int of "POLLPRI" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa5kwducq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa5kwducq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa5kwducq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLERR));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Computing int of "POLLERR" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdoes4qqt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdoes4qqt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdoes4qqt/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLHUP));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

16

Program stderr:


Computing int of "POLLHUP" : 16
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplv1hn_vn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplv1hn_vn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplv1hn_vn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLNVAL));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

32

Program stderr:


Computing int of "POLLNVAL" : 32
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0tzvsg4i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0tzvsg4i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0tzvsg4i/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(AF_UNIX));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Computing int of "AF_UNIX" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp88f6t6wl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp88f6t6wl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp88f6t6wl/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(AF_INET));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Computing int of "AF_INET" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwkebditp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwkebditp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwkebditp/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(AF_INET6));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

10

Program stderr:


Computing int of "AF_INET6" : 10
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptomdl9xw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptomdl9xw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptomdl9xw/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(MSG_OOB));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Computing int of "MSG_OOB" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5wwzv1lt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5wwzv1lt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5wwzv1lt/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(MSG_PEEK));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Computing int of "MSG_PEEK" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppasi9kl1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppasi9kl1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppasi9kl1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(MSG_DONTROUTE));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Computing int of "MSG_DONTROUTE" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vt8af5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vt8af5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vt8af5/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 int main() {
  volatile int atomic = 2;
  __sync_bool_compare_and_swap (&atomic, 2, 3);
  return 0;
}

Compiler stdout:
 
Compiler stderr:
 
Checking if "atomic ops" links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqyei6ga
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqyei6ga/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqyei6ga/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4
#error "compiler has atomic ops, but doesn't define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4"
#endif

Compiler stdout:
 
Compiler stderr:
 
Checking if "atomic ops define" compiles: YES 
Dependency threads found: YES unknown (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7nff8pwo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7nff8pwo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7nff8pwo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_attr_setstacksize
                pthread_attr_setstacksize;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <pthread.h> has symbol "pthread_attr_setstacksize" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_condattr_setclock
                pthread_condattr_setclock;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <pthread.h> has symbol "pthread_condattr_setclock" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_cond_timedwait_relative_np
                pthread_cond_timedwait_relative_np;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c:6:17: error: 'pthread_cond_timedwait_relative_np' undeclared (first use in this function)
                 pthread_cond_timedwait_relative_np;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c:6:17: note: each undeclared identifier is reported only once for each function it appears in

Header <pthread.h> has symbol "pthread_cond_timedwait_relative_np" : NO (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbpgawvv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbpgawvv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbpgawvv/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
      #ifndef _GNU_SOURCE
      # define _GNU_SOURCE
      #endif
      #include <pthread.h>
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_getname_np
                pthread_getname_np;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <pthread.h> has symbol "pthread_getname_np" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/output.exe -pipe -pthread -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
      #ifndef _GNU_SOURCE
      # define _GNU_SOURCE
      #endif
      #include <pthread.h>
              int main() {
                pthread_setname_np("example");
                return 0;
              }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:7:36: warning: passing argument 1 of 'pthread_setname_np' makes integer from pointer without a cast [-Wint-conversion]
                 pthread_setname_np("example");
                                    ^~~~~~~~~
In file included from /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:5:0:
/usr/include/pthread.h:451:12: note: expected 'pthread_t {aka long unsigned int}' but argument is of type 'char *'
 extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
            ^~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:7:17: error: too few arguments to function 'pthread_setname_np'
                 pthread_setname_np("example");
                 ^~~~~~~~~~~~~~~~~~
In file included from /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:5:0:
/usr/include/pthread.h:451:12: note: declared here
 extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
            ^~~~~~~~~~~~~~~~~~

Checking if "pthread_setname_np(const char*)" with dependency threads links: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq2srmefe
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq2srmefe/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq2srmefe/output.exe -pipe -pthread -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
      #ifndef _GNU_SOURCE
      # define _GNU_SOURCE
      #endif
      #include <pthread.h>
                int main() {
                  pthread_setname_np(pthread_self(), "example");
                  return 0;
                }
Compiler stdout:
 
Compiler stderr:
 
Checking if "pthread_setname_np(pthread_t, const char*)" with dependency threads links: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc1izch84
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc1izch84/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc1izch84/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  volatile int *a = 0, *b = 0;
  void f (int i) {
    volatile int x = 5;
    if (i == 0)
      b = &x;
    else
      f (i - 1);
  }
  int main () {
    volatile int y = 7;
    a = &y;
    f (100);
    return b > a ? 0 : 1;
  }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:


Program stderr:


Checking if "stack grows check" runs: NO (1)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4uxkn8w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4uxkn8w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4uxkn8w/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define iconv_open meson_disable_define_of_iconv_open
        
        #include <limits.h>
        #undef iconv_open
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char iconv_open (void);
        
        #if defined __stub_iconv_open || defined __stub___iconv_open
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return iconv_open ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "iconv_open" : YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libpcre' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libpcre` -> 0
8.39
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags libpcre` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libpcre --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lpcre
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libpcre --libs` -> 0
-lpcre
Run-time dependency libpcre found: YES 8.39
Library m found: YES
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libffi' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libffi` -> 0
3.2.1
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags libffi` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libffi --libs` -> 0
-lffi
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libffi --libs` -> 0
-lffi
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_dw_cd_1
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_dw_cd_1/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_dw_cd_1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wl,--start-group -lffi -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Run-time dependency libffi found: YES 3.2.1
Dependency zlib found: YES 1.2.8 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzym4s2vt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzym4s2vt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzym4s2vt/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define ngettext meson_disable_define_of_ngettext
        
        #include <limits.h>
        #undef ngettext
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char ngettext (void);
        
        #if defined __stub_ngettext || defined __stub___ngettext
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return ngettext ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "ngettext" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprk0honp9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprk0honp9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprk0honp9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define bind_textdomain_codeset meson_disable_define_of_bind_textdomain_codeset
        
        #include <limits.h>
        #undef bind_textdomain_codeset
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char bind_textdomain_codeset (void);
        
        #if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return bind_textdomain_codeset ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "bind_textdomain_codeset" : YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'mount' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion mount` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency mount found: NO (tried pkgconfig and cmake)

subprojects/glib/meson.build:1868:2: Exception: Dependency "mount" not found, tried pkgconfig and cmake

Subproject libsoup is buildable: NO (disabling)
Dependency libsoup-2.4 from subproject subprojects/libsoup found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'speex' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion speex` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency speex found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'taglib' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion taglib` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency taglib found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'twolame' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion twolame` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency twolame found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vpx' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vpx` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency vpx found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'wavpack' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion wavpack` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency wavpack found: NO (tried pkgconfig and cmake)
Dependency valgrind found: YES 3.12.0.SVN (cached)
Adding test "elements_audioamplify"
Adding test "elements_audiochebband"
Adding test "elements_audiocheblimit"
Adding test "elements_audiodynamic"
Adding test "elements_audioecho"
Adding test "elements_audiofirfilter"
Adding test "elements_audioiirfilter"
Adding test "elements_audioinvert"
Adding test "elements_audiopanorama"
Adding test "elements_audiowsincband"
Adding test "elements_audiowsinclimit"
Adding test "elements_alphacolor"
Adding test "elements_alpha"
Adding test "elements_avimux"
Adding test "elements_avisubtitle"
Adding test "elements_capssetter"
Adding test "elements_aacparse"
Adding test "elements_ac3parse"
Adding test "elements_amrparse"
Adding test "elements_flacparse"
Adding test "elements_mpegaudioparse"
Adding test "elements_autodetect"
Adding test "elements_deinterlace"
Adding test "elements_dtmf"
Adding test "elements_flvdemux"
Adding test "elements_flvmux"
Adding test "elements_mulawdec"
Adding test "elements_mulawenc"
Adding test "elements_icydemux"
Adding test "elements_id3demux"
Adding test "elements_imagefreeze"
Adding test "elements_deinterleave"
Adding test "elements_interleave"
Adding test "elements_level"
Adding test "elements_matroskademux"
Adding test "elements_matroskamux"
Adding test "elements_matroskaparse"
Adding test "elements_multifile"
Adding test "elements_splitmuxsink"
Adding test "elements_splitmuxsinktimecode"
Adding test "elements_splitmuxsrc"
Adding test "elements_qtmux"
Adding test "elements_qtdemux"
Adding test "elements_rganalysis"
Adding test "elements_rglimiter"
Adding test "elements_rgvolume"
Adding test "elements_rtph261"
Adding test "elements_rtph263"
Adding test "elements_rtph264"
Adding test "elements_rtph265"
Adding test "elements_rtpopus"
Adding test "elements_rtpvp9"
Adding test "elements_rtpbin"
Adding test "elements_rtpbin_buffer_list"
Adding test "elements_rtpcollision"
Adding test "elements_rtpfunnel"
Adding test "elements_rtpjitterbuffer"
Adding test "elements_rtpjpeg"
Adding test "elements_rtptimerqueue"
Adding test "elements_rtpmux"
Adding test "elements_rtpptdemux"
Adding test "elements_rtprtx"
Adding test "elements_rtpsession"
Adding test "elements_rtpstorage"
Adding test "elements_rtpred"
Adding test "elements_rtpulpfec"
Adding test "elements_rtpssrcdemux"
Adding test "elements_rtp_payloading"
Adding test "elements_spectrum"
Adding test "elements_shapewipe"
Adding test "elements_udpsink"
Adding test "elements_udpsrc"
Adding test "elements_videobox"
Adding test "elements_videocrop"
Adding test "elements_videofilter"
Adding test "elements_videomixer"
Adding test "elements_aspectratiocrop"
Adding test "pipelines_wavenc"
Adding test "elements_wavparse"
Adding test "elements_wavpackparse"
Adding test "elements_y4menc"
Adding test "pipelines_effectv"
Adding test "elements_equalizer"
Adding test "pipelines_simple_launch_lines"
Adding test "pipelines_tagschecking"
Adding test "generic_states"
Adding test "pipelines_flacdec"
Dependency  from subproject subprojects/orc found: YES 0.4.29
Adding test "orc_deinterlace"
Adding test "orc_videomixer"
Adding test "orc_videobox"
Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Program scripts/update-orc-dist-files.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-good/scripts/update-orc-dist-files.py)
WARNING: Project targeting '>= 0.48' but tried to use feature introduced in '0.52.0': alias_target
Program xgettext found: YES (/usr/bin/xgettext)
Configuring config.h using configuration
Running command: /usr/bin/python3 -c import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")
--- stdout ---

--- stderr ---


Build targets in project: 606
WARNING: Project specifies a minimum meson_version '>= 0.48' but uses features which were added in newer versions:
 * 0.52.0: {'alias_target'}
Subproject gst-plugins-good finished.

Running command: /usr/bin/python3 -c 
import os

os.symlink(os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'subprojects', 'gst-plugins-good'),
  os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'gst-plugins-good'))

--- stdout ---

--- stderr ---
Traceback (most recent call last):
  File "<string>", line 5, in <module>
FileExistsError: [Errno 17] File exists: '/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-good' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-plugins-good'



Executing subproject libnice method meson 

Project name: libnice
Project version: 0.1.17.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define clock_gettime meson_disable_define_of_clock_gettime
        
        #include <limits.h>
        #undef clock_gettime
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char clock_gettime (void);
        
        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return clock_gettime ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "clock_gettime" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpebc9fe99
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpebc9fe99/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("arpa/inet.h")
          #error "Header 'arpa/inet.h' could not be found"
         #endif
        #else
         #include <arpa/inet.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "arpa/inet.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw59cgqqx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw59cgqqx/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("net/in.h")
          #error "Header 'net/in.h' could not be found"
         #endif
        #else
         #include <net/in.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw59cgqqx/testfile.c:4:12: error: #error "Header 'net/in.h' could not be found"
           #error "Header 'net/in.h' could not be found"
            ^~~~~

Has header "net/in.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6yix5c61
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6yix5c61/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("netdb.h")
          #error "Header 'netdb.h' could not be found"
         #endif
        #else
         #include <netdb.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "netdb.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9xgcgt0q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9xgcgt0q/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("ifaddrs.h")
          #error "Header 'ifaddrs.h' could not be found"
         #endif
        #else
         #include <ifaddrs.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "ifaddrs.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define poll meson_disable_define_of_poll
        
        #include <limits.h>
        #undef poll
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char poll (void);
        
        #if defined __stub_poll || defined __stub___poll
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return poll ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "poll" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyij8c21v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyij8c21v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyij8c21v/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getifaddrs meson_disable_define_of_getifaddrs
        
        #include <limits.h>
        #undef getifaddrs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getifaddrs (void);
        
        #if defined __stub_getifaddrs || defined __stub___getifaddrs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getifaddrs ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getifaddrs" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8weh6_oc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8weh6_oc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8weh6_oc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Message: warning level: 1
Message: werror enabled: false
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gio-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Dependency gio-2.0 found: NO found 2.50.3 but need: '>= 2.54'
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gio-2.0 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency gio-2.0

Executing subproject glib method meson 

Project name: glib
Project version: 2.62.6
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5t_w53g3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5t_w53g3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5t_w53g3/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplkqyd8mz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplkqyd8mz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror 

Code:
 
  void
  __attribute__ ((visibility ("hidden")))
       f_hidden (void)
  {
  }
  void
  __attribute__ ((visibility ("internal")))
       f_internal (void)
  {
  }
  void
  __attribute__ ((visibility ("default")))
       f_default (void)
  {
  }
  int main (void)
  {
    f_hidden();
    f_internal();
    f_default();
    return 0;
  }
  
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "GNU C visibility attributes test" compiles: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbilfan_r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbilfan_r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbilfan_r/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps0m2c8xv/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("alloca.h")
          #error "Header 'alloca.h' could not be found"
         #endif
        #else
         #include <alloca.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "alloca.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmn12m6q/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("crt_externs.h")
          #error "Header 'crt_externs.h' could not be found"
         #endif
        #else
         #include <crt_externs.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmn12m6q/testfile.c:4:12: error: #error "Header 'crt_externs.h' could not be found"
           #error "Header 'crt_externs.h' could not be found"
            ^~~~~

Has header "crt_externs.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6aej8rhj/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dirent.h")
          #error "Header 'dirent.h' could not be found"
         #endif
        #else
         #include <dirent.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "dirent.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsqanyxf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("float.h")
          #error "Header 'float.h' could not be found"
         #endif
        #else
         #include <float.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "float.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl7nfvruq/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("fstab.h")
          #error "Header 'fstab.h' could not be found"
         #endif
        #else
         #include <fstab.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "fstab.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp15zf6uz8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("grp.h")
          #error "Header 'grp.h' could not be found"
         #endif
        #else
         #include <grp.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "grp.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "inttypes.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiglpwa50/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("limits.h")
          #error "Header 'limits.h' could not be found"
         #endif
        #else
         #include <limits.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "limits.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbpf4pb8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/magic.h")
          #error "Header 'linux/magic.h' could not be found"
         #endif
        #else
         #include <linux/magic.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "linux/magic.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7a479ho1/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("locale.h")
          #error "Header 'locale.h' could not be found"
         #endif
        #else
         #include <locale.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "locale.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprxwppx6t/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("mach/mach_time.h")
          #error "Header 'mach/mach_time.h' could not be found"
         #endif
        #else
         #include <mach/mach_time.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprxwppx6t/testfile.c:4:12: error: #error "Header 'mach/mach_time.h' could not be found"
           #error "Header 'mach/mach_time.h' could not be found"
            ^~~~~

Has header "mach/mach_time.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "memory.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpezymc21p/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("mntent.h")
          #error "Header 'mntent.h' could not be found"
         #endif
        #else
         #include <mntent.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "mntent.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw3yy4qfo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("poll.h")
          #error "Header 'poll.h' could not be found"
         #endif
        #else
         #include <poll.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "poll.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbixmihq1/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("pwd.h")
          #error "Header 'pwd.h' could not be found"
         #endif
        #else
         #include <pwd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "pwd.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyl7i844g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sched.h")
          #error "Header 'sched.h' could not be found"
         #endif
        #else
         #include <sched.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sched.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpepgy2ize/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("spawn.h")
          #error "Header 'spawn.h' could not be found"
         #endif
        #else
         #include <spawn.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "spawn.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdint.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4304_n0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdlib.h")
          #error "Header 'stdlib.h' could not be found"
         #endif
        #else
         #include <stdlib.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdlib.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "strings.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe3jkc9xb/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/auxv.h")
          #error "Header 'sys/auxv.h' could not be found"
         #endif
        #else
         #include <sys/auxv.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/auxv.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6pugy4hp/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/event.h")
          #error "Header 'sys/event.h' could not be found"
         #endif
        #else
         #include <sys/event.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6pugy4hp/testfile.c:4:12: error: #error "Header 'sys/event.h' could not be found"
           #error "Header 'sys/event.h' could not be found"
            ^~~~~

Has header "sys/event.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd08937db/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/filio.h")
          #error "Header 'sys/filio.h' could not be found"
         #endif
        #else
         #include <sys/filio.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd08937db/testfile.c:4:12: error: #error "Header 'sys/filio.h' could not be found"
           #error "Header 'sys/filio.h' could not be found"
            ^~~~~

Has header "sys/filio.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tq5gmgc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/inotify.h")
          #error "Header 'sys/inotify.h' could not be found"
         #endif
        #else
         #include <sys/inotify.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/inotify.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp30erfyof/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mkdev.h")
          #error "Header 'sys/mkdev.h' could not be found"
         #endif
        #else
         #include <sys/mkdev.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp30erfyof/testfile.c:4:12: error: #error "Header 'sys/mkdev.h' could not be found"
           #error "Header 'sys/mkdev.h' could not be found"
            ^~~~~

Has header "sys/mkdev.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxwcmir6u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mntctl.h")
          #error "Header 'sys/mntctl.h' could not be found"
         #endif
        #else
         #include <sys/mntctl.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxwcmir6u/testfile.c:4:12: error: #error "Header 'sys/mntctl.h' could not be found"
           #error "Header 'sys/mntctl.h' could not be found"
            ^~~~~

Has header "sys/mntctl.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2dh_g_i/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mnttab.h")
          #error "Header 'sys/mnttab.h' could not be found"
         #endif
        #else
         #include <sys/mnttab.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2dh_g_i/testfile.c:4:12: error: #error "Header 'sys/mnttab.h' could not be found"
           #error "Header 'sys/mnttab.h' could not be found"
            ^~~~~

Has header "sys/mnttab.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd23ds33u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/mount.h")
          #error "Header 'sys/mount.h' could not be found"
         #endif
        #else
         #include <sys/mount.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/mount.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprfo9azny/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/param.h")
          #error "Header 'sys/param.h' could not be found"
         #endif
        #else
         #include <sys/param.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/param.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu44gln6u/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/resource.h")
          #error "Header 'sys/resource.h' could not be found"
         #endif
        #else
         #include <sys/resource.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/resource.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa4ndaxhz/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/select.h")
          #error "Header 'sys/select.h' could not be found"
         #endif
        #else
         #include <sys/select.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/select.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wlqz6pg/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/statfs.h")
          #error "Header 'sys/statfs.h' could not be found"
         #endif
        #else
         #include <sys/statfs.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/statfs.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgg5x4yqs/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/statvfs.h")
          #error "Header 'sys/statvfs.h' could not be found"
         #endif
        #else
         #include <sys/statvfs.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/statvfs.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzoqq_rzs/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/sysctl.h")
          #error "Header 'sys/sysctl.h' could not be found"
         #endif
        #else
         #include <sys/sysctl.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/sysctl.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/time.h")
          #error "Header 'sys/time.h' could not be found"
         #endif
        #else
         #include <sys/time.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/time.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphapow99a/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/times.h")
          #error "Header 'sys/times.h' could not be found"
         #endif
        #else
         #include <sys/times.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/times.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l3y0mto/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/uio.h")
          #error "Header 'sys/uio.h' could not be found"
         #endif
        #else
         #include <sys/uio.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/uio.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx84bjk6y/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/vfs.h")
          #error "Header 'sys/vfs.h' could not be found"
         #endif
        #else
         #include <sys/vfs.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/vfs.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxov4cxd/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/vfstab.h")
          #error "Header 'sys/vfstab.h' could not be found"
         #endif
        #else
         #include <sys/vfstab.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxov4cxd/testfile.c:4:12: error: #error "Header 'sys/vfstab.h' could not be found"
           #error "Header 'sys/vfstab.h' could not be found"
            ^~~~~

Has header "sys/vfstab.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3enjgaax/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/vmount.h")
          #error "Header 'sys/vmount.h' could not be found"
         #endif
        #else
         #include <sys/vmount.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3enjgaax/testfile.c:4:12: error: #error "Header 'sys/vmount.h' could not be found"
           #error "Header 'sys/vmount.h' could not be found"
            ^~~~~

Has header "sys/vmount.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq_gts9c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/wait.h")
          #error "Header 'sys/wait.h' could not be found"
         #endif
        #else
         #include <sys/wait.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/wait.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0dad93xu/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("termios.h")
          #error "Header 'termios.h' could not be found"
         #endif
        #else
         #include <termios.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "termios.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpls2tvd5_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("values.h")
          #error "Header 'values.h' could not be found"
         #endif
        #else
         #include <values.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "values.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8l3w19q0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("wchar.h")
          #error "Header 'wchar.h' could not be found"
         #endif
        #else
         #include <wchar.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "wchar.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzfc4f_z8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("xlocale.h")
          #error "Header 'xlocale.h' could not be found"
         #endif
        #else
         #include <xlocale.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "xlocale.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf1plerdn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf1plerdn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <malloc.h>
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "malloc.h" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvz9c0jfg/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/netlink.h")
          #error "Header 'linux/netlink.h' could not be found"
         #endif
        #else
         #include <linux/netlink.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "linux/netlink.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphn_a7xa_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphn_a7xa_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <locale.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef LC_MESSAGES
                LC_MESSAGES;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <locale.h> has symbol "LC_MESSAGES" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_mtimensec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_y_ujz_1/testfile.c:45:16: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'?
             foo.st_mtimensec;
                ^

Checking whether type "struct stat" has member "st_mtimensec" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqcv6qzw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqcv6qzw/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_mtim.tv_nsec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct stat" has member "st_mtim.tv_nsec" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_atimensec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejw8pl8d/testfile.c:46:16: error: 'struct stat' has no member named 'st_atimensec'; did you mean 'st_atim'?
             foo.st_atimensec;
                ^

Checking whether type "struct stat" has member "st_atimensec" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tlusljj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tlusljj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_atim.tv_nsec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct stat" has member "st_atim.tv_nsec" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_ctimensec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvn2v_y8s/testfile.c:47:16: error: 'struct stat' has no member named 'st_ctimensec'; did you mean 'st_ctim'?
             foo.st_ctimensec;
                ^

Checking whether type "struct stat" has member "st_ctimensec" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqouqsg3b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqouqsg3b/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_ctim.tv_nsec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct stat" has member "st_ctim.tv_nsec" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtime;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxb7zyi0/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtime'; did you mean 'st_blksize'?
             foo.st_birthtime;
                ^

Checking whether type "struct stat" has member "st_birthtime" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtimensec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1mlyst5q/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtimensec'
             foo.st_birthtimensec;
                ^

Checking whether type "struct stat" has member "st_birthtimensec" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtim;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz0k31dyz/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtim'; did you mean 'st_atim'?
             foo.st_birthtim;
                ^

Checking whether type "struct stat" has member "st_birthtim" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#include <sys/stat.h>
        void bar(void) {
            struct stat foo;
            foo.st_birthtim.tv_nsec;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmjkiczfz/testfile.c:48:16: error: 'struct stat' has no member named 'st_birthtim'; did you mean 'st_atim'?
             foo.st_birthtim.tv_nsec;
                ^

Checking whether type "struct stat" has member "st_birthtim.tv_nsec" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hp82ydg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hp82ydg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct stat foo;
            foo.st_blksize;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct stat" has member "st_blksize" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbx2p8z31/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbx2p8z31/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct stat foo;
            foo.st_blocks;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct stat" has member "st_blocks" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct statfs foo;
            foo.f_fstypename;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuc1lzed/testfile.c:65:16: error: 'struct statfs' has no member named 'f_fstypename'; did you mean 'f_type'?
             foo.f_fstypename;
                ^

Checking whether type "struct statfs" has member "f_fstypename" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn7g30fqs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn7g30fqs/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif

        void bar(void) {
            struct statfs foo;
            foo.f_bavail;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct statfs" has member "f_bavail" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmesvbwir/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmesvbwir/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#include <sys/types.h>
                           #include <dirent.h>
        void bar(void) {
            struct dirent foo;
            foo.d_type;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct dirent" has member "d_type" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#include <sys/statvfs.h>
        void bar(void) {
            struct statvfs foo;
            foo.f_basetype;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpg8rf3i/testfile.c:52:16: error: 'struct statvfs' has no member named 'f_basetype'; did you mean 'f_bsize'?
             foo.f_basetype;
                ^

Checking whether type "struct statvfs" has member "f_basetype" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#include <sys/statvfs.h>
        void bar(void) {
            struct statvfs foo;
            foo.f_fstypename;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx3otgqrs/testfile.c:52:16: error: 'struct statvfs' has no member named 'f_fstypename'
             foo.f_fstypename;
                ^

Checking whether type "struct statvfs" has member "f_fstypename" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuzeb_mm9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuzeb_mm9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#include <time.h>
        void bar(void) {
            struct tm foo;
            foo.tm_gmtoff;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking whether type "struct tm" has member "tm_gmtoff" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#define HAVE_STRUCT_TM_TM_GMTOFF 1
#include <time.h>
        void bar(void) {
            struct tm foo;
            foo.__tm_gmtoff;

        };
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ybudu3d/testfile.c:53:16: error: 'struct tm' has no member named '__tm_gmtoff'; did you mean 'tm_gmtoff'?
             foo.__tm_gmtoff;
                ^

Checking whether type "struct tm" has member "__tm_gmtoff" : NO (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbd2wmfm5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbd2wmfm5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbd2wmfm5/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wall 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wall: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd1gn22g9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd1gn22g9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd1gn22g9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wduplicated-branches 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wduplicated-branches'; did you mean '-Wduplicated-cond'?

Compiler for C supports arguments -Wduplicated-branches: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiendfhld
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiendfhld/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiendfhld/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wimplicit-fallthrough'; did you mean '-Wno-fallthrough'?

Compiler for C supports arguments -Wimplicit-fallthrough: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyzwfx23s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyzwfx23s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyzwfx23s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmisleading-indentation 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmisleading-indentation: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0tg9vozq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0tg9vozq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0tg9vozq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptbrsbxxd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptbrsbxxd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptbrsbxxd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wunused: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps3mm93yg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps3mm93yg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps3mm93yg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unused-parameter -Wunused-parameter 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwg_knvre
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwg_knvre/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwg_knvre/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-bad-function-cast -Wbad-function-cast 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-bad-function-cast -Wbad-function-cast: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpquuyzgmp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpquuyzgmp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpquuyzgmp/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-cast-function-type -Wcast-function-type 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wcast-function-type'; did you mean '-Wbad-function-cast'?

Compiler for C supports arguments -Wno-cast-function-type -Wcast-function-type: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyo4ubmgw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyo4ubmgw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyo4ubmgw/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-pedantic -Wpedantic 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-pedantic -Wpedantic: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp17zwe828
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp17zwe828/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp17zwe828/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=declaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=declaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqm03dz8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqm03dz8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqm03dz8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=format=2 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=format=2: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp65dnoacb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp65dnoacb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp65dnoacb/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=implicit-function-declaration 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=implicit-function-declaration: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9w2ygvqi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9w2ygvqi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9w2ygvqi/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=init-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=init-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpelkj7jx6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpelkj7jx6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpelkj7jx6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: error: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Werror=missing-include-dirs]
cc1: some warnings being treated as errors

Compiler for C supports arguments -Werror=missing-include-dirs: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjr8x6lzw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjr8x6lzw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjr8x6lzw/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=missing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9uhuh21
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9uhuh21/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9uhuh21/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=pointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=pointer-arith: YES 
subprojects/glib/meson.build:397: WARNING: Consider using the built-in warning_level option instead of using "-Wall".
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wu6srx0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wu6srx0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wu6srx0/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-z,nodelete 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-z,nodelete: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr1r11xc3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr1r11xc3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr1r11xc3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdw4zzl8o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdw4zzl8o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define endmntent meson_disable_define_of_endmntent
        
        #include <limits.h>
        #undef endmntent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char endmntent (void);
        
        #if defined __stub_endmntent || defined __stub___endmntent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return endmntent ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "endmntent" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6g6_hw2u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6g6_hw2u/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define endservent meson_disable_define_of_endservent
        
        #include <limits.h>
        #undef endservent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char endservent (void);
        
        #if defined __stub_endservent || defined __stub___endservent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return endservent ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "endservent" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9sfnkch7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9sfnkch7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fallocate meson_disable_define_of_fallocate
        
        #include <limits.h>
        #undef fallocate
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fallocate (void);
        
        #if defined __stub_fallocate || defined __stub___fallocate
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fallocate ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "fallocate" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbhlk__0j/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbhlk__0j/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fchmod meson_disable_define_of_fchmod
        
        #include <limits.h>
        #undef fchmod
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fchmod (void);
        
        #if defined __stub_fchmod || defined __stub___fchmod
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fchmod ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "fchmod" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxi91kt3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoxi91kt3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fchown meson_disable_define_of_fchown
        
        #include <limits.h>
        #undef fchown
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fchown (void);
        
        #if defined __stub_fchown || defined __stub___fchown
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fchown ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "fchown" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyiee2a3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyiee2a3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fdwalk meson_disable_define_of_fdwalk
        
        #include <limits.h>
        #undef fdwalk
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fdwalk (void);
        
        #if defined __stub_fdwalk || defined __stub___fdwalk
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fdwalk ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/cchTZ2Mg.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `fdwalk'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_fdwalk)
                #error "__builtin_fdwalk not found"
            #endif
        #elif ! defined(fdwalk)
            /* Check for __builtin_fdwalk only if no includes were added to the
             * prefix above, which means no definition of fdwalk can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_fdwalk;
            #else
                #error "No definition for __builtin_fdwalk found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c:14:17: error: '__builtin_fdwalk' undeclared (first use in this function)
                 __builtin_fdwalk;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8d9mreky/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "fdwalk" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1zduwyp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1zduwyp/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fsync meson_disable_define_of_fsync
        
        #include <limits.h>
        #undef fsync
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fsync (void);
        
        #if defined __stub_fsync || defined __stub___fsync
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fsync ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "fsync" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b64vqbk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b64vqbk/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getauxval meson_disable_define_of_getauxval
        
        #include <limits.h>
        #undef getauxval
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getauxval (void);
        
        #if defined __stub_getauxval || defined __stub___getauxval
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getauxval ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getauxval" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr50ty4ea/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr50ty4ea/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getc_unlocked meson_disable_define_of_getc_unlocked
        
        #include <limits.h>
        #undef getc_unlocked
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getc_unlocked (void);
        
        #if defined __stub_getc_unlocked || defined __stub___getc_unlocked
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getc_unlocked ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getc_unlocked" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxntgll3u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxntgll3u/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getfsstat meson_disable_define_of_getfsstat
        
        #include <limits.h>
        #undef getfsstat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getfsstat (void);
        
        #if defined __stub_getfsstat || defined __stub___getfsstat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getfsstat ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/ccJdojaw.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `getfsstat'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_getfsstat)
                #error "__builtin_getfsstat not found"
            #endif
        #elif ! defined(getfsstat)
            /* Check for __builtin_getfsstat only if no includes were added to the
             * prefix above, which means no definition of getfsstat can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_getfsstat;
            #else
                #error "No definition for __builtin_getfsstat found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c:14:17: error: '__builtin_getfsstat' undeclared (first use in this function)
                 __builtin_getfsstat;
                 ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpat0zrvwa/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "getfsstat" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm1ukt1mv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm1ukt1mv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getgrgid_r meson_disable_define_of_getgrgid_r
        
        #include <limits.h>
        #undef getgrgid_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getgrgid_r (void);
        
        #if defined __stub_getgrgid_r || defined __stub___getgrgid_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getgrgid_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getgrgid_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__n085lr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__n085lr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getmntent_r meson_disable_define_of_getmntent_r
        
        #include <limits.h>
        #undef getmntent_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getmntent_r (void);
        
        #if defined __stub_getmntent_r || defined __stub___getmntent_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getmntent_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getmntent_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbcx7fjb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbcx7fjb/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getpwuid_r meson_disable_define_of_getpwuid_r
        
        #include <limits.h>
        #undef getpwuid_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpwuid_r (void);
        
        #if defined __stub_getpwuid_r || defined __stub___getpwuid_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpwuid_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getpwuid_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmply1g20b2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmply1g20b2/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getresuid meson_disable_define_of_getresuid
        
        #include <limits.h>
        #undef getresuid
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getresuid (void);
        
        #if defined __stub_getresuid || defined __stub___getresuid
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getresuid ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getresuid" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjk6ri85l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjk6ri85l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getvfsstat meson_disable_define_of_getvfsstat
        
        #include <limits.h>
        #undef getvfsstat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getvfsstat (void);
        
        #if defined __stub_getvfsstat || defined __stub___getvfsstat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getvfsstat ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/ccBgQikK.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `getvfsstat'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_getvfsstat)
                #error "__builtin_getvfsstat not found"
            #endif
        #elif ! defined(getvfsstat)
            /* Check for __builtin_getvfsstat only if no includes were added to the
             * prefix above, which means no definition of getvfsstat can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_getvfsstat;
            #else
                #error "No definition for __builtin_getvfsstat found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c:14:17: error: '__builtin_getvfsstat' undeclared (first use in this function)
                 __builtin_getvfsstat;
                 ^~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfsukccjy/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "getvfsstat" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define gmtime_r meson_disable_define_of_gmtime_r
        
        #include <limits.h>
        #undef gmtime_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gmtime_r (void);
        
        #if defined __stub_gmtime_r || defined __stub___gmtime_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gmtime_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "gmtime_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8f7wfm7p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8f7wfm7p/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define hasmntopt meson_disable_define_of_hasmntopt
        
        #include <limits.h>
        #undef hasmntopt
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char hasmntopt (void);
        
        #if defined __stub_hasmntopt || defined __stub___hasmntopt
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return hasmntopt ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "hasmntopt" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp22wwrfib/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp22wwrfib/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define inotify_init1 meson_disable_define_of_inotify_init1
        
        #include <limits.h>
        #undef inotify_init1
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char inotify_init1 (void);
        
        #if defined __stub_inotify_init1 || defined __stub___inotify_init1
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return inotify_init1 ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "inotify_init1" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpld204vb0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpld204vb0/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define issetugid meson_disable_define_of_issetugid
        
        #include <limits.h>
        #undef issetugid
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char issetugid (void);
        
        #if defined __stub_issetugid || defined __stub___issetugid
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return issetugid ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/ccOwizbL.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `issetugid'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_issetugid)
                #error "__builtin_issetugid not found"
            #endif
        #elif ! defined(issetugid)
            /* Check for __builtin_issetugid only if no includes were added to the
             * prefix above, which means no definition of issetugid can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_issetugid;
            #else
                #error "No definition for __builtin_issetugid found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c:14:17: error: '__builtin_issetugid' undeclared (first use in this function)
                 __builtin_issetugid;
                 ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplsfz91pk/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "issetugid" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfduhuyn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfduhuyn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define kevent meson_disable_define_of_kevent
        
        #include <limits.h>
        #undef kevent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char kevent (void);
        
        #if defined __stub_kevent || defined __stub___kevent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return kevent ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/ccrwmolS.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `kevent'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_kevent)
                #error "__builtin_kevent not found"
            #endif
        #elif ! defined(kevent)
            /* Check for __builtin_kevent only if no includes were added to the
             * prefix above, which means no definition of kevent can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_kevent;
            #else
                #error "No definition for __builtin_kevent found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c:14:17: error: '__builtin_kevent' undeclared (first use in this function)
                 __builtin_kevent;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp71hf0jwn/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "kevent" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpalikmbru/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpalikmbru/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define kqueue meson_disable_define_of_kqueue
        
        #include <limits.h>
        #undef kqueue
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char kqueue (void);
        
        #if defined __stub_kqueue || defined __stub___kqueue
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return kqueue ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/ccv90yDW.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `kqueue'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_kqueue)
                #error "__builtin_kqueue not found"
            #endif
        #elif ! defined(kqueue)
            /* Check for __builtin_kqueue only if no includes were added to the
             * prefix above, which means no definition of kqueue can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_kqueue;
            #else
                #error "No definition for __builtin_kqueue found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c:14:17: error: '__builtin_kqueue' undeclared (first use in this function)
                 __builtin_kqueue;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppfz2_2jk/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "kqueue" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define lchmod meson_disable_define_of_lchmod
        
        #include <limits.h>
        #undef lchmod
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char lchmod (void);
        
        #if defined __stub_lchmod || defined __stub___lchmod
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return lchmod ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c:13:9: error: unknown type name 'fail'
         fail fail fail this function is not going to work
         ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c:13:19: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fail'
         fail fail fail this function is not going to work
                   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6ph95yr6/testfile.c:13:19: error: unknown type name 'fail'

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_lchmod)
                #error "__builtin_lchmod not found"
            #endif
        #elif ! defined(lchmod)
            /* Check for __builtin_lchmod only if no includes were added to the
             * prefix above, which means no definition of lchmod can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_lchmod;
            #else
                #error "No definition for __builtin_lchmod found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c:14:17: error: '__builtin_lchmod' undeclared (first use in this function)
                 __builtin_lchmod;
                 ^~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u8z7aqi/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "lchmod" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprexqa_cy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprexqa_cy/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define lchown meson_disable_define_of_lchown
        
        #include <limits.h>
        #undef lchown
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char lchown (void);
        
        #if defined __stub_lchown || defined __stub___lchown
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return lchown ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "lchown" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp043v_vtv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp043v_vtv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define link meson_disable_define_of_link
        
        #include <limits.h>
        #undef link
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char link (void);
        
        #if defined __stub_link || defined __stub___link
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return link ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "link" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx27w0xai/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx27w0xai/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define localtime_r meson_disable_define_of_localtime_r
        
        #include <limits.h>
        #undef localtime_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char localtime_r (void);
        
        #if defined __stub_localtime_r || defined __stub___localtime_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return localtime_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "localtime_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphif51b7b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphif51b7b/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define lstat meson_disable_define_of_lstat
        
        #include <limits.h>
        #undef lstat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char lstat (void);
        
        #if defined __stub_lstat || defined __stub___lstat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return lstat ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "lstat" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgohtnzv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgohtnzv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mbrtowc meson_disable_define_of_mbrtowc
        
        #include <limits.h>
        #undef mbrtowc
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mbrtowc (void);
        
        #if defined __stub_mbrtowc || defined __stub___mbrtowc
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mbrtowc ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "mbrtowc" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define memalign meson_disable_define_of_memalign
        
        #include <limits.h>
        #undef memalign
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char memalign (void);
        
        #if defined __stub_memalign || defined __stub___memalign
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return memalign ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "memalign" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mmap meson_disable_define_of_mmap
        
        #include <limits.h>
        #undef mmap
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mmap (void);
        
        #if defined __stub_mmap || defined __stub___mmap
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mmap ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "mmap" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsrvv5ya/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbsrvv5ya/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define newlocale meson_disable_define_of_newlocale
        
        #include <limits.h>
        #undef newlocale
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char newlocale (void);
        
        #if defined __stub_newlocale || defined __stub___newlocale
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return newlocale ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "newlocale" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define pipe2 meson_disable_define_of_pipe2
        
        #include <limits.h>
        #undef pipe2
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pipe2 (void);
        
        #if defined __stub_pipe2 || defined __stub___pipe2
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pipe2 ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "pipe2" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_7f5oq87/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define poll meson_disable_define_of_poll
        
        #include <limits.h>
        #undef poll
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char poll (void);
        
        #if defined __stub_poll || defined __stub___poll
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return poll ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "poll" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps9z5cmc4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps9z5cmc4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define prlimit meson_disable_define_of_prlimit
        
        #include <limits.h>
        #undef prlimit
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char prlimit (void);
        
        #if defined __stub_prlimit || defined __stub___prlimit
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return prlimit ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "prlimit" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2iy2wqa3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2iy2wqa3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define readlink meson_disable_define_of_readlink
        
        #include <limits.h>
        #undef readlink
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char readlink (void);
        
        #if defined __stub_readlink || defined __stub___readlink
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return readlink ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "readlink" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj8u__2qs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj8u__2qs/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define recvmmsg meson_disable_define_of_recvmmsg
        
        #include <limits.h>
        #undef recvmmsg
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char recvmmsg (void);
        
        #if defined __stub_recvmmsg || defined __stub___recvmmsg
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return recvmmsg ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "recvmmsg" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphna4feno/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphna4feno/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define sendmmsg meson_disable_define_of_sendmmsg
        
        #include <limits.h>
        #undef sendmmsg
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sendmmsg (void);
        
        #if defined __stub_sendmmsg || defined __stub___sendmmsg
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sendmmsg ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "sendmmsg" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvrq94p7y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvrq94p7y/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define setenv meson_disable_define_of_setenv
        
        #include <limits.h>
        #undef setenv
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setenv (void);
        
        #if defined __stub_setenv || defined __stub___setenv
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setenv ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "setenv" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tr0400d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5tr0400d/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define setmntent meson_disable_define_of_setmntent
        
        #include <limits.h>
        #undef setmntent
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setmntent (void);
        
        #if defined __stub_setmntent || defined __stub___setmntent
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setmntent ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "setmntent" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvffwsed9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvffwsed9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strerror_r meson_disable_define_of_strerror_r
        
        #include <limits.h>
        #undef strerror_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strerror_r (void);
        
        #if defined __stub_strerror_r || defined __stub___strerror_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strerror_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strerror_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp58apvl2h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strnlen meson_disable_define_of_strnlen
        
        #include <limits.h>
        #undef strnlen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strnlen (void);
        
        #if defined __stub_strnlen || defined __stub___strnlen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strnlen ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strnlen" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bqyuazi/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strsignal meson_disable_define_of_strsignal
        
        #include <limits.h>
        #undef strsignal
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strsignal (void);
        
        #if defined __stub_strsignal || defined __stub___strsignal
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strsignal ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strsignal" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprzrgvic_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprzrgvic_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtod_l meson_disable_define_of_strtod_l
        
        #include <limits.h>
        #undef strtod_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtod_l (void);
        
        #if defined __stub_strtod_l || defined __stub___strtod_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtod_l ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strtod_l" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_vvw0i8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_vvw0i8/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtoll_l meson_disable_define_of_strtoll_l
        
        #include <limits.h>
        #undef strtoll_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtoll_l (void);
        
        #if defined __stub_strtoll_l || defined __stub___strtoll_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtoll_l ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strtoll_l" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcvb2_6o7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcvb2_6o7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtoull_l meson_disable_define_of_strtoull_l
        
        #include <limits.h>
        #undef strtoull_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtoull_l (void);
        
        #if defined __stub_strtoull_l || defined __stub___strtoull_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtoull_l ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "strtoull_l" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bv8rzj4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bv8rzj4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define symlink meson_disable_define_of_symlink
        
        #include <limits.h>
        #undef symlink
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char symlink (void);
        
        #if defined __stub_symlink || defined __stub___symlink
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return symlink ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "symlink" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ur15wkx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ur15wkx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define timegm meson_disable_define_of_timegm
        
        #include <limits.h>
        #undef timegm
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char timegm (void);
        
        #if defined __stub_timegm || defined __stub___timegm
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return timegm ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "timegm" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoqr5gj9s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoqr5gj9s/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define unsetenv meson_disable_define_of_unsetenv
        
        #include <limits.h>
        #undef unsetenv
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char unsetenv (void);
        
        #if defined __stub_unsetenv || defined __stub___unsetenv
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return unsetenv ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "unsetenv" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprlhzalcd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprlhzalcd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define uselocale meson_disable_define_of_uselocale
        
        #include <limits.h>
        #undef uselocale
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char uselocale (void);
        
        #if defined __stub_uselocale || defined __stub___uselocale
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return uselocale ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "uselocale" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6rw9vr73/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6rw9vr73/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define utimes meson_disable_define_of_utimes
        
        #include <limits.h>
        #undef utimes
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char utimes (void);
        
        #if defined __stub_utimes || defined __stub___utimes
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return utimes ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "utimes" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4fjkbb1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn4fjkbb1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define valloc meson_disable_define_of_valloc
        
        #include <limits.h>
        #undef valloc
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char valloc (void);
        
        #if defined __stub_valloc || defined __stub___valloc
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return valloc ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "valloc" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvpbz8lq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvpbz8lq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define vasprintf meson_disable_define_of_vasprintf
        
        #include <limits.h>
        #undef vasprintf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char vasprintf (void);
        
        #if defined __stub_vasprintf || defined __stub___vasprintf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return vasprintf ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "vasprintf" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define vsnprintf meson_disable_define_of_vsnprintf
        
        #include <limits.h>
        #undef vsnprintf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char vsnprintf (void);
        
        #if defined __stub_vsnprintf || defined __stub___vsnprintf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return vsnprintf ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt3a92ax/testfile.c:10:14: warning: conflicting types for built-in function 'vsnprintf'
         char vsnprintf (void);
              ^~~~~~~~~

Checking for function "vsnprintf" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxn_gazw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxn_gazw/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define wcrtomb meson_disable_define_of_wcrtomb
        
        #include <limits.h>
        #undef wcrtomb
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcrtomb (void);
        
        #if defined __stub_wcrtomb || defined __stub___wcrtomb
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcrtomb ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "wcrtomb" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8bnj0jv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8bnj0jv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define wcslen meson_disable_define_of_wcslen
        
        #include <limits.h>
        #undef wcslen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcslen (void);
        
        #if defined __stub_wcslen || defined __stub___wcslen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcslen ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "wcslen" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsqhrk55o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsqhrk55o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define wcsnlen meson_disable_define_of_wcsnlen
        
        #include <limits.h>
        #undef wcsnlen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcsnlen (void);
        
        #if defined __stub_wcsnlen || defined __stub___wcsnlen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcsnlen ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "wcsnlen" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuec3fhzg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuec3fhzg/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define sysctlbyname meson_disable_define_of_sysctlbyname
        
        #include <limits.h>
        #undef sysctlbyname
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sysctlbyname (void);
        
        #if defined __stub_sysctlbyname || defined __stub___sysctlbyname
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sysctlbyname ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/cc4PI0Dm.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `sysctlbyname'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_sysctlbyname)
                #error "__builtin_sysctlbyname not found"
            #endif
        #elif ! defined(sysctlbyname)
            /* Check for __builtin_sysctlbyname only if no includes were added to the
             * prefix above, which means no definition of sysctlbyname can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_sysctlbyname;
            #else
                #error "No definition for __builtin_sysctlbyname found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c:14:17: error: '__builtin_sysctlbyname' undeclared (first use in this function)
                 __builtin_sysctlbyname;
                 ^~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wy9g1bo/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "sysctlbyname" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1q7j4gdn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1q7j4gdn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define _NSGetEnviron meson_disable_define_of__NSGetEnviron
        
        #include <limits.h>
        #undef _NSGetEnviron
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char _NSGetEnviron (void);
        
        #if defined __stub__NSGetEnviron || defined __stub____NSGetEnviron
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return _NSGetEnviron ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/cc8yZW6q.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `_NSGetEnviron'
collect2: error: ld returned 1 exit status

Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin__NSGetEnviron)
                #error "__builtin__NSGetEnviron not found"
            #endif
        #elif ! defined(_NSGetEnviron)
            /* Check for __builtin__NSGetEnviron only if no includes were added to the
             * prefix above, which means no definition of _NSGetEnviron can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin__NSGetEnviron;
            #else
                #error "No definition for __builtin__NSGetEnviron found in the prefix"
            #endif
        #endif
        return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c:14:17: error: '__builtin__NSGetEnviron' undeclared (first use in this function)
                 __builtin__NSGetEnviron;
                 ^~~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4jxzepqf/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "_NSGetEnviron" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1n_8mw1l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1n_8mw1l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define statvfs meson_disable_define_of_statvfs
        
        #include <limits.h>
        #undef statvfs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char statvfs (void);
        
        #if defined __stub_statvfs || defined __stub___statvfs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return statvfs ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "statvfs" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxj102i0m/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxj102i0m/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define statfs meson_disable_define_of_statfs
        
        #include <limits.h>
        #undef statfs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char statfs (void);
        
        #if defined __stub_statfs || defined __stub___statfs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return statfs ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "statfs" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9quowkvd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9quowkvd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define if_indextoname meson_disable_define_of_if_indextoname
        
        #include <limits.h>
        #undef if_indextoname
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char if_indextoname (void);
        
        #if defined __stub_if_indextoname || defined __stub___if_indextoname
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return if_indextoname ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "if_indextoname" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi897japr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi897japr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define if_nametoindex meson_disable_define_of_if_nametoindex
        
        #include <limits.h>
        #undef if_nametoindex
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char if_nametoindex (void);
        
        #if defined __stub_if_nametoindex || defined __stub___if_nametoindex
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return if_nametoindex ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "if_nametoindex" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq57yovct/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq57yovct/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define splice meson_disable_define_of_splice
        
        #include <limits.h>
        #undef splice
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char splice (void);
        
        #if defined __stub_splice || defined __stub___splice
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return splice ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "splice" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyihf9t5k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyihf9t5k/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <string.h>
#include <limits.h>

        #if defined __stub_stpcpy || defined __stub___stpcpy
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &stpcpy;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "stpcpy" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparj7k3sn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdlib.h>
#include <limits.h>

        #if defined __stub_posix_memalign || defined __stub___posix_memalign
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &posix_memalign;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "posix_memalign" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp7y61g0c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp7y61g0c/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <spawn.h>
#include <limits.h>

        #if defined __stub_posix_spawn || defined __stub___posix_spawn
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &posix_spawn;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "posix_spawn" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq1z6ooj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsq1z6ooj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define _GNU_SOURCE
                    #include <string.h>
                    int func (void) {
                      char error_string[256];
                      char *ptr = strerror_r (-2, error_string, 256);
                      char c = *strerror_r (-2, error_string, 256);
                      return c != 0 && ptr != (void*) 0L;
                    }
                 
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "strerror_r() returns char *" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define snprintf meson_disable_define_of_snprintf
        
        #include <limits.h>
        #undef snprintf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char snprintf (void);
        
        #if defined __stub_snprintf || defined __stub___snprintf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return snprintf ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjp9202_h/testfile.c:10:14: warning: conflicting types for built-in function 'snprintf'
         char snprintf (void);
              ^~~~~~~~

Checking for function "snprintf" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strcasecmp meson_disable_define_of_strcasecmp
        
        #include <limits.h>
        #undef strcasecmp
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strcasecmp (void);
        
        #if defined __stub_strcasecmp || defined __stub___strcasecmp
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strcasecmp ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdvgwg15h/testfile.c:10:14: warning: conflicting types for built-in function 'strcasecmp'
         char strcasecmp (void);
              ^~~~~~~~~~

Checking for function "strcasecmp" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strncasecmp meson_disable_define_of_strncasecmp
        
        #include <limits.h>
        #undef strncasecmp
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strncasecmp (void);
        
        #if defined __stub_strncasecmp || defined __stub___strncasecmp
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strncasecmp ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2w9ptbhu/testfile.c:10:14: warning: conflicting types for built-in function 'strncasecmp'
         char strncasecmp (void);
              ^~~~~~~~~~~

Checking for function "strncasecmp" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/sysmacros.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef major
                major;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <sys/sysmacros.h> has symbol "major" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz80bi7f6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz80bi7f6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_LAZY
                RTLD_LAZY;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_LAZY" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeqk1bp_b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeqk1bp_b/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_NOW
                RTLD_NOW;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_NOW" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7y268oq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7y268oq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_GLOBAL
                RTLD_GLOBAL;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_GLOBAL" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3ms624dc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3ms624dc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -D_GNU_SOURCE 

Code:
 
        #include <dlfcn.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef RTLD_NEXT
                RTLD_NEXT;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <dlfcn.h> has symbol "RTLD_NEXT" : YES (cached)
Message: Checking whether to use statfs or statvfs .. statfs
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpol4p4g8o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpol4p4g8o/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define _GNU_SOURCE
                                #include <stdlib.h>
#include <limits.h>

        #if defined __stub_mkostemp || defined __stub___mkostemp
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &mkostemp;
            long b = (long) a;
            return (int) b;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "mkostemp" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3g2ct986/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <linux/futex.h>
               #include <sys/syscall.h>
               #include <unistd.h>
               int main (int argc, char ** argv) {
                 syscall (__NR_futex, NULL, FUTEX_WAKE, FUTEX_WAIT);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "futex(2) system call" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphfivx312/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphfivx312/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/eventfd.h>
               #include <unistd.h>
               int main (int argc, char ** argv) {
                 eventfd (0, EFD_CLOEXEC);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "eventfd(2) system call" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsdl8n85g/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsdl8n85g/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  #include <time.h>
  struct timespec t;
  int main (int argc, char ** argv) {
    return clock_gettime(CLOCK_REALTIME, &t);
  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "clock_gettime" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_24dwxz5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_24dwxz5/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <dlfcn.h>
int glib_underscore_test (void) { return 42; }
int main (int argc, char ** argv) {
  void *f1 = (void*)0, *f2 = (void*)0, *handle;
  handle = dlopen ((void*)0, 0);
  if (handle) {
    f1 = dlsym (handle, "glib_underscore_test");
    f2 = dlsym (handle, "_glib_underscore_test");
  }
  return (!f2 || f1);
}
Cached compiler stdout:
 
Cached compiler stderr:
 /tmp/ccuc4Ch7.o: In function `main':
testfile.c:(.text+0x35): undefined reference to `dlopen'
testfile.c:(.text+0x53): undefined reference to `dlsym'
testfile.c:(.text+0x6a): undefined reference to `dlsym'
collect2: error: ld returned 1 exit status

Checking if "dlopen() and dlsym() in system libraries" links: NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqf_a_49w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqf_a_49w/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -ldl -Wl,--end-group 

Code:
 
#include <dlfcn.h>
int glib_underscore_test (void) { return 42; }
int main (int argc, char ** argv) {
  void *f1 = (void*)0, *f2 = (void*)0, *handle;
  handle = dlopen ((void*)0, 0);
  if (handle) {
    f1 = dlsym (handle, "glib_underscore_test");
    f2 = dlsym (handle, "_glib_underscore_test");
  }
  return (!f2 || f1);
}
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "dlopen() and dlsym() in libdl" links: YES (cached)
Library dl found: YES
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsbyz9zgo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsbyz9zgo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define HAVE_ALLOCA_H 1
#define HAVE_DIRENT_H 1
#define HAVE_FLOAT_H 1
#define HAVE_FSTAB_H 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LINUX_MAGIC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_POLL_H 1
#define HAVE_PWD_H 1
#define HAVE_SCHED_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_AUXV_H 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VALUES_H 1
#define HAVE_WCHAR_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STATFS_F_BAVAIL 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#define HAVE_STRUCT_TM_TM_GMTOFF 1
#define HAVE_ENDMNTENT 1
#define HAVE_ENDSERVENT 1
#define HAVE_FALLOCATE 1
#define HAVE_FCHMOD 1
#define HAVE_FCHOWN 1
#define HAVE_FSYNC 1
#define HAVE_GETAUXVAL 1
#define HAVE_GETC_UNLOCKED 1
#define HAVE_GETGRGID_R 1
#define HAVE_GETMNTENT_R 1
#define HAVE_GETPWUID_R 1
#define HAVE_GETRESUID 1
#define HAVE_GMTIME_R 1
#define HAVE_HASMNTOPT 1
#define HAVE_INOTIFY_INIT1 1
#define HAVE_LCHOWN 1
#define HAVE_LINK 1
#define HAVE_LOCALTIME_R 1
#define HAVE_LSTAT 1
#define HAVE_MBRTOWC 1
#define HAVE_MEMALIGN 1
#define HAVE_MMAP 1
#define HAVE_NEWLOCALE 1
#define HAVE_PIPE2 1
#define HAVE_POLL 1
#define HAVE_PRLIMIT 1
#define HAVE_READLINK 1
#define HAVE_RECVMMSG 1
#define HAVE_SENDMMSG 1
#define HAVE_SETENV 1
#define HAVE_SETMNTENT 1
#define HAVE_STRERROR_R 1
#define HAVE_STRNLEN 1
#define HAVE_STRSIGNAL 1
#define HAVE_STRTOD_L 1
#define HAVE_STRTOLL_L 1
#define HAVE_STRTOULL_L 1
#define HAVE_SYMLINK 1
#define HAVE_TIMEGM 1
#define HAVE_UNSETENV 1
#define HAVE_USELOCALE 1
#define HAVE_UTIMES 1
#define HAVE_VALLOC 1
#define HAVE_VASPRINTF 1
#define HAVE_VSNPRINTF 1
#define HAVE_WCRTOMB 1
#define HAVE_WCSLEN 1
#define HAVE_WCSNLEN 1
#define HAVE_STATVFS 1
#define HAVE_STATFS 1
#define HAVE_IF_INDEXTONAME 1
#define HAVE_IF_NAMETOINDEX 1
#define HAVE_SPLICE 1
#define HAVE_SNPRINTF 1
#define HAVE_STRCASECMP 1
#define HAVE_STRNCASECMP 1

                 #include <unistd.h>
                        #ifdef HAVE_SYS_PARAM_H
                        #include <sys/param.h>
                        #endif
                        #ifdef HAVE_SYS_VFS_H
                        #include <sys/vfs.h>
                        #endif
                        #ifdef HAVE_SYS_MOUNT_H
                        #include <sys/mount.h>
                        #endif
                        #ifdef HAVE_SYS_STATFS_H
                        #include <sys/statfs.h>
                        #endif
                        void some_func (void) {
                          struct statfs st;
                          statfs("/", &st);
                        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "number of arguments to statfs() (n=2)" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <fcntl.h>
                  #include <sys/types.h>
                  #include <sys/stat.h>],
                  void some_func (void) {
                    open(0, O_DIRECTORY, 0);
                  }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplxt1vpj6/testfile.c:3:40: warning: extra tokens at end of #include directive
                   #include <sys/stat.h>],
                                        ^

Checking if "open() option O_DIRECTORY" compiles: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdio.h>
#include <stdarg.h>

int
doit(char * s, ...)
{
  char buffer[32];
  va_list args;
  int r;

  va_start(args, s);
  r = vsnprintf(buffer, 5, s, args);
  va_end(args);

  if (r != 7)
    exit(1);

  /* AIX 5.1 and Solaris seems to have a half-baked vsnprintf()
     implementation. The above will return 7 but if you replace
     the size of the buffer with 0, it borks! */
  va_start(args, s);
  r = vsnprintf(buffer, 0, s, args);
  va_end(args);

  if (r != 7)
    exit(1);

  exit(0);
}

int
main(void)
{
  doit("1234567");
  exit(1);
}
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:17:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:17:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:17:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:27:5: warning: incompatible implicit declaration of built-in function 'exit'
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:27:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:29:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(0);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:29:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:36:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(1);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6zusr3hd/testfile.c:36:3: note: include '<stdlib.h>' or provide a declaration of 'exit'

Program stdout:


Program stderr:


Checking if "C99 vsnprintf" runs: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdio.h>
#include <stdarg.h>

int
doit()
{
  char buffer[32];
  va_list args;
  int r;

  r = snprintf(buffer, 5, "1234567");

  if (r != 7)
    exit(1);

  r = snprintf(buffer, 0, "1234567");

  if (r != 7)
    exit(1);

  r = snprintf(NULL, 0, "1234567");

  if (r != 7)
    exit(1);

  exit(0);
}

int
main(void)
{
  doit();
  exit(1);
}
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:15:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:15:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:15:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:20:5: warning: incompatible implicit declaration of built-in function 'exit'
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:20:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:25:5: warning: incompatible implicit declaration of built-in function 'exit'
     exit(1);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:25:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:27:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(0);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:27:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:34:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit(1);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfvyu3s7/testfile.c:34:3: note: include '<stdlib.h>' or provide a declaration of 'exit'

Program stdout:


Program stderr:


Checking if "C99 snprintf" runs: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdio.h>

int
main (void)
{
  char buffer[128];

  sprintf (buffer, "%2\$d %3\$d %1\$d", 1, 2, 3);
  if (strcmp ("2 3 1", buffer) == 0)
    exit (0);
  exit (1);
}
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:9:20: warning: unknown escape sequence: '\$'
   sprintf (buffer, "%2\$d %3\$d %1\$d", 1, 2, 3);
                    ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:10:7: warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration]
   if (strcmp ("2 3 1", buffer) == 0)
       ^~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:11:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
     exit (0);
     ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:11:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:11:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:12:3: warning: incompatible implicit declaration of built-in function 'exit'
   exit (1);
   ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpks9snlpd/testfile.c:12:3: note: include '<stdlib.h>' or provide a declaration of 'exit'

Program stdout:


Program stderr:


Checking if "Unix98 printf positional parameters" runs: YES
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkz8j7svz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkz8j7svz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *codeset = nl_langinfo (CODESET);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "nl_langinfo and CODESET" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ebyde4l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ebyde4l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (PM_STR);
                 str = nl_langinfo (D_T_FMT);
                 str = nl_langinfo (D_FMT);
                 str = nl_langinfo (T_FMT);
                 str = nl_langinfo (T_FMT_AMPM);
                 str = nl_langinfo (MON_1);
                 str = nl_langinfo (ABMON_12);
                 str = nl_langinfo (DAY_1);
                 str = nl_langinfo (ABDAY_7);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "nl_langinfo (PM_STR)" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpleefzeje/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpleefzeje/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT0_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT1_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT2_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT3_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT4_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT5_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT6_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT7_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT8_MB);
                 str = nl_langinfo (_NL_CTYPE_OUTDIGIT9_MB);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "nl_langinfo (_NL_CTYPE_OUTDIGITn_MB)" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #ifndef _GNU_SOURCE
              # define _GNU_SOURCE
              #endif
              #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (ALTMON_1);
                 str = nl_langinfo (ALTMON_2);
                 str = nl_langinfo (ALTMON_3);
                 str = nl_langinfo (ALTMON_4);
                 str = nl_langinfo (ALTMON_5);
                 str = nl_langinfo (ALTMON_6);
                 str = nl_langinfo (ALTMON_7);
                 str = nl_langinfo (ALTMON_8);
                 str = nl_langinfo (ALTMON_9);
                 str = nl_langinfo (ALTMON_10);
                 str = nl_langinfo (ALTMON_11);
                 str = nl_langinfo (ALTMON_12);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:7:37: error: 'ALTMON_1' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_1);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:7:37: note: each undeclared identifier is reported only once for each function it appears in
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:8:37: error: 'ALTMON_2' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_2);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:9:37: error: 'ALTMON_3' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_3);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:10:37: error: 'ALTMON_4' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_4);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:11:37: error: 'ALTMON_5' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_5);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:12:37: error: 'ALTMON_6' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_6);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:13:37: error: 'ALTMON_7' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_7);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:14:37: error: 'ALTMON_8' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_8);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:15:37: error: 'ALTMON_9' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_9);
                                     ^~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:16:37: error: 'ALTMON_10' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_10);
                                     ^~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:17:37: error: 'ALTMON_11' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_11);
                                     ^~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4ju8a4nu/testfile.c:18:37: error: 'ALTMON_12' undeclared (first use in this function)
                  str = nl_langinfo (ALTMON_12);
                                     ^~~~~~~~~

Checking if "nl_langinfo (ALTMON_n)" links: NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #ifndef _GNU_SOURCE
              # define _GNU_SOURCE
              #endif
              #include <langinfo.h>
               int main (int argc, char ** argv) {
                 char *str;
                 str = nl_langinfo (_NL_ABALTMON_1);
                 str = nl_langinfo (_NL_ABALTMON_2);
                 str = nl_langinfo (_NL_ABALTMON_3);
                 str = nl_langinfo (_NL_ABALTMON_4);
                 str = nl_langinfo (_NL_ABALTMON_5);
                 str = nl_langinfo (_NL_ABALTMON_6);
                 str = nl_langinfo (_NL_ABALTMON_7);
                 str = nl_langinfo (_NL_ABALTMON_8);
                 str = nl_langinfo (_NL_ABALTMON_9);
                 str = nl_langinfo (_NL_ABALTMON_10);
                 str = nl_langinfo (_NL_ABALTMON_11);
                 str = nl_langinfo (_NL_ABALTMON_12);
                 return 0;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:7:37: error: '_NL_ABALTMON_1' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_1);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:7:37: note: each undeclared identifier is reported only once for each function it appears in
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:8:37: error: '_NL_ABALTMON_2' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_2);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:9:37: error: '_NL_ABALTMON_3' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_3);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:10:37: error: '_NL_ABALTMON_4' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_4);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:11:37: error: '_NL_ABALTMON_5' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_5);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:12:37: error: '_NL_ABALTMON_6' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_6);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:13:37: error: '_NL_ABALTMON_7' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_7);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:14:37: error: '_NL_ABALTMON_8' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_8);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:15:37: error: '_NL_ABALTMON_9' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_9);
                                     ^~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:16:37: error: '_NL_ABALTMON_10' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_10);
                                     ^~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:17:37: error: '_NL_ABALTMON_11' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_11);
                                     ^~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpknud9arq/testfile.c:18:37: error: '_NL_ABALTMON_12' undeclared (first use in this function)
                  str = nl_langinfo (_NL_ABALTMON_12);
                                     ^~~~~~~~~~~~~~~

Checking if "nl_langinfo (_NL_ABALTMON_n)" links: NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydgbt9cd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpydgbt9cd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 signed char x;
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "signed" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <stddef.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef ptrdiff_t
                ptrdiff_t;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxhfjkhm8/testfile.c:6:17: warning: useless type name in empty declaration
                 ptrdiff_t;
                 ^~~~~~~~~

Header <stddef.h> has symbol "ptrdiff_t" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcgknmbsz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcgknmbsz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <signal.h>
               #include <sys/types.h>
               sig_atomic_t val = 42;
               int main (int argc, char ** argv) {
                 return val == 42 ? 0 : 1;
               }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "sig_atomic_t" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkzqt80j2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 long long ll = 1LL;
                  int i = 63;
                  int some_func (void) {
                    long long llmax = (long long) -1;
                    return ll << i | ll >> i | llmax / ll | llmax % ll;
                  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "long long" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6qa9h1t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj6qa9h1t/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 /* The Stardent Vistra knows sizeof(long double), but does not support it.  */
                  long double foo = 0.0;
                  /* On Ultrix 4.3 cc, long double is 4 and double is 8.  */
                  int array [2*(sizeof(long double) >= sizeof(double)) - 1];
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "long double" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <stddef.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef wchar_t
                wchar_t;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi7sjs82n/testfile.c:6:17: warning: useless type name in empty declaration
                 wchar_t;
                 ^~~~~~~

Header <stddef.h> has symbol "wchar_t" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <wchar.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef wint_t
                wint_t;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpglehw8_r/testfile.c:6:17: warning: useless type name in empty declaration
                 wint_t;
                 ^~~~~~

Header <wchar.h> has symbol "wint_t" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbl3dawgg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbl3dawgg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
                  #include <inttypes.h>
                  void some_func (void) {
                    uintmax_t i = (uintmax_t) -1;
                  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "uintmax_t in inttypes.h" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4f8kb9s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4f8kb9s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
                  #include <stdint.h>
                  void some_func (void) {
                    uintmax_t i = (uintmax_t) -1;
                  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "uintmax_t in stdint.h" compiles: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj3tl4_fa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj3tl4_fa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj3tl4_fa/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(char)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Checking for size of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpinqk0jvm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpinqk0jvm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpinqk0jvm/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(short)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Checking for size of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprkf0au3r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprkf0au3r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprkf0au3r/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(int)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvpa2ypus
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvpa2ypus/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvpa2ypus/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void*)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe1f0xj00
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe1f0xj00/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe1f0xj00/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk489qkx9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk489qkx9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk489qkx9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz_9rpos1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz_9rpos1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz_9rpos1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(size_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "size_t" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpklzmnfy1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpklzmnfy1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpklzmnfy1/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(ssize_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "ssize_t" : 8
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph63f8hz9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph63f8hz9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #if defined(_AIX) && !defined(__GNUC__)
                    #pragma options langlvl=stdc99
                    #endif
                    #pragma GCC diagnostic error "-Wincompatible-pointer-types"
                    #include <stdint.h>
                    #include <stdio.h>
                    int main () {
                      int64_t i1 = 1;
                      long *i2 = &i1;
                      return 1;
                    }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "int64_t is long" compiles: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcnxrr647
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcnxrr647/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcnxrr647/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            char target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1
Program stderr:


Checking for alignment of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeds59phh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeds59phh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeds59phh/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            short target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2
Program stderr:


Checking for alignment of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd5g2wq7j
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd5g2wq7j/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd5g2wq7j/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            int target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4
Program stderr:


Checking for alignment of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjbvzi_8y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjbvzi_8y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjbvzi_8y/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            void* target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9iw57bv6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9iw57bv6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9iw57bv6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            long target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy7jahh2n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy7jahh2n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy7jahh2n/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            long long target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "long long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo7l_gh97
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo7l_gh97/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo7l_gh97/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdio.h>
        #include <stddef.h>
        
        struct tmp {
            char c;
            size_t target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8
Program stderr:


Checking for alignment of "size_t" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpano1cyvf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpano1cyvf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpano1cyvf/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        #include <stddef.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(wchar_t)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "wchar_t" : 4
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmkzy6wi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptmkzy6wi/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdarg.h>
                    #include <stdlib.h>
                    #ifdef _MSC_VER
                    # include "msvc_recommended_pragmas.h"
                    #endif
                    void f (int i, ...) {
                    va_list args1, args2;
                    va_start (args1, i);
                    __va_copy (args2, args1);
                    if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
                      exit (1);
                    va_end (args1); va_end (args2);
                    }
                    int main() {
                      f (0, 42);
                      return 0;
                    }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "__va_copy check" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8hvf8fra/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8hvf8fra/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdarg.h>
                    #include <stdlib.h>
                    #ifdef _MSC_VER
                    # include "msvc_recommended_pragmas.h"
                    #endif
                    void f (int i, ...) {
                    va_list args1, args2;
                    va_start (args1, i);
                    va_copy (args2, args1);
                    if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
                      exit (1);
                    va_end (args1); va_end (args2);
                    }
                    int main() {
                      f (0, 42);
                      return 0;
                    }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "va_copy check" compiles: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg1ugn_38
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg1ugn_38/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg1ugn_38/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  #include <stdarg.h>
  #include <stdlib.h>
  void f (int i, ...) {
    va_list args1, args2;
    va_start (args1, i);
    args2 = args1;
    if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
      exit (1);
    va_end (args1); va_end (args2);
  }
  int main() {
    f (0, 42);
    return 0;
  }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg1ugn_38/testfile.c: In function 'f':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg1ugn_38/testfile.c:7:11: error: assignment to expression with array type
     args2 = args1;
           ^

Could not compile test file /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg1ugn_38/testfile.c: 1

Checking if "va_lists can be copied as values" runs: DID NOT COMPILE
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9kwqs_9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9kwqs_9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  void some_func (void) {
    int a(int p1, int p2, int p3);
    #define call_a(...) a(1,__VA_ARGS__)
    call_a(2,3);
  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "ISO C99 varargs macros in C" compiles: YES (cached)
Using cached compile:
Cached command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdr2ognfc/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdr2ognfc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive 

Code:
 
  void some_func (void) {
    int a(int p1, int p2, int p3);
    #define call_a(...) a(1,__VA_ARGS__)
    call_a(2,3);
  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "ISO C99 varargs macros in C++" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldzmsofu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldzmsofu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  void some_func (void) {
    int a(int p1, int p2, int p3);
    #define call_a(params...) a(1,params)
    call_a(2,3);
  }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "GNUC varargs macros" compiles: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps0m2c8xv/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("alloca.h")
          #error "Header 'alloca.h' could not be found"
         #endif
        #else
         #include <alloca.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "alloca.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptptg2dij/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/poll.h")
          #error "Header 'sys/poll.h' could not be found"
         #endif
        #else
         #include <sys/poll.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/poll.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("winsock2.h")
          #error "Header 'winsock2.h' could not be found"
         #endif
        #else
         #include <winsock2.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c:4:12: error: #error "Header 'winsock2.h' could not be found"
           #error "Header 'winsock2.h' could not be found"
            ^~~~~

Has header "winsock2.h" : NO (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpclhnbt0m
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpclhnbt0m/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpclhnbt0m/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLIN));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Computing int of "POLLIN" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd31iflhz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd31iflhz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd31iflhz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLOUT));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Computing int of "POLLOUT" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfmyxxuq6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfmyxxuq6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfmyxxuq6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLPRI));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Computing int of "POLLPRI" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpco19bcij
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpco19bcij/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpco19bcij/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLERR));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Computing int of "POLLERR" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp905t9tvx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp905t9tvx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp905t9tvx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLHUP));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

16

Program stderr:


Computing int of "POLLHUP" : 16
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprj979f8k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprj979f8k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprj979f8k/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include<sys/poll.h>
      #include<sys/types.h>
        int main(void) {
            printf("%ld\n", (long)(POLLNVAL));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

32

Program stderr:


Computing int of "POLLNVAL" : 32
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4_pk1oyp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4_pk1oyp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4_pk1oyp/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(AF_UNIX));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Computing int of "AF_UNIX" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_inu964e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_inu964e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_inu964e/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(AF_INET));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Computing int of "AF_INET" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwsevw2sx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwsevw2sx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwsevw2sx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(AF_INET6));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

10

Program stderr:


Computing int of "AF_INET6" : 10
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgvkp5hf7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgvkp5hf7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgvkp5hf7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(MSG_OOB));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Computing int of "MSG_OOB" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqbuti7h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqbuti7h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqbuti7h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(MSG_PEEK));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Computing int of "MSG_PEEK" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppm3oyoe3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppm3oyoe3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppm3oyoe3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
      #include <sys/types.h>
      #include <sys/socket.h>
        int main(void) {
            printf("%ld\n", (long)(MSG_DONTROUTE));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Computing int of "MSG_DONTROUTE" : 4
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vt8af5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vt8af5/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 int main() {
  volatile int atomic = 2;
  __sync_bool_compare_and_swap (&atomic, 2, 3);
  return 0;
}

Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "atomic ops" links: YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqyei6ga/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprqyei6ga/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4
#error "compiler has atomic ops, but doesn't define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4"
#endif

Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "atomic ops define" compiles: YES (cached)
Dependency threads found: YES unknown (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7nff8pwo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7nff8pwo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_attr_setstacksize
                pthread_attr_setstacksize;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <pthread.h> has symbol "pthread_attr_setstacksize" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiun92xkd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_condattr_setclock
                pthread_condattr_setclock;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <pthread.h> has symbol "pthread_condattr_setclock" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_cond_timedwait_relative_np
                pthread_cond_timedwait_relative_np;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c:6:17: error: 'pthread_cond_timedwait_relative_np' undeclared (first use in this function)
                 pthread_cond_timedwait_relative_np;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpab725f09/testfile.c:6:17: note: each undeclared identifier is reported only once for each function it appears in

Header <pthread.h> has symbol "pthread_cond_timedwait_relative_np" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbpgawvv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkbpgawvv/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
      #ifndef _GNU_SOURCE
      # define _GNU_SOURCE
      #endif
      #include <pthread.h>
        #include <pthread.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pthread_getname_np
                pthread_getname_np;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <pthread.h> has symbol "pthread_getname_np" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/output.exe -pipe -pthread -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
      #ifndef _GNU_SOURCE
      # define _GNU_SOURCE
      #endif
      #include <pthread.h>
              int main() {
                pthread_setname_np("example");
                return 0;
              }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:7:36: warning: passing argument 1 of 'pthread_setname_np' makes integer from pointer without a cast [-Wint-conversion]
                 pthread_setname_np("example");
                                    ^~~~~~~~~
In file included from /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:5:0:
/usr/include/pthread.h:451:12: note: expected 'pthread_t {aka long unsigned int}' but argument is of type 'char *'
 extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
            ^~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:7:17: error: too few arguments to function 'pthread_setname_np'
                 pthread_setname_np("example");
                 ^~~~~~~~~~~~~~~~~~
In file included from /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk4kt2soq/testfile.c:5:0:
/usr/include/pthread.h:451:12: note: declared here
 extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
            ^~~~~~~~~~~~~~~~~~

Checking if "pthread_setname_np(const char*)" with dependency threads links: NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq2srmefe/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq2srmefe/output.exe -pipe -pthread -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
      #ifndef _GNU_SOURCE
      # define _GNU_SOURCE
      #endif
      #include <pthread.h>
                int main() {
                  pthread_setname_np(pthread_self(), "example");
                  return 0;
                }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking if "pthread_setname_np(pthread_t, const char*)" with dependency threads links: YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptro_h8z6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptro_h8z6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptro_h8z6/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
  volatile int *a = 0, *b = 0;
  void f (int i) {
    volatile int x = 5;
    if (i == 0)
      b = &x;
    else
      f (i - 1);
  }
  int main () {
    volatile int y = 7;
    a = &y;
    f (100);
    return b > a ? 0 : 1;
  }
Compiler stdout:
 
Compiler stderr:
 
Program stdout:


Program stderr:


Checking if "stack grows check" runs: NO (1)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4uxkn8w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4uxkn8w/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define iconv_open meson_disable_define_of_iconv_open
        
        #include <limits.h>
        #undef iconv_open
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char iconv_open (void);
        
        #if defined __stub_iconv_open || defined __stub___iconv_open
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return iconv_open ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "iconv_open" : YES (cached)
Dependency libpcre found: YES 8.39 (cached)
Library m found: YES
Dependency libffi found: YES 3.2.1 (cached)
Dependency zlib found: YES 1.2.8 (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzym4s2vt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzym4s2vt/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define ngettext meson_disable_define_of_ngettext
        
        #include <limits.h>
        #undef ngettext
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char ngettext (void);
        
        #if defined __stub_ngettext || defined __stub___ngettext
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return ngettext ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "ngettext" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprk0honp9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprk0honp9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define bind_textdomain_codeset meson_disable_define_of_bind_textdomain_codeset
        
        #include <limits.h>
        #undef bind_textdomain_codeset
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char bind_textdomain_codeset (void);
        
        #if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return bind_textdomain_codeset ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "bind_textdomain_codeset" : YES (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'mount' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency mount found: NO (tried pkgconfig and cmake)

subprojects/glib/meson.build:1868:2: Exception: Dependency "mount" not found, tried pkgconfig and cmake

Subproject libnice is buildable: NO (disabling)

Executing subproject gst-plugins-bad method meson 

Project name: gst-plugins-bad
Project version: 1.17.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
subprojects/gst-plugins-bad/meson.build:37: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
Objective-C compiler for the build machine: cc (gcc 6.3.0)
Objective-C linker for the build machine: cc ld.bfd 2.28
Objective-C compiler for the host machine: cc (gcc 6.3.0)
Objective-C linker for the host machine: cc ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppa__z6s6
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppa__z6s6/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppa__z6s6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-non-virtual-dtor -Wnon-virtual-dtor 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wno-non-virtual-dtor -Wnon-virtual-dtor: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6jshugf_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6jshugf_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6jshugf_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4gfyxiym
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4gfyxiym/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4gfyxiym/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp44dfseip
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp44dfseip/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp44dfseip/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmc3w2kin
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmc3w2kin/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmc3w2kin/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -fno-strict-aliasing: YES 
Message: Disabling deprecated GLib API
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b57_rpf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dlfcn.h")
          #error "Header 'dlfcn.h' could not be found"
         #endif
        #else
         #include <dlfcn.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "dlfcn.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpagfu9da6/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("fcntl.h")
          #error "Header 'fcntl.h' could not be found"
         #endif
        #else
         #include <fcntl.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "fcntl.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "inttypes.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "memory.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsryee5ev/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("netinet/in.h")
          #error "Header 'netinet/in.h' could not be found"
         #endif
        #else
         #include <netinet/in.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "netinet/in.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpryqt1s4v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpryqt1s4v/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("netinet/ip.h")
          #error "Header 'netinet/ip.h' could not be found"
         #endif
        #else
         #include <netinet/ip.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "netinet/ip.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvf8_i0k6/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("netinet/tcp.h")
          #error "Header 'netinet/tcp.h' could not be found"
         #endif
        #else
         #include <netinet/tcp.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "netinet/tcp.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4cwku4ry/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("pthread.h")
          #error "Header 'pthread.h' could not be found"
         #endif
        #else
         #include <pthread.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "pthread.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdint.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4304_n0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdlib.h")
          #error "Header 'stdlib.h' could not be found"
         #endif
        #else
         #include <stdlib.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdlib.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "strings.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprfo9azny/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/param.h")
          #error "Header 'sys/param.h' could not be found"
         #endif
        #else
         #include <sys/param.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/param.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/socket.h")
          #error "Header 'sys/socket.h' could not be found"
         #endif
        #else
         #include <sys/socket.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/socket.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp29m4e93c/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/time.h")
          #error "Header 'sys/time.h' could not be found"
         #endif
        #else
         #include <sys/time.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/time.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3tyfy158/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/utsname.h")
          #error "Header 'sys/utsname.h' could not be found"
         #endif
        #else
         #include <sys/utsname.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/utsname.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc2h6fwqv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc2h6fwqv/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("windows.h")
          #error "Header 'windows.h' could not be found"
         #endif
        #else
         #include <windows.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc2h6fwqv/testfile.c:4:12: error: #error "Header 'windows.h' could not be found"
           #error "Header 'windows.h' could not be found"
            ^~~~~

Has header "windows.h" : NO 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("winsock2.h")
          #error "Header 'winsock2.h' could not be found"
         #endif
        #else
         #include <winsock2.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c:4:12: error: #error "Header 'winsock2.h' could not be found"
           #error "Header 'winsock2.h' could not be found"
            ^~~~~

Has header "winsock2.h" : NO (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb6rtqr7i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb6rtqr7i/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("ws2tcpip.h")
          #error "Header 'ws2tcpip.h' could not be found"
         #endif
        #else
         #include <ws2tcpip.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb6rtqr7i/testfile.c:4:12: error: #error "Header 'ws2tcpip.h' could not be found"
           #error "Header 'ws2tcpip.h' could not be found"
            ^~~~~

Has header "ws2tcpip.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define dcgettext meson_disable_define_of_dcgettext
        
        #include <limits.h>
        #undef dcgettext
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char dcgettext (void);
        
        #if defined __stub_dcgettext || defined __stub___dcgettext
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return dcgettext ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov/testfile.c:10:14: warning: conflicting types for built-in function 'dcgettext'
         char dcgettext (void);
              ^~~~~~~~~

Checking for function "dcgettext" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuhe8lg49/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuhe8lg49/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getpagesize meson_disable_define_of_getpagesize
        
        #include <limits.h>
        #undef getpagesize
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpagesize (void);
        
        #if defined __stub_getpagesize || defined __stub___getpagesize
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpagesize ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getpagesize" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmvhhuqw7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define gmtime_r meson_disable_define_of_gmtime_r
        
        #include <limits.h>
        #undef gmtime_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gmtime_r (void);
        
        #if defined __stub_gmtime_r || defined __stub___gmtime_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gmtime_r ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "gmtime_r" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigzg9c54/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define mmap meson_disable_define_of_mmap
        
        #include <limits.h>
        #undef mmap
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mmap (void);
        
        #if defined __stub_mmap || defined __stub___mmap
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mmap ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "mmap" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1swuwfvr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define pipe2 meson_disable_define_of_pipe2
        
        #include <limits.h>
        #undef pipe2
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pipe2 (void);
        
        #if defined __stub_pipe2 || defined __stub___pipe2
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pipe2 ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "pipe2" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9rqzx621
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9rqzx621/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9rqzx621/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<sys/resource.h>
#include <limits.h>

        #if defined __stub_getrusage || defined __stub___getrusage
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &getrusage;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getrusage" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9vb_ziqp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9vb_ziqp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9vb_ziqp/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(char)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Checking for size of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpphonzlet
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpphonzlet/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpphonzlet/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(int)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpntwvoi9i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpntwvoi9i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpntwvoi9i/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6hnlb18z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6hnlb18z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6hnlb18z/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(short)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Checking for size of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8kn9ejz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8kn9ejz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg8kn9ejz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void*)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "void*" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphlpvw1c2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphlpvw1c2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphlpvw1c2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4shjmj3p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4shjmj3p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4shjmj3p/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp719i42m0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp719i42m0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp719i42m0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wold-style-definition: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp48te39y9
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp48te39y9/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp48te39y9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1plus: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C++ supports arguments -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv5p7e9vf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv5p7e9vf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv5p7e9vf/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvvrj59wf
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvvrj59wf/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvvrj59wf/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8nmvdbi6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8nmvdbi6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8nmvdbi6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpag495475
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpag495475/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpag495475/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp56xqgzca
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp56xqgzca/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp56xqgzca/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqcx5zz3q
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqcx5zz3q/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqcx5zz3q/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc5p9i3pn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc5p9i3pn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc5p9i3pn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqbcvbsc
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqbcvbsc/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqbcvbsc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_8tvevih
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_8tvevih/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_8tvevih/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1g5mkw9g
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1g5mkw9g/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1g5mkw9g/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1plus: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C++ supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphy3qhlug
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphy3qhlug/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphy3qhlug/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpae8ktbc2
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpae8ktbc2/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpae8ktbc2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuk1jselr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuk1jselr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuk1jselr/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Wmissing-include-dirs]

Compiler for C supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpekpl18sb
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpekpl18sb/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpekpl18sb/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejudrpik
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejudrpik/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpejudrpik/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb9nrzzur
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb9nrzzur/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb9nrzzur/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0kde4_c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0kde4_c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0kde4_c/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsy7y0xzp
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsy7y0xzp/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsy7y0xzp/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7wd59vzy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7wd59vzy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7wd59vzy/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5zv1d5z6
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5zv1d5z6/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5zv1d5z6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw6y12m0o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw6y12m0o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw6y12m0o/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdjwrwzzl
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdjwrwzzl/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdjwrwzzl/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wpointer-arith: YES 
Dependency gstreamer-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-base-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-net-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-controller-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-pbutils-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-allocators-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-app-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-audio-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-fft-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-riff-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-rtp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-rtsp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-sdp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-tag-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-video-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-check-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-gl-1.0 from subproject subprojects/gst-plugins-base found: NO
Library m found: YES
Dependency glib-2.0 found: YES 2.50.3 (cached)
Dependency gmodule-2.0 found: YES 2.50.3 (cached)
Dependency gio-2.0 found: YES 2.50.3 (cached)
Dependency x11 found: YES 1.6.4 (cached)
subprojects/gst-plugins-bad/meson.build:372: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
No OBJCXXFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Compiler for language objcpp for the build machine not found.
No OBJCXXFLAGS in the environment, not changing global flags.
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Compiler for language objcpp for the host machine not found.
Dependency orc-0.4 from subproject subprojects/orc found: YES 0.4.29
Program orcc found: YES (overridden: orcc)
Message: GStreamer debug system is enabled
Program python3 found: YES (/usr/bin/python3)
Program g-ir-scanner found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opencv' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion opencv` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opencv found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opencv4' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion opencv4` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opencv4 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vulkan' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vulkan` -> 1

Run-time dependency vulkan found: NO (tried pkgconfig)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vhmb16q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vhmb16q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vhmb16q/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lvulkan -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lvulkan
collect2: error: ld returned 1 exit status

Library vulkan found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_lrpjet0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_lrpjet0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("vulkan/vulkan_core.h")
          #error "Header 'vulkan/vulkan_core.h' could not be found"
         #endif
        #else
         #include <vulkan/vulkan_core.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_lrpjet0/testfile.c:4:12: error: #error "Header 'vulkan/vulkan_core.h' could not be found"
           #error "Header 'vulkan/vulkan_core.h' could not be found"
            ^~~~~

Has header "vulkan/vulkan_core.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xcb' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xcb` -> 0
1.12
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags xcb` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config xcb --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lxcb
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config xcb --libs` -> 0
-lxcb
WARNING: No include directory found parsing "c++ -xobjective-c++ -E -v -" output
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkcyrdp6h
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkcyrdp6h/testfile.mm -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkcyrdp6h/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 c++: error trying to exec 'cc1objplus': execvp: No such file or directory

Could not compile test file /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkcyrdp6h/testfile.mm: 1

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0ymafdn9
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0ymafdn9/testfile.mm -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0ymafdn9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 --print-search-dirs 

Code:
 
Compiler stdout:
 install: /usr/lib/gcc/x86_64-linux-gnu/6/
programs: =/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/bin/
libraries: =/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../lib/:/lib/x86_64-linux-gnu/6/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/6/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../:/lib/:/usr/lib/

Compiler stderr:
 
Run-time dependency xcb found: YES 1.12
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xkbcommon' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xkbcommon` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xkbcommon found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xkbcommon-x11' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion xkbcommon-x11` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xkbcommon-x11 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'wayland-client' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion wayland-client` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency wayland-client found: NO (tried pkgconfig and cmake)
subprojects/gst-plugins-bad/gst-libs/gst/vulkan/meson.build:249: WARNING: No Windowing system found.  vulkansink will not work
Program glslc found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'wayland-client' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency wayland-client found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdrm' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdrm found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'wayland-protocols' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion wayland-protocols` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency wayland-protocols found: NO (tried pkgconfig and cmake)
Program wayland-scanner found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprbybv9tj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprbybv9tj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprbybv9tj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unknown-pragmas -Wunknown-pragmas 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unknown-pragmas -Wunknown-pragmas: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'ltc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion ltc` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency ltc found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'bluez' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion bluez` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency bluez found: NO (tried pkgconfig and cmake)
Dependency gio-unix-2.0 found: YES 2.50.3 (cached)
Library dl found: YES
Dependency threads found: YES unknown (cached)
Message: Building decklink plugin
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_kcwlek
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_kcwlek/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_kcwlek/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <linux/dvb/version.h>
#if DVB_API_VERSION < 5 || (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR <= 4)
#error "Incompatible dvb API"
#endif'

Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_kcwlek/testfile.c:5:7: warning: missing terminating ' character
 #endif'
       ^
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_kcwlek/testfile.c:5:7: warning: extra tokens at end of #endif directive [-Wendif-labels]

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9_sfrpob
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9_sfrpob/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/fb.h")
          #error "Header 'linux/fb.h' could not be found"
         #endif
        #else
         #include <linux/fb.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "linux/fb.h" : YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdrm' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdrm found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency libdrm

Executing subproject libdrm method meson 

Project name: libdrm
Project version: 2.4.100
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Dependency threads found: YES unknown (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'atomic_ops' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion atomic_ops` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency atomic_ops found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbu0com57
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbu0com57/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbu0com57/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
    int atomic_add(int *i) { return __sync_add_and_fetch (i, 1); }
    int atomic_cmpxchg(int *i, int j, int k) { return __sync_val_compare_and_swap (i, j, k); }
    
Compiler stdout:
 
Compiler stderr:
 
Checking if "Intel Atomics" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpllucyoju
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpllucyoju/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpllucyoju/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define dlsym meson_disable_define_of_dlsym
        
        #include <limits.h>
        #undef dlsym
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char dlsym (void);
        
        #if defined __stub_dlsym || defined __stub___dlsym
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return dlsym ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccqAnpjc.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `dlsym'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_sbhedm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_sbhedm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_sbhedm/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_dlsym)
                #error "__builtin_dlsym not found"
            #endif
        #elif ! defined(dlsym)
            /* Check for __builtin_dlsym only if no includes were added to the
             * prefix above, which means no definition of dlsym can be found.
             * We would always check for this, but we get false positives on
             * MSYS2 if we do. Their toolchain is broken, but we can at least
             * give them a workaround. */
            #if 1
                __builtin_dlsym;
            #else
                #error "No definition for __builtin_dlsym found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_sbhedm/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_sbhedm/testfile.c:14:17: error: '__builtin_dlsym' undeclared (first use in this function)
                 __builtin_dlsym;
                 ^~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_sbhedm/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "dlsym" : NO 
Library dl found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbdx81sx3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbdx81sx3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbdx81sx3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #define _GNU_SOURCE
#include <time.h>
#include <limits.h>

        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &clock_gettime;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "clock_gettime" : YES 
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp42ezd4yb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp42ezd4yb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp42ezd4yb/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
#include <sys/sysctl.h>
Compiler stdout:
 
Compiler stderr:
 
Checking if "sys/sysctl.h works" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9z70nnpd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9z70nnpd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9z70nnpd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
#include <sys/select.h>
Compiler stdout:
 
Compiler stderr:
 
Checking if "sys/select.h works" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzwtnpt8_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzwtnpt8_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzwtnpt8_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
#include <alloca.h>
Compiler stdout:
 
Compiler stderr:
 
Checking if "alloca.h works" compiles: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpomp4ino6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/sysmacros.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef major
                major;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <sys/sysmacros.h> has symbol "major" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprs8kq74l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprs8kq74l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprs8kq74l/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/sysmacros.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef minor
                minor;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/sysmacros.h> has symbol "minor" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprub55vkx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprub55vkx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprub55vkx/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/sysmacros.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef makedev
                makedev;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/sysmacros.h> has symbol "makedev" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgau3d1_3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgau3d1_3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgau3d1_3/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/mkdev.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef major
                major;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgau3d1_3/testfile.c:2:31: fatal error: sys/mkdev.h: No such file or directory
         #include <sys/mkdev.h>
                               ^
compilation terminated.

Header <sys/mkdev.h> has symbol "major" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp83noz7eo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp83noz7eo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp83noz7eo/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define open_memstream meson_disable_define_of_open_memstream
        
        #include <limits.h>
        #undef open_memstream
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char open_memstream (void);
        
        #if defined __stub_open_memstream || defined __stub___open_memstream
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return open_memstream ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "open_memstream" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ocfxngg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ocfxngg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ocfxngg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wall 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wall: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaty_qyd3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaty_qyd3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaty_qyd3/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wextra 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wextra: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigfozfzx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigfozfzx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpigfozfzx/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wsign-compare 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wsign-compare: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2ndzhmo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2ndzhmo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe2ndzhmo/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=undef 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=undef: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplu9jxrnb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplu9jxrnb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplu9jxrnb/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=implicit-function-declaration 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Werror=implicit-function-declaration: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_pqomauu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_pqomauu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_pqomauu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpymmsy0n2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpymmsy0n2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpymmsy0n2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfghok0pl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfghok0pl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfghok0pl/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzxdxrse0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzxdxrse0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzxdxrse0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph4ytbzym
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph4ytbzym/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph4ytbzym/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvkzbim4k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvkzbim4k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvkzbim4k/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wnested-externs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wnested-externs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplnjg_em5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplnjg_em5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplnjg_em5/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpacked 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpacked: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp2hao_yg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp2hao_yg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp2hao_yg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wswitch-enum 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wswitch-enum: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt25kdc2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt25kdc2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkt25kdc2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-format-attribute 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-format-attribute: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_0m8upa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_0m8upa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_0m8upa/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-aliasing=2 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-aliasing=2: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp4qo0c3i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp4qo0c3i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp4qo0c3i/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8by3vsa3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8by3vsa3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8by3vsa3/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winline 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winline: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn8210ild
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn8210ild/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn8210ild/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wshadow 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wshadow: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnrmj4ndu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnrmj4ndu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnrmj4ndu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmla_yybf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmla_yybf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmla_yybf/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wold-style-definition: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_5ttchq9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_5ttchq9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_5ttchq9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-parameter 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wunused-parameter: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwv8v3ady
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwv8v3ady/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwv8v3ady/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wattributes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wattributes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3svixiwd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3svixiwd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3svixiwd/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wlong-long 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wlong-long: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l19mwfr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l19mwfr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7l19mwfr/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-field-initializers 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-field-initializers: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'pciaccess' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion pciaccess` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency pciaccess found: NO (tried pkgconfig and cmake)

subprojects/libdrm-2.4.100/meson.build:226:0: Exception: Dependency "pciaccess" not found, tried pkgconfig and cmake

Subproject libdrm is buildable: NO (disabling)
Dependency libdrm from subproject subprojects/libdrm found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18onygw8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18onygw8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18onygw8/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lml_audio -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lml_audio
collect2: error: ld returned 1 exit status

Library ml_audio found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqrq0pkrz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqrq0pkrz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqrq0pkrz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -llumin_rt_core_1_5 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -llumin_rt_core_1_5
collect2: error: ld returned 1 exit status

Library lumin_rt_core_1_5 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprrgz4of_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprrgz4of_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprrgz4of_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -llumin_rt_app_1_5 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -llumin_rt_app_1_5
collect2: error: ld returned 1 exit status

Library lumin_rt_app_1_5 found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libmfx' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libmfx` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libmfx found: NO (tried pkgconfig and cmake)
Running command: /usr/bin/python3 -c import os; print(os.environ.get("INTELMEDIASDKROOT", os.environ.get("MFX_HOME", "")))
--- stdout ---


--- stderr ---


Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph65vxzgb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph65vxzgb/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("SLES/OpenSLES.h")
          #error "Header 'SLES/OpenSLES.h' could not be found"
         #endif
        #else
         #include <SLES/OpenSLES.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph65vxzgb/testfile.c:4:12: error: #error "Header 'SLES/OpenSLES.h' could not be found"
           #error "Header 'SLES/OpenSLES.h' could not be found"
            ^~~~~

Has header "SLES/OpenSLES.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzfbq7h22
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzfbq7h22/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzfbq7h22/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lOpenSLES -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lOpenSLES
collect2: error: ld returned 1 exit status

Library OpenSLES found: NO
Library rt found: YES
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/socket.h")
          #error "Header 'sys/socket.h' could not be found"
         #endif
        #else
         #include <sys/socket.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/socket.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpolshiyrj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpolshiyrj/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("tinyalsa/asoundlib.h")
          #error "Header 'tinyalsa/asoundlib.h' could not be found"
         #endif
        #else
         #include <tinyalsa/asoundlib.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpolshiyrj/testfile.c:4:12: error: #error "Header 'tinyalsa/asoundlib.h' could not be found"
           #error "Header 'tinyalsa/asoundlib.h' could not be found"
            ^~~~~

Has header "tinyalsa/asoundlib.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'tinyalsa' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion tinyalsa` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency tinyalsa found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency tinyalsa
Subproject directory not found and tinyalsa.wrap file not found
Subproject  subprojects/tinyalsa is buildable: NO (disabling)
Dependency tinyalsa from subproject subprojects/tinyalsa found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gudev-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gudev-1.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libusb-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libusb-1.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libusb-1.0 found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps8x7rj1k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps8x7rj1k/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/uvcvideo.h")
          #error "Header 'linux/uvcvideo.h' could not be found"
         #endif
        #else
         #include <linux/uvcvideo.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "linux/uvcvideo.h" : YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gudev-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gudev-1.0 found: NO (tried pkgconfig and cmake)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn08boapz/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("linux/videodev2.h")
          #error "Header 'linux/videodev2.h' could not be found"
         #endif
        #else
         #include <linux/videodev2.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "linux/videodev2.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2e3i0o03
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2e3i0o03/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2e3i0o03/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/mkdev.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef makedev
                makedev;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2e3i0o03/testfile.c:2:31: fatal error: sys/mkdev.h: No such file or directory
         #include <sys/mkdev.h>
                               ^
compilation terminated.

Header <sys/mkdev.h> has symbol "makedev" : NO 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprub55vkx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprub55vkx/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/sysmacros.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef makedev
                makedev;
            #endif
            return 0;
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Header <sys/sysmacros.h> has symbol "makedev" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2exsyl4n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2exsyl4n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2exsyl4n/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/types.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef makedev
                makedev;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/types.h> has symbol "makedev" : YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libva' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libva` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libva found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libva-drm' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libva-drm` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libva-drm found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gudev-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gudev-1.0 found: NO (tried pkgconfig and cmake)
Dependency libdrm from subproject subprojects/libdrm found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzus8fx_v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzus8fx_v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzus8fx_v/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lole32 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lole32
collect2: error: ld returned 1 exit status

Library ole32 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprvmlaesj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprvmlaesj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprvmlaesj/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lksuser -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lksuser
collect2: error: ld returned 1 exit status

Library ksuser found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsa0satxk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsa0satxk/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("audioclient.h")
          #error "Header 'audioclient.h' could not be found"
         #endif
        #else
         #include <audioclient.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsa0satxk/testfile.c:4:12: error: #error "Header 'audioclient.h' could not be found"
           #error "Header 'audioclient.h' could not be found"
            ^~~~~

Has header "audioclient.h" : NO 
Library ole32 found: NO
Library ksuser found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqw0x64e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqw0x64e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptqw0x64e/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lruntimeobject -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lruntimeobject
collect2: error: ld returned 1 exit status

Library runtimeobject found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdcwv2ems
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdcwv2ems/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdcwv2ems/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lmmdevapi -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lmmdevapi
collect2: error: ld returned 1 exit status

Library mmdevapi found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libass' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libass` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libass found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'aom' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion aom` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency aom found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'avtp' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion avtp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency avtp found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency avtp

Executing subproject avtp method meson 

Project name: libavtp
Project version: 0.1.0
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'cmocka' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion cmocka` -> 0
1.0.1
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags cmocka` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config cmocka --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lcmocka
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config cmocka --libs` -> 0
-lcmocka
Run-time dependency cmocka found: YES 1.0.1
Adding test "AVTP API"
Adding test "Stream API"
Adding test "AAF API"
Adding test "CRF API"
Adding test "CVF API"
Adding test "IEC61883/IIDC API"
Library m found: YES
Build targets in project: 720
Subproject avtp finished.

Dependency avtp from subproject subprojects/avtp found: YES 0.1.0
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1wwu5_s0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1wwu5_s0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1wwu5_s0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <linux/net_tstamp.h>
        void bar(void) {
            sizeof(struct sock_txtime);
        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1wwu5_s0/testfile.c: In function 'bar':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1wwu5_s0/testfile.c:3:20: error: invalid application of 'sizeof' to incomplete type 'struct sock_txtime'
             sizeof(struct sock_txtime);
                    ^~~~~~

Checking for type "struct sock_txtime" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libbs2b' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libbs2b` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libbs2b found: NO (tried pkgconfig and cmake)
Library bz2 found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libchromaprint' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libchromaprint` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libchromaprint found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'pangocairo' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency pangocairo found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'lcms2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion lcms2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency lcms2 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libcurl' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libcurl` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libcurl found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libxml-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libxml-2.0` -> 0
2.9.4
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags libxml-2.0` -> 0
-I/usr/include/libxml2
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libxml-2.0 --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lxml2
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libxml-2.0 --libs` -> 0
-lxml2
Run-time dependency libxml-2.0 found: YES 2.9.4
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdc1394-2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libdc1394-2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdc1394-2 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'directfb' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion directfb` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency directfb found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'openssl' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion openssl` -> 0
1.1.0l
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags openssl` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config openssl --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lssl -lcrypto
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config openssl --libs` -> 0
-lssl -lcrypto
Run-time dependency openssl found: YES 1.1.0l
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libcrypto' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libcrypto` -> 0
1.1.0l
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags libcrypto` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libcrypto --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lcrypto
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config libcrypto --libs` -> 0
-lcrypto
Run-time dependency libcrypto found: YES 1.1.0l
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdca' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libdca` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdca found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tzye_x9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tzye_x9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tzye_x9/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <dca.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef dca_init
                dca_init;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_tzye_x9/testfile.c:2:25: fatal error: dca.h: No such file or directory
         #include <dca.h>
                         ^
compilation terminated.

Header <dca.h> has symbol "dca_init" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn0pad9f3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn0pad9f3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpn0pad9f3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lfaac -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lfaac
collect2: error: ld returned 1 exit status

Library faac found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_0gyveu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_0gyveu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_0gyveu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <faac.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef faacEncOpen
                faacEncOpen;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_0gyveu/testfile.c:2:26: fatal error: faac.h: No such file or directory
         #include <faac.h>
                          ^
compilation terminated.

Header <faac.h> has symbol "faacEncOpen" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmex8zw9s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmex8zw9s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmex8zw9s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <neaacdec.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef NeAACDecOpen
                NeAACDecOpen;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmex8zw9s/testfile.c:2:30: fatal error: neaacdec.h: No such file or directory
         #include <neaacdec.h>
                              ^
compilation terminated.

Header <neaacdec.h> has symbol "NeAACDecOpen" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzg4jjnha
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzg4jjnha/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzg4jjnha/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lfaad -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lfaad
collect2: error: ld returned 1 exit status

Library faad found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'fdk-aac' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion fdk-aac` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency fdk-aac found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xuib5i2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xuib5i2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xuib5i2/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lflite
collect2: error: ld returned 1 exit status

Library flite found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpypfdhgrn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpypfdhgrn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpypfdhgrn/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmu_us_kal -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lflite_cmu_us_kal
collect2: error: ld returned 1 exit status

Library flite_cmu_us_kal found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt246xldz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt246xldz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt246xldz/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_usenglish -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lflite_usenglish
collect2: error: ld returned 1 exit status

Library flite_usenglish found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6em1571y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6em1571y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6em1571y/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmulex -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lflite_cmulex
collect2: error: ld returned 1 exit status

Library flite_cmulex found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpci_0u4in
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpci_0u4in/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpci_0u4in/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <flite/flite.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef flite_init
                flite_init;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpci_0u4in/testfile.c:2:33: fatal error: flite/flite.h: No such file or directory
         #include <flite/flite.h>
                                 ^
compilation terminated.

Header <flite/flite.h> has symbol "flite_init" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'fluidsynth' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion fluidsynth` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency fluidsynth found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_v_hrcx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_v_hrcx/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("gme/gme.h")
          #error "Header 'gme/gme.h' could not be found"
         #endif
        #else
         #include <gme/gme.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5_v_hrcx/testfile.c:4:12: error: #error "Header 'gme/gme.h' could not be found"
           #error "Header 'gme/gme.h' could not be found"
            ^~~~~

Has header "gme/gme.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph_jwe018
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph_jwe018/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph_jwe018/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lgsm -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lgsm
collect2: error: ld returned 1 exit status

Library gsm found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xw_ano2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xw_ano2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xw_ano2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <gsm.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef gsm_create
                gsm_create;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7xw_ano2/testfile.c:2:25: fatal error: gsm.h: No such file or directory
         #include <gsm.h>
                         ^
compilation terminated.

Header <gsm.h> has symbol "gsm_create" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6nzes27b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6nzes27b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6nzes27b/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <gsm/gsm.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef gsm_create
                gsm_create;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6nzes27b/testfile.c:2:29: fatal error: gsm/gsm.h: No such file or directory
         #include <gsm/gsm.h>
                             ^
compilation terminated.

Header <gsm/gsm.h> has symbol "gsm_create" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'nettle' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion nettle` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency nettle found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxeikgn3n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxeikgn3n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxeikgn3n/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lgcrypt -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lgcrypt
collect2: error: ld returned 1 exit status

Library gcrypt found: NO
Dependency openssl found: YES 1.1.0l (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'dssim' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion dssim` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency dssim found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency dssim

Executing subproject dssim method meson 

Project name: dssim
Project version: 1.3.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9v70026c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9v70026c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9v70026c/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lz -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Library z found: YES
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libpng' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libpng found: NO (tried pkgconfig and cmake)

subprojects/dssim/meson.build:43:0: Exception: Dependency "libpng" not found, tried pkgconfig and cmake

Subproject dssim is buildable: NO (disabling)
Dependency dssim from subproject subprojects/dssim found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'kate' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion kate` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency kate found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'lrdf' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion lrdf` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency lrdf found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgw79lvva
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgw79lvva/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("ladspa.h")
          #error "Header 'ladspa.h' could not be found"
         #endif
        #else
         #include <ladspa.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgw79lvva/testfile.c:4:12: error: #error "Header 'ladspa.h' could not be found"
           #error "Header 'ladspa.h' could not be found"
            ^~~~~

Has header "ladspa.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libde265' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libde265` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libde265 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libmms' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libmms` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libmms found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'lilv-0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion lilv-0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency lilv-0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'microdns' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion microdns` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency microdns found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency microdns

Executing subproject libmicrodns method meson 

Project name: microdns
Project version: 0.1.2
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxzz6rxe7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxzz6rxe7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxzz6rxe7/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wsign-compare 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wsign-compare: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9o3e6w5l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9o3e6w5l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9o3e6w5l/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-aliasing: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5jnelpv6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5jnelpv6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5jnelpv6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wstrict-overflow 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wstrict-overflow: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg4fq5ige
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg4fq5ige/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg4fq5ige/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat=2 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wformat=2: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp86jxc8sj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp86jxc8sj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp86jxc8sj/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unused-parameter -Wunused-parameter 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6v5o_26r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6v5o_26r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6v5o_26r/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wcast-align 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wcast-align: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0vb0ksv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0vb0ksv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0vb0ksv/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpds_z6ycc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpds_z6ycc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpds_z6ycc/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjyafve_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjyafve_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfjyafve_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3h_u3l8n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3h_u3l8n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3h_u3l8n/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wlogical-op 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wlogical-op: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzmr_jffc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzmr_jffc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzmr_jffc/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#ifdef _WIN32
#include <ws2tcpip.h>
#include <windows.h>
# if _WIN32_WINNT < 0x600
#  error Needs vista+
# endif
#else
#include <sys/socket.h>
#include <arpa/inet.h>
#endif
int main() {
  inet_ntop(AF_INET, NULL, NULL, 0);
}

Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzmr_jffc/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzmr_jffc/testfile.c:13:22: error: 'NULL' undeclared (first use in this function)
   inet_ntop(AF_INET, NULL, NULL, 0);
                      ^~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzmr_jffc/testfile.c:13:22: note: each undeclared identifier is reported only once for each function it appears in

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprjrob91n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprjrob91n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprjrob91n/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stddef.h>
#ifdef _WIN32
#include <winsock2.h>
#include <windows.h>
# if _WIN32_WINNT < 0x600
#  error Needs vista+
# endif
# if defined(_MSC_VER)
#   error
# endif
#else
#include <poll.h>
#endif
int main() {
  poll(NULL, 0, 0);
}

Compiler stdout:
 
Compiler stderr:
 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bzobz2r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bzobz2r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bzobz2r/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/types.h>
#include <poll.h>

        void bar(void) {
            sizeof(struct pollfd);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct pollfd" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyij8c21v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyij8c21v/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getifaddrs meson_disable_define_of_getifaddrs
        
        #include <limits.h>
        #undef getifaddrs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getifaddrs (void);
        
        #if defined __stub_getifaddrs || defined __stub___getifaddrs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getifaddrs ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "getifaddrs" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9xgcgt0q/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("ifaddrs.h")
          #error "Header 'ifaddrs.h' could not be found"
         #endif
        #else
         #include <ifaddrs.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "ifaddrs.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Configuring config.h using configuration
Configuring microdns.pc using configuration
Configuring Doxyfile using configuration
Adding test "unittest"
Build targets in project: 728
Subproject libmicrodns finished.

Dependency microdns from subproject subprojects/libmicrodns found: YES 0.1.2
subprojects/gst-plugins-bad/ext/modplug/meson.build:1: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libmodplug' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libmodplug` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libmodplug found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'mjpegtools' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion mjpegtools` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency mjpegtools found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaz49b6ex
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaz49b6ex/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaz49b6ex/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wl,--start-group -lmpeg2encpp -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lmpeg2encpp
collect2: error: ld returned 1 exit status

Library mpeg2encpp found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_gtfulqm
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_gtfulqm/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_gtfulqm/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-mismatched-tags -Wmismatched-tags 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 c++: error: unrecognized command line option '-Wmismatched-tags'

Compiler for C++ supports arguments -Wno-mismatched-tags -Wmismatched-tags: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp815oc_i_
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp815oc_i_/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp815oc_i_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-header-guard -Wheader-guard 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 c++: error: unrecognized command line option '-Wheader-guard'

Compiler for C++ supports arguments -Wno-header-guard -Wheader-guard: NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'mjpegtools' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency mjpegtools found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbq__canx
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbq__canx/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbq__canx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wl,--start-group -lmplex2 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lmplex2
collect2: error: ld returned 1 exit status

Library mplex2 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9mxi3dj3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9mxi3dj3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9mxi3dj3/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lmpcdec -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lmpcdec
collect2: error: ld returned 1 exit status

Library mpcdec found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'neon' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion neon` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency neon found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libofa' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libofa` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libofa found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'openal' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion openal` -> 1

Run-time dependency openal found: NO (tried pkgconfig)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opencv' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opencv found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opencv4' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opencv4 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'OpenEXR' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion OpenEXR` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency openexr found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'openh264' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion openh264` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency openh264 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency openh264

Executing subproject openh264 method meson 

Project name: openh264
Project version: 2.1.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Program nasm found: NO
Program nasm.exe found: NO

subprojects/openh264/meson.build:41:0: Exception: Program(s) ['nasm', 'nasm.exe'] not found or not executable

Subproject openh264 is buildable: NO (disabling)
Dependency openh264 from subproject subprojects/openh264 found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libopenjp2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libopenjp2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libopenjp2 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency libopenjp2

Executing subproject libopenjp2 method meson 


subprojects/openjpeg-2.3.1/meson.build:2:0: Exception: Meson version is 0.53.2 but project requires >= 0.54.99

Subproject libopenjp2 is buildable: NO (disabling)
Dependency libopenjp2 from subproject subprojects/libopenjp2 found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libopenmpt' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libopenmpt` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libopenmpt found: NO (tried pkgconfig and cmake)
subprojects/gst-plugins-bad/ext/openni2/meson.build:1: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libopenni2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libopenni2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libopenni2 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opus' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opus found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'dvdnav' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion dvdnav` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency dvdnav found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'dvdread' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion dvdread` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency dvdread found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'librsvg-2.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion librsvg-2.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency librsvg-2.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'librtmp' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion librtmp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency librtmp found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'sbc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion sbc` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency sbc found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppiypc2wx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppiypc2wx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppiypc2wx/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lusrsctp -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -lusrsctp
collect2: error: ld returned 1 exit status

Library usrsctp found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv6okz_gn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv6okz_gn/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("usrsctp.h")
          #error "Header 'usrsctp.h' could not be found"
         #endif
        #else
         #include <usrsctp.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv6okz_gn/testfile.c:4:12: error: #error "Header 'usrsctp.h' could not be found"
           #error "Header 'usrsctp.h' could not be found"
            ^~~~~

Has header "usrsctp.h" : NO 
Dependency libxml-2.0 found: YES 2.9.4 (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'sndfile' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion sndfile` -> 0
1.0.27
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags sndfile` -> 0

PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config sndfile --libs` -> 0
-L/usr/lib/x86_64-linux-gnu -lsndfile
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config sndfile --libs` -> 0
-lsndfile
Run-time dependency sndfile found: YES 1.0.27
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'soundtouch' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion soundtouch` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency soundtouch found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'soundtouch-1.4' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion soundtouch-1.4` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency soundtouch-1.4 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'soundtouch-1.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion soundtouch-1.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency soundtouch-1.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'spandsp' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion spandsp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency spandsp found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'srt' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion srt` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency srt found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3crts83n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3crts83n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3crts83n/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <srt/srt.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef srt_startup
                srt_startup;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3crts83n/testfile.c:2:29: fatal error: srt/srt.h: No such file or directory
         #include <srt/srt.h>
                             ^
compilation terminated.

Header <srt/srt.h> has symbol "srt_startup" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libsrtp2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libsrtp2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libsrtp2 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libsrtp' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libsrtp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libsrtp found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8jf5nehe
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8jf5nehe/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8jf5nehe/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <srtp/srtp.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef crypto_policy_set_aes_gcm_128_16_auth
                crypto_policy_set_aes_gcm_128_16_auth;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8jf5nehe/testfile.c:2:31: fatal error: srtp/srtp.h: No such file or directory
         #include <srtp/srtp.h>
                               ^
compilation terminated.

Header <srtp/srtp.h> has symbol "crypto_policy_set_aes_gcm_128_16_auth" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'SvtHevcEnc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion SvtHevcEnc` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency svthevcenc found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'zvbi-0.2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion zvbi-0.2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency zvbi-0.2 found: NO (tried pkgconfig and cmake)
Dependency libxml-2.0 found: YES 2.9.4 (cached)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'pango' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion pango` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency pango found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'cairo' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion cairo` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency cairo found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'pangocairo' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency pangocairo found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vo-aacenc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vo-aacenc` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency vo-aacenc found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'vo-amrwbenc' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion vo-amrwbenc` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency vo-amrwbenc found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdrm' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libdrm found: NO (tried pkgconfig and cmake)
Dependency nice from subproject subprojects/libnice found: NO
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'webrtc-audio-processing' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion webrtc-audio-processing` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency webrtc-audio-processing found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libwebp' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libwebp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libwebp found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'WildMIDI' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion WildMIDI` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency wildmidi found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp70fl3x_m
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp70fl3x_m/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("wildmidi_lib.h")
          #error "Header 'wildmidi_lib.h' could not be found"
         #endif
        #else
         #include <wildmidi_lib.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp70fl3x_m/testfile.c:4:12: error: #error "Header 'wildmidi_lib.h' could not be found"
           #error "Header 'wildmidi_lib.h' could not be found"
            ^~~~~

Has header "wildmidi_lib.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'x265' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion x265` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency x265 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'zxing' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion zxing` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency zxing found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'zbar' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion zbar` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency zbar found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libexif' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libexif` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libexif found: NO (tried pkgconfig and cmake)
Adding test "elements_aiffparse"
Adding test "elements_asfmux"
Adding test "elements_autoconvert"
Adding test "elements_autovideoconvert"
Adding test "elements_avwait"
Adding test "elements_camerabin"
Adding test "elements_gdpdepay"
Adding test "elements_gdppay"
Adding test "elements_h263parse"
Adding test "elements_h264parse"
Adding test "elements_h265parse"
Adding test "elements_hlsdemux_m3u8"
Adding test "elements_id3mux"
Adding test "elements_jpeg2000parse"
Adding test "elements_mpegtsdemux"
Adding test "elements_mpegtsmux"
Adding test "elements_mpeg4videoparse"
Adding test "elements_mpegvideoparse"
Adding test "elements_mxfdemux"
Adding test "elements_mxfmux"
Adding test "elements_nvenc"
Adding test "elements_pcapparse"
Adding test "elements_pnm"
Adding test "elements_ristrtpext"
Adding test "elements_rtponvifparse"
Adding test "elements_rtponviftimestamp"
Adding test "elements_rtpsrc"
Adding test "elements_rtpsink"
Adding test "elements_switchbin"
Adding test "elements_videoframe_audiolevel"
Adding test "elements_viewfinderbin"
Adding test "libs_h264parser"
Adding test "libs_h265parser"
Adding test "libs_insertbin"
Adding test "libs_isoff"
Adding test "libs_nalutils"
Adding test "libs_mpegts"
Adding test "libs_mpegvideoparser"
Adding test "libs_planaraudioadapter"
Adding test "libs_vc1parser"
Adding test "libs_vp8parser"
Adding test "libs_vp9parser"
Adding test "libs_av1parser"
Adding test "elements_avtpaafpay"
Adding test "elements_avtpaafdepay"
Adding test "elements_avtpcrfbase"
Adding test "elements_avtpcrfcheck"
Adding test "elements_avtpcrfsync"
Adding test "elements_avtpcrfutil"
Adding test "elements_avtpcvfpay"
Adding test "elements_avtpcvfdepay"
Adding test "elements_avtpsink"
Adding test "elements_avtpsrc"
Adding test "elements_ccconverter"
Adding test "elements_cccombiner"
Adding test "elements_ccextractor"
Adding test "elements_clockselect"
Adding test "elements_line21"
Adding test "elements_dash_mpd"
Adding test "elements_dtls"
Adding test "elements_jpegparse"
Adding test "elements_netsim"
Adding test "elements_shm"
Dependency  from subproject subprojects/orc found: YES 0.4.29
Adding test "orc_bayer"
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-3.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gdk-x11-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gdk-x11-3.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gdk-x11-3.0 found: NO (tried pkgconfig and cmake)
Dependency x11 found: YES 1.6.4 (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuc9t93ei/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/socket.h")
          #error "Header 'sys/socket.h' could not be found"
         #endif
        #else
         #include <sys/socket.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/socket.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgo4m2uhg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgo4m2uhg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgo4m2uhg/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define kill meson_disable_define_of_kill
        
        #include <limits.h>
        #undef kill
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char kill (void);
        
        #if defined __stub_kill || defined __stub___kill
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return kill ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "kill" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkk69ozaj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkk69ozaj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkk69ozaj/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define socketpair meson_disable_define_of_socketpair
        
        #include <limits.h>
        #undef socketpair
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char socketpair (void);
        
        #if defined __stub_socketpair || defined __stub___socketpair
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return socketpair ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "socketpair" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmons6kog
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmons6kog/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmons6kog/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fcntl meson_disable_define_of_fcntl
        
        #include <limits.h>
        #undef fcntl
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fcntl (void);
        
        #if defined __stub_fcntl || defined __stub___fcntl
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fcntl ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "fcntl" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcd8jiyb_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcd8jiyb_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcd8jiyb_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fork meson_disable_define_of_fork
        
        #include <limits.h>
        #undef fork
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fork (void);
        
        #if defined __stub_fork || defined __stub___fork
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fork ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcd8jiyb_/testfile.c:10:14: warning: conflicting types for built-in function 'fork'
         char fork (void);
              ^~~~

Checking for function "fork" : YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-3.0 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gtk+-wayland-3.0' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gtk+-wayland-3.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gtk+-wayland-3.0 found: NO (tried pkgconfig and cmake)
Configuring gstreamer-bad-audio-1.0.pc using configuration
Configuring gstreamer-bad-audio-1.0-uninstalled.pc using configuration
Configuring gstreamer-codecparsers-1.0.pc using configuration
Configuring gstreamer-codecparsers-1.0-uninstalled.pc using configuration
Configuring gstreamer-insertbin-1.0.pc using configuration
Configuring gstreamer-insertbin-1.0-uninstalled.pc using configuration
Configuring gstreamer-mpegts-1.0.pc using configuration
Configuring gstreamer-mpegts-1.0-uninstalled.pc using configuration
Configuring gstreamer-photography-1.0.pc using configuration
Configuring gstreamer-photography-1.0-uninstalled.pc using configuration
Configuring gstreamer-player-1.0.pc using configuration
Configuring gstreamer-player-1.0-uninstalled.pc using configuration
Configuring gstreamer-plugins-bad-1.0.pc using configuration
Configuring gstreamer-plugins-bad-1.0-uninstalled.pc using configuration
Configuring gstreamer-sctp-1.0.pc using configuration
Configuring gstreamer-sctp-1.0-uninstalled.pc using configuration
Configuring gstreamer-transcoder-1.0.pc using configuration
Configuring gstreamer-transcoder-1.0-uninstalled.pc using configuration
Configuring gstreamer-webrtc-1.0.pc using configuration
Configuring gstreamer-webrtc-1.0-uninstalled.pc using configuration
Program scripts/update-orc-dist-files.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-bad/scripts/update-orc-dist-files.py)
WARNING: Project targeting '>= 0.49' but tried to use feature introduced in '0.52.0': alias_target
Program xgettext found: YES (/usr/bin/xgettext)
Configuring config.h using configuration
Running command: /usr/bin/python3 -c import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")
--- stdout ---

--- stderr ---


Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Build targets in project: 823
WARNING: Project specifies a minimum meson_version '>= 0.49' but uses features which were added in newer versions:
 * 0.52.0: {'alias_target'}
Subproject gst-plugins-bad finished.

Running command: /usr/bin/python3 -c 
import os

os.symlink(os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'subprojects', 'gst-plugins-bad'),
  os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'gst-plugins-bad'))

--- stdout ---

--- stderr ---
Traceback (most recent call last):
  File "<string>", line 5, in <module>
FileExistsError: [Errno 17] File exists: '/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-bad' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-plugins-bad'



Executing subproject gst-plugins-ugly method meson 

Project name: gst-plugins-ugly
Project version: 1.17.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
subprojects/gst-plugins-ugly/meson.build:19: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbiu36b1e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbiu36b1e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbiu36b1e/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuznkjlxg
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuznkjlxg/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuznkjlxg/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wl,--fatal-warnings -Wl,-Bsymbolic-functions 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports link arguments -Wl,-Bsymbolic-functions: YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5b57_rpf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dlfcn.h")
          #error "Header 'dlfcn.h' could not be found"
         #endif
        #else
         #include <dlfcn.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "dlfcn.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4mzks1h/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("inttypes.h")
          #error "Header 'inttypes.h' could not be found"
         #endif
        #else
         #include <inttypes.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "inttypes.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpklmhomjf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpklmhomjf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("malloc.h")
          #error "Header 'malloc.h' could not be found"
         #endif
        #else
         #include <malloc.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "malloc.h" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpm5tfghj8/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("memory.h")
          #error "Header 'memory.h' could not be found"
         #endif
        #else
         #include <memory.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "memory.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n7brdyi/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdint.h")
          #error "Header 'stdint.h' could not be found"
         #endif
        #else
         #include <stdint.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdint.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt4304_n0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("stdlib.h")
          #error "Header 'stdlib.h' could not be found"
         #endif
        #else
         #include <stdlib.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "stdlib.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbf7bl8i_/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "strings.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpju11tj_g/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/stat.h")
          #error "Header 'sys/stat.h' could not be found"
         #endif
        #else
         #include <sys/stat.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/stat.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmiaijuh0/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("sys/types.h")
          #error "Header 'sys/types.h' could not be found"
         #endif
        #else
         #include <sys/types.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/types.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsglrh9lc/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("unistd.h")
          #error "Header 'unistd.h' could not be found"
         #endif
        #else
         #include <unistd.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "unistd.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("winsock2.h")
          #error "Header 'winsock2.h' could not be found"
         #endif
        #else
         #include <winsock2.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp92qszwvo/testfile.c:4:12: error: #error "Header 'winsock2.h' could not be found"
           #error "Header 'winsock2.h' could not be found"
            ^~~~~

Has header "winsock2.h" : NO (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define dcgettext meson_disable_define_of_dcgettext
        
        #include <limits.h>
        #undef dcgettext
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char dcgettext (void);
        
        #if defined __stub_dcgettext || defined __stub___dcgettext
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return dcgettext ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp24ykcgov/testfile.c:10:14: warning: conflicting types for built-in function 'dcgettext'
         char dcgettext (void);
              ^~~~~~~~~

Checking for function "dcgettext" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wgwg5tw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wgwg5tw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0wgwg5tw/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(char)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

1

Program stderr:


Checking for size of "char" : 1
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp76gcyse4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp76gcyse4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp76gcyse4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(int)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

4

Program stderr:


Checking for size of "int" : 4
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5u7hta5s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5u7hta5s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5u7hta5s/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "long" : 8
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvd3clu9d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvd3clu9d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvd3clu9d/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(short)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

2

Program stderr:


Checking for size of "short" : 2
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc3ga49tl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc3ga49tl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc3ga49tl/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include<stdio.h>
        
        int main(void) {
            printf("%ld\n", (long)(sizeof(void*)));
            return 0;
        };
Compiler stdout:
 
Compiler stderr:
 
Program stdout:

8

Program stderr:


Checking for size of "void*" : 8
Dependency gstreamer-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-app-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-video-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-pbutils-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-tag-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-fft-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-audio-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-base-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-riff-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-rtp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-net-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-sdp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-rtsp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Dependency gstreamer-check-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-controller-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency orc-0.4 from subproject subprojects/orc found: YES 0.4.29
Dependency gmodule-2.0 found: YES 2.50.3 (cached)
Message: GStreamer debug system is enabled
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeks8f2jm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeks8f2jm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpeks8f2jm/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpilgbyqln
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpilgbyqln/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpilgbyqln/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplif1h7gn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplif1h7gn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplif1h7gn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpyrkk8w
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpyrkk8w/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptpyrkk8w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wredundant-decls 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wredundant-decls: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9igx0hh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9igx0hh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9igx0hh/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplw4ufw4w
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplw4ufw4w/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplw4ufw4w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wwrite-strings 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wwrite-strings: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdd_jlx6c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdd_jlx6c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdd_jlx6c/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqpcoml1s
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqpcoml1s/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqpcoml1s/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wformat: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvj9hdf1e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvj9hdf1e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvj9hdf1e/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C supports arguments -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxy11v_x
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxy11v_x/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvxy11v_x/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-nonliteral 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1plus: warning: -Wformat-nonliteral ignored without -Wformat [-Wformat-nonliteral]

Compiler for C++ supports arguments -Wformat-nonliteral: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzpvnnmkp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzpvnnmkp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzpvnnmkp/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6dxglokx
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6dxglokx/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6dxglokx/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-security 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1plus: warning: -Wformat-security ignored without -Wformat [-Wformat-security]

Compiler for C++ supports arguments -Wformat-security: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaz8zjvt6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaz8zjvt6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaz8zjvt6/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqni1pnum
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqni1pnum/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqni1pnum/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Winit-self 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Winit-self: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0keuofvh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0keuofvh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0keuofvh/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc1: warning: /usr/src/linux-headers-4.19.0-hoge/include: No such file or directory [-Wmissing-include-dirs]

Compiler for C supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphxu2yquf
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphxu2yquf/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphxu2yquf/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-include-dirs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wmissing-include-dirs: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp35d0_50w
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp35d0_50w/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp35d0_50w/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ql0ikd0
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ql0ikd0/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ql0ikd0/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Waddress: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_qxi861u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_qxi861u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_qxi861u/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpykuged9f
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpykuged9f/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpykuged9f/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wno-multichar -Wmultichar 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wno-multichar -Wmultichar: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m07x4se
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m07x4se/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m07x4se/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqxq5eqit
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqxq5eqit/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqxq5eqit/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wvla 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wvla: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp21bne8pq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp21bne8pq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp21bne8pq/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp214htavh
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp214htavh/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp214htavh/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wpointer-arith 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Wpointer-arith: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe254gsdl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe254gsdl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe254gsdl/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Waggregate-return 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Waggregate-return: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3u9o15rg
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3u9o15rg/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3u9o15rg/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Waggregate-return 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -Waggregate-return: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw5tls_ir
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw5tls_ir/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw5tls_ir/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fno-strict-aliasing: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplhtc1f_2
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplhtc1f_2/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplhtc1f_2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fno-strict-aliasing 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -fno-strict-aliasing: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqpp8tvu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqpp8tvu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvqpp8tvu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0zcisqom
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0zcisqom/testfile.cpp -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0zcisqom/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fvisibility=hidden 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C++ supports arguments -fvisibility=hidden: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldc9h_2d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldc9h_2d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpldc9h_2d/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1qvxb3tu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1qvxb3tu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1qvxb3tu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wold-style-definition: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgcu8kkzs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgcu8kkzs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgcu8kkzs/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wdeclaration-after-statement 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wdeclaration-after-statement: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ocqf3cm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ocqf3cm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ocqf3cm/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wnested-externs 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wnested-externs: YES 
Message: Disabling deprecated GLib API
Program python3 found: YES (/usr/bin/python3)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph3zelflb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph3zelflb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph3zelflb/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -la52 -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 /usr/bin/ld: cannot find -la52
collect2: error: ld returned 1 exit status

Library a52 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9nd2m_y8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9nd2m_y8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9nd2m_y8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <stdint.h>
        #include <a52dec/a52.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef a52_init
                a52_init;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9nd2m_y8/testfile.c:2:32: fatal error: a52dec/a52.h: No such file or directory
         #include <a52dec/a52.h>
                                ^
compilation terminated.

Header <a52dec/a52.h> has symbol "a52_init" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opencore-amrnb' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion opencore-amrnb` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opencore-amrnb found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'opencore-amrwb' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion opencore-amrwb` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency opencore-amrwb found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libcdio' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libcdio` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libcdio found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'dvdread' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency dvdread found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libmpeg2' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libmpeg2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libmpeg2 found: NO (tried pkgconfig and cmake)
subprojects/gst-plugins-ugly/ext/sidplay/meson.build:6: WARNING: Passed invalid keyword argument "native".
WARNING: This will become a hard error in the future.
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
WARNING: Project targeting '>= 0.48' but tried to use feature introduced in '0.50.0': required arg in compiler.has_header
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpywaii4ks
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpywaii4ks/testfile.cpp -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -fpermissive 

Code:
 
        #ifdef __has_include
         #if !__has_include("sidplay/player.h")
          #error "Header 'sidplay/player.h' could not be found"
         #endif
        #else
         #include <sidplay/player.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpywaii4ks/testfile.cpp:4:12: error: #error "Header 'sidplay/player.h' could not be found"
           #error "Header 'sidplay/player.h' could not be found"
            ^~~~~

Has header "sidplay/player.h" : NO 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'x264' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion x264` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency x264 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency x264

Executing subproject x264 method meson 

Program version.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/x264/version.py)
Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/x264/version.py --package-version
--- stdout ---
0.157.2945+49

--- stderr ---


Project name: x264
Project version: 0.157.2945+49
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Program version.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/x264/version.py)
Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/x264/version.py --commit-hash
--- stdout ---
fde1390

--- stderr ---


Message: build: 157
Message: commit: fde1390
Message: version: 0.157.2945+49
Message: revision: 2945+49
Library m found: YES
Dependency threads found: YES unknown (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr6k0hski
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr6k0hski/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr6k0hski/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unused-parameter -Wunused-parameter 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyoy7aiy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyoy7aiy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjyoy7aiy/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-sign-compare -Wsign-compare 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzv1ukeu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzv1ukeu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmzv1ukeu/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-old-style-declaration -Wold-style-declaration 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-old-style-declaration -Wold-style-declaration: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7z8ta_62
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7z8ta_62/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7z8ta_62/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 void f (void) { for (int i = 0; i < 9; i++ ); }
Compiler stdout:
 
Compiler stderr:
 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_icbzy7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_icbzy7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl_icbzy7/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -mpreferred-stack-boundary=6 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -mpreferred-stack-boundary=6: YES 
Program nasm found: NO
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpklmhomjf/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("malloc.h")
          #error "Header 'malloc.h' could not be found"
         #endif
        #else
         #include <malloc.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "malloc.h" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvuw_c0b9/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define memalign meson_disable_define_of_memalign
        
        #include <limits.h>
        #undef memalign
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char memalign (void);
        
        #if defined __stub_memalign || defined __stub___memalign
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return memalign ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "memalign" : YES (cached)
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5m8cllom/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("string.h")
          #error "Header 'string.h' could not be found"
         #endif
        #else
         #include <string.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "string.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppmhubhi8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppmhubhi8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppmhubhi8/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -D_GNU_SOURCE 

Code:
 
        #include <sched.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef CPU_COUNT
                CPU_COUNT;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sched.h> has symbol "CPU_COUNT" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbuhj00rj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbuhj00rj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbuhj00rj/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lm -Wl,--end-group 

Code:
 
        #define log2f meson_disable_define_of_log2f
        
        #include <limits.h>
        #undef log2f
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char log2f (void);
        
        #if defined __stub_log2f || defined __stub___log2f
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return log2f ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbuhj00rj/testfile.c:10:14: warning: conflicting types for built-in function 'log2f'
         char log2f (void);
              ^~~~~

Checking for function "log2f" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_c_e_2vt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_c_e_2vt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_c_e_2vt/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define strtok_r meson_disable_define_of_strtok_r
        
        #include <limits.h>
        #undef strtok_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strtok_r (void);
        
        #if defined __stub_strtok_r || defined __stub___strtok_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strtok_r ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "strtok_r" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphtu37r3_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define clock_gettime meson_disable_define_of_clock_gettime
        
        #include <limits.h>
        #undef clock_gettime
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char clock_gettime (void);
        
        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return clock_gettime ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "clock_gettime" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3oo_0jfz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3oo_0jfz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3oo_0jfz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/mman.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef MAP_PRIVATE
                MAP_PRIVATE;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/mman.h> has symbol "MAP_PRIVATE" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqih92d9c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqih92d9c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqih92d9c/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #include <sys/mman.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef MADV_HUGEPAGE
                MADV_HUGEPAGE;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/mman.h> has symbol "MADV_HUGEPAGE" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_4gtft_f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_4gtft_f/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define fseeko meson_disable_define_of_fseeko
        
        #include <limits.h>
        #undef fseeko
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char fseeko (void);
        
        #if defined __stub_fseeko || defined __stub___fseeko
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return fseeko ();
        }
Cached compiler stdout:
 
Cached compiler stderr:
 
Checking for function "fseeko" : YES (cached)
Library dl skipped: feature avs disabled
Dependency libswscale skipped: feature swscale disabled
Dependency libavutil skipped: feature swscale disabled
Dependency libavformat skipped: feature lavf disabled
Dependency libavcodec skipped: feature lavf disabled
Dependency libavutil skipped: feature lavf disabled
Dependency ffms2 skipped: feature ffms disabled
Dependency libswscale skipped: feature ffms disabled
Dependency liblsmash skipped: feature lsmash disabled
Configuring config.h using configuration
Configuring x264_config.h using configuration
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaeyt0a0z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaeyt0a0z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpaeyt0a0z/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define getopt_long meson_disable_define_of_getopt_long
        
        #include <limits.h>
        #undef getopt_long
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getopt_long (void);
        
        #if defined __stub_getopt_long || defined __stub___getopt_long
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getopt_long ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getopt_long" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4uz8m0re
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4uz8m0re/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("getopt.h")
          #error "Header 'getopt.h' could not be found"
         #endif
        #else
         #include <getopt.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "getopt.h" : YES 
Configuring x264.def using configuration
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmkqq3qz7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmkqq3qz7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmkqq3qz7/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,-Bsymbolic: YES 
Program python3 found: YES (/usr/bin/python3)
Build targets in project: 837
Subproject x264 finished.

Dependency x264 from subproject subprojects/x264 found: YES 0.157.2945+49
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppg9_jjdw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppg9_jjdw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppg9_jjdw/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-missing-prototypes -Wmissing-prototypes 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoash2885
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoash2885/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpoash2885/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-missing-declarations -Wmissing-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxh7cv_5h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxh7cv_5h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxh7cv_5h/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-old-style-definition -Wold-style-definition 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-old-style-definition -Wold-style-definition: YES 
Adding test "elements_x264enc"
Adding test "elements_xingmux"
Adding test "generic_states"
Program xgettext found: YES (/usr/bin/xgettext)
Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Configuring config.h using configuration
Running command: /usr/bin/python3 -c import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")
--- stdout ---

--- stderr ---


Build targets in project: 845
WARNING: Project specifies a minimum meson_version '>= 0.48' but uses features which were added in newer versions:
 * 0.50.0: {'required arg in compiler.has_header'}
Subproject gst-plugins-ugly finished.

Running command: /usr/bin/python3 -c 
import os

os.symlink(os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'subprojects', 'gst-plugins-ugly'),
  os.path.join('/home/makoto/Work/src/gstreamer/gst-build-master', 'gst-plugins-ugly'))

--- stdout ---

--- stderr ---
Traceback (most recent call last):
  File "<string>", line 5, in <module>
FileExistsError: [Errno 17] File exists: '/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/gst-plugins-ugly' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-plugins-ugly'



Executing subproject gst-libav method meson 

Project name: gst-libav
Project version: 1.17.2.1
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C++ compiler for the build machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the build machine: c++ ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
C++ compiler for the host machine: c++ (gcc 6.3.0 "c++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C++ linker for the host machine: c++ ld.bfd 2.28
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libavfilter' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libavfilter` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libavfilter found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency libavfilter

Executing subproject FFmpeg method meson 

Project name: FFmpeg
Project version: 4.1.5
C compiler for the build machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the build machine: cc ld.bfd 2.28
C compiler for the host machine: cc (gcc 6.3.0 "cc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516")
C linker for the host machine: cc ld.bfd 2.28
Program python3 found: YES (/usr/bin/python3)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvume6s17
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvume6s17/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvume6s17/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -D_ISOC99_SOURCE 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -D_ISOC99_SOURCE: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__cn8g12
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__cn8g12/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp__cn8g12/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -D_GNU_SOURCE 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -D_GNU_SOURCE: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpumlg0jjh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpumlg0jjh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpumlg0jjh/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -D_LARGEFILE_SOURCE 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -D_LARGEFILE_SOURCE: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwoivqaca
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwoivqaca/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwoivqaca/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -DPIC 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -DPIC: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_4eb3w_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_4eb3w_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7_4eb3w_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-parentheses -Wparentheses 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-parentheses -Wparentheses: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi6kaknev
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi6kaknev/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi6kaknev/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-pointer-sign -Wpointer-sign 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-pointer-sign -Wpointer-sign: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6psqv282
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6psqv282/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6psqv282/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-switch -Wswitch 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-switch -Wswitch: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5j_7t8kz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5j_7t8kz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5j_7t8kz/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-format-truncation -Wformat-truncation 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wformat-truncation'; did you mean '-Wline-truncation'?

Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6dni9v_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6dni9v_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6dni9v_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-deprecated-declarations -Wdeprecated-declarations 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-deprecated-declarations -Wdeprecated-declarations: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe_elu4j4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe_elu4j4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe_elu4j4/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unused-function -Wunused-function 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcqxbf2s2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcqxbf2s2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcqxbf2s2/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-maybe-uninitialized -Wmaybe-uninitialized 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3kq5rdb7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3kq5rdb7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3kq5rdb7/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-discarded-qualifiers -Wdiscarded-qualifiers 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-discarded-qualifiers -Wdiscarded-qualifiers: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0hll9zt_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0hll9zt_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0hll9zt_/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-unused-variable -Wunused-variable 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_e8jrmf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_e8jrmf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_e8jrmf/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-bool-operation -Wbool-operation 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 cc: error: unrecognized command line option '-Wbool-operation'; did you mean '-Wall-deprecation'?

Compiler for C supports arguments -Wno-bool-operation -Wbool-operation: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u9dy652
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u9dy652/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7u9dy652/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-incompatible-pointer-types -Wincompatible-pointer-types 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-incompatible-pointer-types -Wincompatible-pointer-types: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2z93cjwn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2z93cjwn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2z93cjwn/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -Wno-address -Waddress 

Code:
 int i;

Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports arguments -Wno-address -Waddress: YES 
Dependency threads found: YES unknown (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1kfesb8a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1kfesb8a/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dev/bktr/ioctl_meteor.h")
          #error "Header 'dev/bktr/ioctl_meteor.h' could not be found"
         #endif
        #else
         #include <dev/bktr/ioctl_meteor.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1kfesb8a/testfile.c:4:12: error: #error "Header 'dev/bktr/ioctl_meteor.h' could not be found"
           #error "Header 'dev/bktr/ioctl_meteor.h' could not be found"
            ^~~~~

Has header "dev/bktr/ioctl_meteor.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp46xdhj3a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp46xdhj3a/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dev/bktr/ioctl_bt848.h")
          #error "Header 'dev/bktr/ioctl_bt848.h' could not be found"
         #endif
        #else
         #include <dev/bktr/ioctl_bt848.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp46xdhj3a/testfile.c:4:12: error: #error "Header 'dev/bktr/ioctl_bt848.h' could not be found"
           #error "Header 'dev/bktr/ioctl_bt848.h' could not be found"
            ^~~~~

Has header "dev/bktr/ioctl_bt848.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2t9juizy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2t9juizy/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("machine/ioctl_meteor.h")
          #error "Header 'machine/ioctl_meteor.h' could not be found"
         #endif
        #else
         #include <machine/ioctl_meteor.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2t9juizy/testfile.c:4:12: error: #error "Header 'machine/ioctl_meteor.h' could not be found"
           #error "Header 'machine/ioctl_meteor.h' could not be found"
            ^~~~~

Has header "machine/ioctl_meteor.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vni2_oo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vni2_oo/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("machine/ioctl_bt848.h")
          #error "Header 'machine/ioctl_bt848.h' could not be found"
         #endif
        #else
         #include <machine/ioctl_bt848.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5vni2_oo/testfile.c:4:12: error: #error "Header 'machine/ioctl_bt848.h' could not be found"
           #error "Header 'machine/ioctl_bt848.h' could not be found"
            ^~~~~

Has header "machine/ioctl_bt848.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpirtc5ibn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpirtc5ibn/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dev/video/meteor/ioctl_meteor.h")
          #error "Header 'dev/video/meteor/ioctl_meteor.h' could not be found"
         #endif
        #else
         #include <dev/video/meteor/ioctl_meteor.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpirtc5ibn/testfile.c:4:12: error: #error "Header 'dev/video/meteor/ioctl_meteor.h' could not be found"
           #error "Header 'dev/video/meteor/ioctl_meteor.h' could not be found"
            ^~~~~

Has header "dev/video/meteor/ioctl_meteor.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4dtstb80
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4dtstb80/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dev/video/bktr/ioctl_bt848.h")
          #error "Header 'dev/video/bktr/ioctl_bt848.h' could not be found"
         #endif
        #else
         #include <dev/video/bktr/ioctl_bt848.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4dtstb80/testfile.c:4:12: error: #error "Header 'dev/video/bktr/ioctl_bt848.h' could not be found"
           #error "Header 'dev/video/bktr/ioctl_bt848.h' could not be found"
            ^~~~~

Has header "dev/video/bktr/ioctl_bt848.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwm722esa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwm722esa/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("dev/ic/bt8xx.h")
          #error "Header 'dev/ic/bt8xx.h' could not be found"
         #endif
        #else
         #include <dev/ic/bt8xx.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwm722esa/testfile.c:4:12: error: #error "Header 'dev/ic/bt8xx.h' could not be found"
           #error "Header 'dev/ic/bt8xx.h' could not be found"
            ^~~~~

Has header "dev/ic/bt8xx.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgntuuri8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgntuuri8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgntuuri8/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <features.h>

#if !(defined __UCLIBC__)
#error "unsatisfied condition: defined __UCLIBC__"
#endif

int main(void) {
  return 0;
}

Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgntuuri8/testfile.c:5:2: error: #error "unsatisfied condition: defined __UCLIBC__"
 #error "unsatisfied condition: defined __UCLIBC__"
  ^~~~~

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0udtlc3c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0udtlc3c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0udtlc3c/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <features.h>

#if !(defined __GLIBC__)
#error "unsatisfied condition: defined __GLIBC__"
#endif

int main(void) {
  return 0;
}

Compiler stdout:
 
Compiler stderr:
 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3rmhwtf5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3rmhwtf5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3rmhwtf5/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -D_ISOC99_SOURCE -D_GNU_SOURCE -D_LARGEFILE_SOURCE -DPIC -Wno-parentheses -Wno-pointer-sign -Wno-switch -Wno-deprecated-declarations -Wno-unused-function -Wno-maybe-uninitialized -Wno-discarded-qualifiers -Wno-unused-variable -Wno-incompatible-pointer-types -Wno-address -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 

Code:
 #include <time.h>
#include <limits.h>

        #if defined __stub_localtime_r || defined __stub___localtime_r
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &localtime_r;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "localtime_r" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ol1kuhb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ol1kuhb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ol1kuhb/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
#include <stdlib.h>

#if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
#error "unsatisfied condition: defined(__PIC__) || defined(__pic__) || defined(PIC)"
#endif

int main(void) {
  return 0;
}

Compiler stdout:
 
Compiler stderr:
 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0efs8w5a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0efs8w5a/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("vdpau/vdpau.h")
          #error "Header 'vdpau/vdpau.h' could not be found"
         #endif
        #else
         #include <vdpau/vdpau.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0efs8w5a/testfile.c:4:12: error: #error "Header 'vdpau/vdpau.h' could not be found"
           #error "Header 'vdpau/vdpau.h' could not be found"
            ^~~~~

Has header "vdpau/vdpau.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc357gqvu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc357gqvu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpc357gqvu/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 

Code:
 
        #define nanosleep meson_disable_define_of_nanosleep
        
        #include <limits.h>
        #undef nanosleep
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char nanosleep (void);
        
        #if defined __stub_nanosleep || defined __stub___nanosleep
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return nanosleep ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "nanosleep" : YES 
Using cached compile:
Cached command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpebc9fe99/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("arpa/inet.h")
          #error "Header 'arpa/inet.h' could not be found"
         #endif
        #else
         #include <arpa/inet.h>
        #endif
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "arpa/inet.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmftowbtx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmftowbtx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmftowbtx/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/time.h>
#include<sys/resource.h>

        void bar(void) {
            struct rusage foo;
            foo.ru_maxrss;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct rusage" has member "ru_maxrss" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp980_ya3m
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp980_ya3m/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp980_ya3m/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 #include <sys/stat.h>
#define _BSD_SOURCE
        void bar(void) {
            struct stat foo;
            foo.st_mtim.tv_nsec;

        };
Compiler stdout:
 
Compiler stderr:
 
Checking whether type "struct stat" has member "st_mtim.tv_nsec" : YES 
Dependency alsa found: YES 1.1.3 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5biivs2d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include -I/usr/include/alsa /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5biivs2d/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("alsa/asoundlib.h")
          #error "Header 'alsa/asoundlib.h' could not be found"
         #endif
        #else
         #include <alsa/asoundlib.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "alsa/asoundlib.h" with dependency alsa: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe5d9tr4c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include -I/usr/include/alsa /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe5d9tr4c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe5d9tr4c/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -D_ISOC99_SOURCE -D_GNU_SOURCE -D_LARGEFILE_SOURCE -DPIC -Wno-parentheses -Wno-pointer-sign -Wno-switch -Wno-deprecated-declarations -Wno-unused-function -Wno-maybe-uninitialized -Wno-discarded-qualifiers -Wno-unused-variable -Wno-incompatible-pointer-types -Wno-address -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -Wl,--start-group /usr/lib/x86_64-linux-gnu/libasound.so -Wl,--end-group 

Code:
 #include <alsa/asoundlib.h>

#include <limits.h>

        #if defined __stub_snd_pcm_htimestamp || defined __stub___snd_pcm_htimestamp
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &snd_pcm_htimestamp;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "snd_pcm_htimestamp" with dependency alsa: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'ffnvcodec' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion ffnvcodec` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency ffnvcodec found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libgme' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion libgme` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libgme found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gnutls' with pkg-config executable '/usr/bin/pkg-config'
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --modversion gnutls` -> 1

CMake binary for MachineChoice.HOST is cached.

Determining dependency 'gnutls' with CMake executable '/usr/bin/cmake'
Try CMake generator: auto
Failed to find a fortran compiler for CMake. This might cause CMake to fail.
Called `/usr/bin/cmake --trace-expand -DNAME=gnutls -DARCHS=x86_64-linux-gnu .` in /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls -> 1
CMake failed for generator  and package gnutls with error code 1
OUT:
Running with expanded trace output on.
-- Configuring incomplete, errors occurred!
See also "/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/CMakeOutput.log".



ERR:
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeLists.txt(2):  cmake_minimum_required(VERSION 3.7.2 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeLists.txt(3):  project(MesonTemp LANGUAGES OBJC CXX C )
/usr/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake(5):  find_program(CMAKE_MAKE_PROGRAM NAMES gmake make smake )
/usr/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake(6):  mark_as_advanced(CMAKE_MAKE_PROGRAM )
/usr/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake(9):  if(NOT CMAKE_MAKE_PROGRAM AND CMAKE_HOST_APPLE )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(35):  if(CMAKE_HOST_UNIX )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(36):  find_program(CMAKE_UNAME uname /bin /usr/bin /usr/local/bin )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(37):  if(CMAKE_UNAME )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(38):  exec_program(uname ARGS -s OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_NAME )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(39):  exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(40):  if(CMAKE_HOST_SYSTEM_NAME MATCHES Linux|CYGWIN.*|Darwin|^GNU$ )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(41):  exec_program(uname ARGS -m OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR RETURN_VALUE val )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(43):  if(CMAKE_HOST_SYSTEM_NAME STREQUAL Darwin AND CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL Power Macintosh )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(60):  if(0 GREATER 0 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(63):  set(CMAKE_UNAME /bin/uname CACHE INTERNAL uname command )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(65):  string(REPLACE "  CMAKE_HOST_SYSTEM_PROCESSOR x86_64 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(66):  string(REPLACE / _ CMAKE_HOST_SYSTEM_PROCESSOR x86_64 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(83):  if(CMAKE_TOOLCHAIN_FILE )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(103):  if(CMAKE_SYSTEM_NAME )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(108):  elseif(CMAKE_VS_WINCE_VERSION )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(114):  else()
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(115):  set(CMAKE_SYSTEM_NAME Linux )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(116):  if(NOT DEFINED CMAKE_SYSTEM_VERSION )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(117):  set(CMAKE_SYSTEM_VERSION 4.19.0-hoge1 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(119):  set(CMAKE_SYSTEM_PROCESSOR x86_64 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(120):  set(CMAKE_CROSSCOMPILING FALSE )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(121):  set(PRESET_CMAKE_SYSTEM_NAME FALSE )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(124):  include(Platform/Linux-Determine OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(126):  macro(ADJUST_CMAKE_SYSTEM_VARIABLES _PREFIX )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(155):  ADJUST_CMAKE_SYSTEM_VARIABLES(CMAKE_SYSTEM )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(127):  if(NOT CMAKE_SYSTEM_NAME )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(132):  if(CMAKE_SYSTEM_NAME MATCHES BSD.OS )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(137):  if(CMAKE_SYSTEM_NAME MATCHES kFreeBSD )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(142):  if(CMAKE_SYSTEM_NAME MATCHES CYGWIN )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(147):  set(CMAKE_SYSTEM Linux )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(149):  if(CMAKE_SYSTEM_VERSION )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(150):  set(CMAKE_SYSTEM Linux-4.19.0-hoge1 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(156):  ADJUST_CMAKE_SYSTEM_VARIABLES(CMAKE_HOST_SYSTEM )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(127):  if(NOT CMAKE_HOST_SYSTEM_NAME )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(132):  if(CMAKE_HOST_SYSTEM_NAME MATCHES BSD.OS )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(137):  if(CMAKE_HOST_SYSTEM_NAME MATCHES kFreeBSD )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(142):  if(CMAKE_HOST_SYSTEM_NAME MATCHES CYGWIN )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(147):  set(CMAKE_HOST_SYSTEM Linux )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(149):  if(CMAKE_HOST_SYSTEM_VERSION )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(150):  set(CMAKE_HOST_SYSTEM Linux-4.19.0-hoge1 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(160):  if(CMAKE_BINARY_DIR )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(162):  if(PRESET_CMAKE_SYSTEM_NAME )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(167):  else()
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(168):  file(APPEND /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/CMakeOutput.log The system is: Linux - 4.19.0-hoge1 - x86_64
 )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(174):  set(INCLUDE_CMAKE_TOOLCHAIN_FILE_IF_REQUIRED )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(175):  if(CMAKE_TOOLCHAIN_FILE )
/usr/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake(180):  configure_file(/usr/share/cmake-3.7/Modules/CMakeSystem.cmake.in /home/makoto