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/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake @ONLY )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(1):  set(CMAKE_HOST_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(2):  set(CMAKE_HOST_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(3):  set(CMAKE_HOST_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(4):  set(CMAKE_HOST_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(8):  set(CMAKE_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(9):  set(CMAKE_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(10):  set(CMAKE_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(11):  set(CMAKE_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(13):  set(CMAKE_CROSSCOMPILING FALSE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(15):  set(CMAKE_SYSTEM_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(8):  include(Platform/Linux-Initialize OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(10):  set(CMAKE_SYSTEM_SPECIFIC_INITIALIZE_LOADED 1 )
CMake Error: Could not find cmake module file: CMakeDetermineOBJCCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER
CMake Error: Could not find cmake module file: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeOBJCCompiler.cmake
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(2):  set(CMAKE_CXX_COMPILER /usr/bin/c++ )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(3):  set(CMAKE_CXX_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(4):  set(CMAKE_CXX_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCXX 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(6):  set(CMAKE_CXX_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(7):  set(CMAKE_CXX_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(8):  set(CMAKE_CXX_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(9):  set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(10):  set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(2):  set(CMAKE_C_COMPILER /usr/bin/cc )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(3):  set(CMAKE_C_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(4):  set(CMAKE_C_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCC 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(6):  set(CMAKE_C_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(7):  set(CMAKE_C_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(8):  set(CMAKE_C_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(9):  set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(10):  set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(14):  set(APPLE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(15):  set(UNIX )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(16):  set(CYGWIN )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(17):  set(WIN32 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(21):  include(CMakeGenericSystem )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(5):  set(CMAKE_SHARED_LIBRARY_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(6):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(7):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(8):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(9):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(10):  set(CMAKE_INCLUDE_FLAG_C -I )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(11):  set(CMAKE_INCLUDE_FLAG_C_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(12):  set(CMAKE_LIBRARY_PATH_FLAG -L )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(13):  set(CMAKE_LIBRARY_PATH_TERMINATOR  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(14):  set(CMAKE_LINK_LIBRARY_FLAG -l )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(16):  set(CMAKE_LINK_LIBRARY_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(17):  set(CMAKE_STATIC_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(18):  set(CMAKE_STATIC_LIBRARY_SUFFIX .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(19):  set(CMAKE_SHARED_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(20):  set(CMAKE_SHARED_LIBRARY_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(21):  set(CMAKE_EXECUTABLE_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(22):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(24):  set(CMAKE_FIND_LIBRARY_PREFIXES lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(25):  set(CMAKE_FIND_LIBRARY_SUFFIXES .so .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(28):  set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(30):  set(CMAKE_SKIP_RPATH NO CACHE BOOL If set, runtime paths are not added when using shared libraries. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(32):  set(CMAKE_SKIP_INSTALL_RPATH NO CACHE BOOL If set, runtime paths are not added when installing shared libraries, but are added when building. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(35):  set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(37):  if(CMAKE_GENERATOR MATCHES Make )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(38):  set(CMAKE_COLOR_MAKEFILE ON CACHE BOOL Enable/Disable color output during build. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(41):  mark_as_advanced(CMAKE_COLOR_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(42):  if(DEFINED CMAKE_RULE_MESSAGES )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(45):  if(DEFINED CMAKE_TARGET_MESSAGES )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(48):  if(CMAKE_GENERATOR MATCHES Unix Makefiles )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(49):  set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL Enable/Disable output of compile commands during generation. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(52):  mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(56):  if(CMAKE_GENERATOR MATCHES Ninja )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(70):  function(GetDefaultWindowsPrefixBase var )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(156):  if(NOT DEFINED CMAKE_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(157):  set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT 1 )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(161):  if(CMAKE_HOST_UNIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(162):  set(CMAKE_INSTALL_PREFIX /usr/local CACHE PATH Install path prefix, prepended onto install directories. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(174):  set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Unspecified )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(176):  mark_as_advanced(CMAKE_SKIP_RPATH CMAKE_SKIP_INSTALL_RPATH CMAKE_VERBOSE_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(24):  set(CMAKE_SYSTEM_INFO_FILE Platform/Linux )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(26):  include(Platform/Linux OPTIONAL RESULT_VARIABLE _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(1):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(2):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(3):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(4):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(5):  set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(6):  set(CMAKE_EXE_EXPORTS_C_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(10):  set(CMAKE_PLATFORM_USES_PATH_WHEN_NO_SONAME 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(16):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_MODULE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_EXE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(29):  if(DEFINED CMAKE_INSTALL_SO_NO_EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(34):  else()
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(39):  if(EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(40):  set(CMAKE_INSTALL_SO_NO_EXE 1 CACHE INTERNAL Install .so files without execute permission. )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(49):  set(CMAKE_LIBRARY_ARCHITECTURE_REGEX [a-z0-9_]+(-[a-z0-9_]+)?-linux-gnu[a-z0-9_]* )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(51):  include(Platform/UnixPaths )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(10):  if(__UNIX_PATHS_INCLUDED )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(13):  set(__UNIX_PATHS_INCLUDED 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(15):  set(UNIX 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(19):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share/cmake-3.7 PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(20):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(24):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local /usr / /usr )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(31):  if(NOT CMAKE_FIND_NO_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(32):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(36):  if(CMAKE_STAGING_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(45):  list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /usr/include/w32api /usr/X11R6/include /usr/include/X11 /usr/pkg/include /opt/csw/include /opt/include /usr/openwin/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(58):  list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /usr/lib/w32api /usr/X11R6/lib /usr/lib/X11 /usr/pkg/lib /opt/csw/lib /opt/lib /usr/openwin/lib )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(71):  list(APPEND CMAKE_SYSTEM_PROGRAM_PATH /usr/pkg/bin )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(75):  list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(79):  list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(82):  list(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(87):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(88):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(55):  if(NOT CMAKE_CROSSCOMPILING AND EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(56):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS FALSE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(57):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(28):  if(NOT _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(43):  if(CMAKE_EXTRA_GENERATOR )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(53):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(54):  set(CMAKE_SHARED_MODULE_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(55):  set(CMAKE_SHARED_MODULE_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(59):  set(CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED 1 )
CMake Error at CMakeLists.txt:3 (project):
  No CMAKE_OBJC_COMPILER could be found.

  Tell CMake where to find the compiler by setting the CMake cache entry
  CMAKE_OBJC_COMPILER to the full path to the compiler, or to the compiler
  name if it is in the PATH.


CMake Error: Could not find cmake module file: CMakeOBJCInformation.cmake
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(16):  set(CMAKE_CXX_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(24):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(25):  include(Compiler/GNU-CXX OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(9):  set(__COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(11):  macro(__compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(2):  __compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_CXX_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_CXX_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_CXX -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_CXX_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_CXX_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_CXX_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_CXX_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_CXX_CREATE_ASSEMBLY_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(4):  if(WIN32 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(8):  else()
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(9):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.2 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(14):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(20):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(23):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(29):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(32):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(37):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(49):  macro(cmake_record_cxx_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/c++ NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(31):  if(CMAKE_COMPILER_IS_GNUCXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(32):  set(CMAKE_BASE_NAME g++ )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(37):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(38):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(39):  include(Platform/Linux-GNU-CXX-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(41):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(42):  include(Platform/Linux-g++-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(47):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(48):  include(Platform/Linux-GNU-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(9):  set(__LINUX_COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(11):  macro(__linux_compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(2):  __linux_compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(50):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(56):  if(CMAKE_CXX_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(64):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(68):  if(CMAKE_CXX_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(81):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(87):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(97):  if(NOT CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(101):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(105):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(106):  set(CMAKE_CXX_COMPILE_OPTIONS_PIE  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(109):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_DLL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(110):  set(CMAKE_CXX_COMPILE_OPTIONS_DLL  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(113):  if(NOT CMAKE_SHARED_LIBRARY_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(117):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(121):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(122):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(125):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(126):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(129):  if(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(130):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(133):  if(NOT DEFINED CMAKE_EXE_EXPORTS_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(134):  set(CMAKE_EXE_EXPORTS_CXX_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(137):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(138):  set(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(141):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(142):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(145):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(146):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(149):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(150):  set(CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(153):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(154):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(157):  if(NOT CMAKE_INCLUDE_FLAG_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(158):  set(CMAKE_INCLUDE_FLAG_CXX -I )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(161):  if(NOT CMAKE_INCLUDE_FLAG_SEP_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(162):  set(CMAKE_INCLUDE_FLAG_SEP_CXX  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(168):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(169):  set(CMAKE_SHARED_MODULE_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(170):  set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(174):  if(NOT CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(178):  if(NOT CMAKE_SHARED_MODULE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(183):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_EXE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_EXE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(198):  set(CMAKE_CXX_FLAGS_INIT    )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(200):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP    CMAKE_CXX_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -g CMAKE_CXX_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O3 -DNDEBUG CMAKE_CXX_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -Os -DNDEBUG CMAKE_CXX_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(204):  set(CMAKE_CXX_FLAGS  CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(207):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(208):  set(CMAKE_CXX_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(210):  set(CMAKE_CXX_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(212):  set(CMAKE_CXX_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(214):  set(CMAKE_CXX_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(219):  if(CMAKE_CXX_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(225):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/make )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(254):  if(NOT CMAKE_CXX_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(255):  set(CMAKE_CXX_CREATE_SHARED_LIBRARY <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(260):  if(NOT CMAKE_CXX_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(261):  set(CMAKE_CXX_CREATE_SHARED_MODULE <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(267):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(268):  set(CMAKE_CXX_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(270):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(271):  set(CMAKE_CXX_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(273):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(274):  set(CMAKE_CXX_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(278):  if(NOT CMAKE_CXX_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(279):  set(CMAKE_CXX_COMPILE_OBJECT <CMAKE_CXX_COMPILER>  <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(283):  if(NOT CMAKE_CXX_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(284):  set(CMAKE_CXX_LINK_EXECUTABLE <CMAKE_CXX_COMPILER>  <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(288):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_DEBUG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(296):  set(CMAKE_CXX_INFORMATION_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(16):  set(CMAKE_C_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(24):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(25):  include(Compiler/GNU-C OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(2):  __compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_C_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_C_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_C_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_C -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_C_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_C_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_C_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_C_CREATE_PREPROCESSED_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_C_CREATE_ASSEMBLY_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_C -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(4):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(7):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(12):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(17):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(20):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.6 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(25):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(42):  macro(cmake_record_c_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/cc NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(30):  if(CMAKE_COMPILER_IS_GNUCC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(31):  set(CMAKE_BASE_NAME gcc )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(36):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(37):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(38):  include(Platform/Linux-GNU-C-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(40):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(41):  include(Platform/Linux-gcc-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(47):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(48):  include(Platform/Linux-GNU-C OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(2):  __linux_compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(51):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(57):  if(CMAKE_C_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(65):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(69):  if(CMAKE_C_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(82):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(88):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_C )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(98):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(99):  set(CMAKE_SHARED_MODULE_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(100):  set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(103):  set(CMAKE_C_FLAGS_INIT -I/usr/src/linux-headers-4.19.0-hoge/include   )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(105):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP -I/usr/src/linux-headers-4.19.0-hoge/include   CMAKE_C_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -g CMAKE_C_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O3 -DNDEBUG CMAKE_C_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -Os -DNDEBUG CMAKE_C_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O2 -g -DNDEBUG CMAKE_C_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(109):  set(CMAKE_C_FLAGS -I/usr/src/linux-headers-4.19.0-hoge/include CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(112):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(114):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(115):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(118):  set(CMAKE_C_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(120):  set(CMAKE_C_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(122):  set(CMAKE_C_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(124):  set(CMAKE_C_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(128):  if(CMAKE_C_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(134):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/make )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(164):  if(NOT CMAKE_C_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(165):  set(CMAKE_C_CREATE_SHARED_LIBRARY <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(170):  if(NOT CMAKE_C_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(171):  set(CMAKE_C_CREATE_SHARED_MODULE <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(176):  if(NOT DEFINED CMAKE_C_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(177):  set(CMAKE_C_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(179):  if(NOT DEFINED CMAKE_C_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(180):  set(CMAKE_C_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(182):  if(NOT DEFINED CMAKE_C_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(183):  set(CMAKE_C_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(187):  if(NOT CMAKE_C_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(188):  set(CMAKE_C_COMPILE_OBJECT <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT>   -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(192):  if(NOT CMAKE_C_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(193):  set(CMAKE_C_LINK_EXECUTABLE <CMAKE_C_COMPILER> <FLAGS> <CMAKE_C_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(197):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(198):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(201):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(202):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(205):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(206):  set(CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(209):  mark_as_advanced(CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(216):  set(CMAKE_C_INFORMATION_LOADED 1 )
CMake Error: CMAKE_OBJC_COMPILER not set, after EnableLanguage



Try CMake generator: auto
Failed to find a fortran compiler for CMake. This might cause CMake to fail.
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/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake @ONLY )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(1):  set(CMAKE_HOST_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(2):  set(CMAKE_HOST_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(3):  set(CMAKE_HOST_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(4):  set(CMAKE_HOST_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(8):  set(CMAKE_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(9):  set(CMAKE_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(10):  set(CMAKE_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(11):  set(CMAKE_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(13):  set(CMAKE_CROSSCOMPILING FALSE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(15):  set(CMAKE_SYSTEM_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(8):  include(Platform/Linux-Initialize OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(10):  set(CMAKE_SYSTEM_SPECIFIC_INITIALIZE_LOADED 1 )
CMake Error: Could not find cmake module file: CMakeDetermineOBJCCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER
CMake Error: Could not find cmake module file: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeOBJCCompiler.cmake
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(2):  set(CMAKE_CXX_COMPILER /usr/bin/c++ )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(3):  set(CMAKE_CXX_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(4):  set(CMAKE_CXX_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCXX 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(6):  set(CMAKE_CXX_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(7):  set(CMAKE_CXX_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(8):  set(CMAKE_CXX_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(9):  set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(10):  set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(2):  set(CMAKE_C_COMPILER /usr/bin/cc )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(3):  set(CMAKE_C_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(4):  set(CMAKE_C_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCC 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(6):  set(CMAKE_C_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(7):  set(CMAKE_C_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(8):  set(CMAKE_C_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(9):  set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(10):  set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(14):  set(APPLE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(15):  set(UNIX )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(16):  set(CYGWIN )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(17):  set(WIN32 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(21):  include(CMakeGenericSystem )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(5):  set(CMAKE_SHARED_LIBRARY_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(6):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(7):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(8):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(9):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(10):  set(CMAKE_INCLUDE_FLAG_C -I )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(11):  set(CMAKE_INCLUDE_FLAG_C_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(12):  set(CMAKE_LIBRARY_PATH_FLAG -L )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(13):  set(CMAKE_LIBRARY_PATH_TERMINATOR  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(14):  set(CMAKE_LINK_LIBRARY_FLAG -l )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(16):  set(CMAKE_LINK_LIBRARY_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(17):  set(CMAKE_STATIC_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(18):  set(CMAKE_STATIC_LIBRARY_SUFFIX .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(19):  set(CMAKE_SHARED_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(20):  set(CMAKE_SHARED_LIBRARY_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(21):  set(CMAKE_EXECUTABLE_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(22):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(24):  set(CMAKE_FIND_LIBRARY_PREFIXES lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(25):  set(CMAKE_FIND_LIBRARY_SUFFIXES .so .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(28):  set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(30):  set(CMAKE_SKIP_RPATH NO CACHE BOOL If set, runtime paths are not added when using shared libraries. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(32):  set(CMAKE_SKIP_INSTALL_RPATH NO CACHE BOOL If set, runtime paths are not added when installing shared libraries, but are added when building. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(35):  set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(37):  if(CMAKE_GENERATOR MATCHES Make )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(38):  set(CMAKE_COLOR_MAKEFILE ON CACHE BOOL Enable/Disable color output during build. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(41):  mark_as_advanced(CMAKE_COLOR_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(42):  if(DEFINED CMAKE_RULE_MESSAGES )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(45):  if(DEFINED CMAKE_TARGET_MESSAGES )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(48):  if(CMAKE_GENERATOR MATCHES Unix Makefiles )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(49):  set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL Enable/Disable output of compile commands during generation. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(52):  mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(56):  if(CMAKE_GENERATOR MATCHES Ninja )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(70):  function(GetDefaultWindowsPrefixBase var )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(156):  if(NOT DEFINED CMAKE_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(157):  set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT 1 )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(161):  if(CMAKE_HOST_UNIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(162):  set(CMAKE_INSTALL_PREFIX /usr/local CACHE PATH Install path prefix, prepended onto install directories. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(174):  set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Unspecified )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(176):  mark_as_advanced(CMAKE_SKIP_RPATH CMAKE_SKIP_INSTALL_RPATH CMAKE_VERBOSE_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(24):  set(CMAKE_SYSTEM_INFO_FILE Platform/Linux )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(26):  include(Platform/Linux OPTIONAL RESULT_VARIABLE _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(1):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(2):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(3):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(4):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(5):  set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(6):  set(CMAKE_EXE_EXPORTS_C_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(10):  set(CMAKE_PLATFORM_USES_PATH_WHEN_NO_SONAME 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(16):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_MODULE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_EXE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(29):  if(DEFINED CMAKE_INSTALL_SO_NO_EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(34):  else()
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(39):  if(EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(40):  set(CMAKE_INSTALL_SO_NO_EXE 1 CACHE INTERNAL Install .so files without execute permission. )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(49):  set(CMAKE_LIBRARY_ARCHITECTURE_REGEX [a-z0-9_]+(-[a-z0-9_]+)?-linux-gnu[a-z0-9_]* )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(51):  include(Platform/UnixPaths )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(10):  if(__UNIX_PATHS_INCLUDED )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(13):  set(__UNIX_PATHS_INCLUDED 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(15):  set(UNIX 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(19):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share/cmake-3.7 PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(20):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(24):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local /usr / /usr )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(31):  if(NOT CMAKE_FIND_NO_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(32):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(36):  if(CMAKE_STAGING_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(45):  list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /usr/include/w32api /usr/X11R6/include /usr/include/X11 /usr/pkg/include /opt/csw/include /opt/include /usr/openwin/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(58):  list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /usr/lib/w32api /usr/X11R6/lib /usr/lib/X11 /usr/pkg/lib /opt/csw/lib /opt/lib /usr/openwin/lib )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(71):  list(APPEND CMAKE_SYSTEM_PROGRAM_PATH /usr/pkg/bin )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(75):  list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(79):  list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(82):  list(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(87):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(88):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(55):  if(NOT CMAKE_CROSSCOMPILING AND EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(56):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS FALSE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(57):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(28):  if(NOT _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(43):  if(CMAKE_EXTRA_GENERATOR )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(53):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(54):  set(CMAKE_SHARED_MODULE_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(55):  set(CMAKE_SHARED_MODULE_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(59):  set(CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED 1 )
CMake Error at CMakeLists.txt:3 (project):
  No CMAKE_OBJC_COMPILER could be found.

  Tell CMake where to find the compiler by setting the CMake cache entry
  CMAKE_OBJC_COMPILER to the full path to the compiler, or to the compiler
  name if it is in the PATH.


CMake Error: Could not find cmake module file: CMakeOBJCInformation.cmake
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(16):  set(CMAKE_CXX_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(24):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(25):  include(Compiler/GNU-CXX OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(9):  set(__COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(11):  macro(__compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(2):  __compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_CXX_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_CXX_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_CXX -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_CXX_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_CXX_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_CXX_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_CXX_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_CXX_CREATE_ASSEMBLY_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(4):  if(WIN32 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(8):  else()
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(9):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.2 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(14):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(20):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(23):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(29):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(32):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(37):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(49):  macro(cmake_record_cxx_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/c++ NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(31):  if(CMAKE_COMPILER_IS_GNUCXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(32):  set(CMAKE_BASE_NAME g++ )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(37):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(38):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(39):  include(Platform/Linux-GNU-CXX-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(41):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(42):  include(Platform/Linux-g++-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(47):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(48):  include(Platform/Linux-GNU-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(9):  set(__LINUX_COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(11):  macro(__linux_compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(2):  __linux_compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(50):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(56):  if(CMAKE_CXX_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(64):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(68):  if(CMAKE_CXX_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(81):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(87):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(97):  if(NOT CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(101):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(105):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(106):  set(CMAKE_CXX_COMPILE_OPTIONS_PIE  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(109):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_DLL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(110):  set(CMAKE_CXX_COMPILE_OPTIONS_DLL  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(113):  if(NOT CMAKE_SHARED_LIBRARY_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(117):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(121):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(122):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(125):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(126):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(129):  if(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(130):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(133):  if(NOT DEFINED CMAKE_EXE_EXPORTS_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(134):  set(CMAKE_EXE_EXPORTS_CXX_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(137):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(138):  set(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(141):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(142):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(145):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(146):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(149):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(150):  set(CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(153):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(154):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(157):  if(NOT CMAKE_INCLUDE_FLAG_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(158):  set(CMAKE_INCLUDE_FLAG_CXX -I )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(161):  if(NOT CMAKE_INCLUDE_FLAG_SEP_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(162):  set(CMAKE_INCLUDE_FLAG_SEP_CXX  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(168):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(169):  set(CMAKE_SHARED_MODULE_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(170):  set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(174):  if(NOT CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(178):  if(NOT CMAKE_SHARED_MODULE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(183):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_EXE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_EXE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(198):  set(CMAKE_CXX_FLAGS_INIT    )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(200):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP    CMAKE_CXX_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -g CMAKE_CXX_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O3 -DNDEBUG CMAKE_CXX_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -Os -DNDEBUG CMAKE_CXX_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(204):  set(CMAKE_CXX_FLAGS  CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(207):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(208):  set(CMAKE_CXX_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(210):  set(CMAKE_CXX_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(212):  set(CMAKE_CXX_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(214):  set(CMAKE_CXX_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(219):  if(CMAKE_CXX_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(225):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/make )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(254):  if(NOT CMAKE_CXX_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(255):  set(CMAKE_CXX_CREATE_SHARED_LIBRARY <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(260):  if(NOT CMAKE_CXX_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(261):  set(CMAKE_CXX_CREATE_SHARED_MODULE <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(267):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(268):  set(CMAKE_CXX_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(270):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(271):  set(CMAKE_CXX_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(273):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(274):  set(CMAKE_CXX_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(278):  if(NOT CMAKE_CXX_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(279):  set(CMAKE_CXX_COMPILE_OBJECT <CMAKE_CXX_COMPILER>  <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(283):  if(NOT CMAKE_CXX_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(284):  set(CMAKE_CXX_LINK_EXECUTABLE <CMAKE_CXX_COMPILER>  <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(288):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_DEBUG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(296):  set(CMAKE_CXX_INFORMATION_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(16):  set(CMAKE_C_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(24):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(25):  include(Compiler/GNU-C OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(2):  __compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_C_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_C_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_C_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_C -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_C_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_C_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_C_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_C_CREATE_PREPROCESSED_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_C_CREATE_ASSEMBLY_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_C -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(4):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(7):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(12):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(17):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(20):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.6 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(25):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(42):  macro(cmake_record_c_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/cc NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(30):  if(CMAKE_COMPILER_IS_GNUCC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(31):  set(CMAKE_BASE_NAME gcc )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(36):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(37):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(38):  include(Platform/Linux-GNU-C-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(40):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(41):  include(Platform/Linux-gcc-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(47):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(48):  include(Platform/Linux-GNU-C OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(2):  __linux_compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(51):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(57):  if(CMAKE_C_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(65):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(69):  if(CMAKE_C_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(82):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(88):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_C )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(98):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(99):  set(CMAKE_SHARED_MODULE_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(100):  set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(103):  set(CMAKE_C_FLAGS_INIT -I/usr/src/linux-headers-4.19.0-hoge/include   )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(105):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP -I/usr/src/linux-headers-4.19.0-hoge/include   CMAKE_C_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -g CMAKE_C_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O3 -DNDEBUG CMAKE_C_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -Os -DNDEBUG CMAKE_C_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O2 -g -DNDEBUG CMAKE_C_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(109):  set(CMAKE_C_FLAGS -I/usr/src/linux-headers-4.19.0-hoge/include CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(112):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(114):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(115):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(118):  set(CMAKE_C_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(120):  set(CMAKE_C_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(122):  set(CMAKE_C_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(124):  set(CMAKE_C_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(128):  if(CMAKE_C_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(134):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/make )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(164):  if(NOT CMAKE_C_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(165):  set(CMAKE_C_CREATE_SHARED_LIBRARY <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(170):  if(NOT CMAKE_C_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(171):  set(CMAKE_C_CREATE_SHARED_MODULE <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(176):  if(NOT DEFINED CMAKE_C_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(177):  set(CMAKE_C_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(179):  if(NOT DEFINED CMAKE_C_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(180):  set(CMAKE_C_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(182):  if(NOT DEFINED CMAKE_C_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(183):  set(CMAKE_C_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(187):  if(NOT CMAKE_C_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(188):  set(CMAKE_C_COMPILE_OBJECT <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT>   -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(192):  if(NOT CMAKE_C_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(193):  set(CMAKE_C_LINK_EXECUTABLE <CMAKE_C_COMPILER> <FLAGS> <CMAKE_C_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(197):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(198):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(201):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(202):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(205):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(206):  set(CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(209):  mark_as_advanced(CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(216):  set(CMAKE_C_INFORMATION_LOADED 1 )
CMake Error: CMAKE_OBJC_COMPILER not set, after EnableLanguage



Try CMake generator: Ninja
Failed to find a fortran compiler for CMake. This might cause CMake to fail.
Called `/usr/bin/cmake -G Ninja --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 Ninja 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/CMakeNinjaFindMake.cmake(5):  find_program(CMAKE_MAKE_PROGRAM NAMES ninja-build ninja DOC Program used to build from build.ninja files. )
/usr/share/cmake-3.7/Modules/CMakeNinjaFindMake.cmake(8):  mark_as_advanced(CMAKE_MAKE_PROGRAM )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(1):  set(CMAKE_HOST_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(2):  set(CMAKE_HOST_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(3):  set(CMAKE_HOST_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(4):  set(CMAKE_HOST_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(8):  set(CMAKE_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(9):  set(CMAKE_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(10):  set(CMAKE_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(11):  set(CMAKE_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(13):  set(CMAKE_CROSSCOMPILING FALSE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(15):  set(CMAKE_SYSTEM_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(8):  include(Platform/Linux-Initialize OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(10):  set(CMAKE_SYSTEM_SPECIFIC_INITIALIZE_LOADED 1 )
CMake Error: Could not find cmake module file: CMakeDetermineOBJCCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER
CMake Error: Could not find cmake module file: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeOBJCCompiler.cmake
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(2):  set(CMAKE_CXX_COMPILER /usr/bin/c++ )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(3):  set(CMAKE_CXX_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(4):  set(CMAKE_CXX_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCXX 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(6):  set(CMAKE_CXX_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(7):  set(CMAKE_CXX_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(8):  set(CMAKE_CXX_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(9):  set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(10):  set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(2):  set(CMAKE_C_COMPILER /usr/bin/cc )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(3):  set(CMAKE_C_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(4):  set(CMAKE_C_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCC 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(6):  set(CMAKE_C_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(7):  set(CMAKE_C_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(8):  set(CMAKE_C_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(9):  set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(10):  set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(14):  set(APPLE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(15):  set(UNIX )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(16):  set(CYGWIN )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(17):  set(WIN32 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(21):  include(CMakeGenericSystem )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(5):  set(CMAKE_SHARED_LIBRARY_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(6):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(7):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(8):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(9):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(10):  set(CMAKE_INCLUDE_FLAG_C -I )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(11):  set(CMAKE_INCLUDE_FLAG_C_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(12):  set(CMAKE_LIBRARY_PATH_FLAG -L )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(13):  set(CMAKE_LIBRARY_PATH_TERMINATOR  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(14):  set(CMAKE_LINK_LIBRARY_FLAG -l )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(16):  set(CMAKE_LINK_LIBRARY_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(17):  set(CMAKE_STATIC_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(18):  set(CMAKE_STATIC_LIBRARY_SUFFIX .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(19):  set(CMAKE_SHARED_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(20):  set(CMAKE_SHARED_LIBRARY_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(21):  set(CMAKE_EXECUTABLE_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(22):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(24):  set(CMAKE_FIND_LIBRARY_PREFIXES lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(25):  set(CMAKE_FIND_LIBRARY_SUFFIXES .so .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(28):  set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(30):  set(CMAKE_SKIP_RPATH NO CACHE BOOL If set, runtime paths are not added when using shared libraries. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(32):  set(CMAKE_SKIP_INSTALL_RPATH NO CACHE BOOL If set, runtime paths are not added when installing shared libraries, but are added when building. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(35):  set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(37):  if(CMAKE_GENERATOR MATCHES Make )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(56):  if(CMAKE_GENERATOR MATCHES Ninja )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(57):  set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL Enable/Disable output of compile commands during generation. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(60):  mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(70):  function(GetDefaultWindowsPrefixBase var )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(156):  if(NOT DEFINED CMAKE_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(157):  set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT 1 )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(161):  if(CMAKE_HOST_UNIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(162):  set(CMAKE_INSTALL_PREFIX /usr/local CACHE PATH Install path prefix, prepended onto install directories. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(174):  set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Unspecified )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(176):  mark_as_advanced(CMAKE_SKIP_RPATH CMAKE_SKIP_INSTALL_RPATH CMAKE_VERBOSE_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(24):  set(CMAKE_SYSTEM_INFO_FILE Platform/Linux )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(26):  include(Platform/Linux OPTIONAL RESULT_VARIABLE _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(1):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(2):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(3):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(4):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(5):  set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(6):  set(CMAKE_EXE_EXPORTS_C_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(10):  set(CMAKE_PLATFORM_USES_PATH_WHEN_NO_SONAME 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(16):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_MODULE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_EXE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(29):  if(DEFINED CMAKE_INSTALL_SO_NO_EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(34):  else()
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(39):  if(EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(40):  set(CMAKE_INSTALL_SO_NO_EXE 1 CACHE INTERNAL Install .so files without execute permission. )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(49):  set(CMAKE_LIBRARY_ARCHITECTURE_REGEX [a-z0-9_]+(-[a-z0-9_]+)?-linux-gnu[a-z0-9_]* )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(51):  include(Platform/UnixPaths )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(10):  if(__UNIX_PATHS_INCLUDED )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(13):  set(__UNIX_PATHS_INCLUDED 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(15):  set(UNIX 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(19):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share/cmake-3.7 PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(20):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(24):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local /usr / /usr )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(31):  if(NOT CMAKE_FIND_NO_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(32):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(36):  if(CMAKE_STAGING_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(45):  list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /usr/include/w32api /usr/X11R6/include /usr/include/X11 /usr/pkg/include /opt/csw/include /opt/include /usr/openwin/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(58):  list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /usr/lib/w32api /usr/X11R6/lib /usr/lib/X11 /usr/pkg/lib /opt/csw/lib /opt/lib /usr/openwin/lib )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(71):  list(APPEND CMAKE_SYSTEM_PROGRAM_PATH /usr/pkg/bin )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(75):  list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(79):  list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(82):  list(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(87):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(88):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(55):  if(NOT CMAKE_CROSSCOMPILING AND EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(56):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS FALSE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(57):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(28):  if(NOT _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(43):  if(CMAKE_EXTRA_GENERATOR )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(53):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(54):  set(CMAKE_SHARED_MODULE_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(55):  set(CMAKE_SHARED_MODULE_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(59):  set(CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED 1 )
CMake Error at CMakeLists.txt:3 (project):
  No CMAKE_OBJC_COMPILER could be found.

  Tell CMake where to find the compiler by setting the CMake cache entry
  CMAKE_OBJC_COMPILER to the full path to the compiler, or to the compiler
  name if it is in the PATH.


CMake Error: Could not find cmake module file: CMakeOBJCInformation.cmake
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(16):  set(CMAKE_CXX_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(24):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(25):  include(Compiler/GNU-CXX OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(9):  set(__COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(11):  macro(__compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(2):  __compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_CXX_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_CXX_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_CXX -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_CXX_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_CXX_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_CXX_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_CXX_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_CXX_CREATE_ASSEMBLY_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(4):  if(WIN32 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(8):  else()
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(9):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.2 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(14):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(20):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(23):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(29):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(32):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(37):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(49):  macro(cmake_record_cxx_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/c++ NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(31):  if(CMAKE_COMPILER_IS_GNUCXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(32):  set(CMAKE_BASE_NAME g++ )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(37):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(38):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(39):  include(Platform/Linux-GNU-CXX-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(41):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(42):  include(Platform/Linux-g++-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(47):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(48):  include(Platform/Linux-GNU-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(9):  set(__LINUX_COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(11):  macro(__linux_compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(2):  __linux_compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(50):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(56):  if(CMAKE_CXX_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(64):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(68):  if(CMAKE_CXX_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(81):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(87):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(97):  if(NOT CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(101):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(105):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(106):  set(CMAKE_CXX_COMPILE_OPTIONS_PIE  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(109):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_DLL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(110):  set(CMAKE_CXX_COMPILE_OPTIONS_DLL  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(113):  if(NOT CMAKE_SHARED_LIBRARY_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(117):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(121):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(122):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(125):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(126):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(129):  if(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(130):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(133):  if(NOT DEFINED CMAKE_EXE_EXPORTS_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(134):  set(CMAKE_EXE_EXPORTS_CXX_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(137):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(138):  set(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(141):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(142):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(145):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(146):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(149):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(150):  set(CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(153):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(154):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(157):  if(NOT CMAKE_INCLUDE_FLAG_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(158):  set(CMAKE_INCLUDE_FLAG_CXX -I )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(161):  if(NOT CMAKE_INCLUDE_FLAG_SEP_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(162):  set(CMAKE_INCLUDE_FLAG_SEP_CXX  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(168):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(169):  set(CMAKE_SHARED_MODULE_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(170):  set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(174):  if(NOT CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(178):  if(NOT CMAKE_SHARED_MODULE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(183):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_EXE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_EXE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(198):  set(CMAKE_CXX_FLAGS_INIT    )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(200):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP    CMAKE_CXX_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -g CMAKE_CXX_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O3 -DNDEBUG CMAKE_CXX_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -Os -DNDEBUG CMAKE_CXX_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(204):  set(CMAKE_CXX_FLAGS  CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(207):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(208):  set(CMAKE_CXX_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(210):  set(CMAKE_CXX_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(212):  set(CMAKE_CXX_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(214):  set(CMAKE_CXX_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(219):  if(CMAKE_CXX_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(225):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/ninja )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(254):  if(NOT CMAKE_CXX_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(255):  set(CMAKE_CXX_CREATE_SHARED_LIBRARY <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(260):  if(NOT CMAKE_CXX_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(261):  set(CMAKE_CXX_CREATE_SHARED_MODULE <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(267):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(268):  set(CMAKE_CXX_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(270):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(271):  set(CMAKE_CXX_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(273):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(274):  set(CMAKE_CXX_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(278):  if(NOT CMAKE_CXX_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(279):  set(CMAKE_CXX_COMPILE_OBJECT <CMAKE_CXX_COMPILER>  <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(283):  if(NOT CMAKE_CXX_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(284):  set(CMAKE_CXX_LINK_EXECUTABLE <CMAKE_CXX_COMPILER>  <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(288):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_DEBUG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(296):  set(CMAKE_CXX_INFORMATION_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(16):  set(CMAKE_C_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(24):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(25):  include(Compiler/GNU-C OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(2):  __compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_C_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_C_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_C_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_C -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_C_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_C_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_C_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_C_CREATE_PREPROCESSED_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_C_CREATE_ASSEMBLY_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_C -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(4):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(7):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(12):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(17):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(20):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.6 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(25):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(42):  macro(cmake_record_c_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/cc NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(30):  if(CMAKE_COMPILER_IS_GNUCC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(31):  set(CMAKE_BASE_NAME gcc )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(36):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(37):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(38):  include(Platform/Linux-GNU-C-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(40):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(41):  include(Platform/Linux-gcc-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(47):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(48):  include(Platform/Linux-GNU-C OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(2):  __linux_compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(51):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(57):  if(CMAKE_C_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(65):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(69):  if(CMAKE_C_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(82):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(88):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_C )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(98):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(99):  set(CMAKE_SHARED_MODULE_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(100):  set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(103):  set(CMAKE_C_FLAGS_INIT -I/usr/src/linux-headers-4.19.0-hoge/include   )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(105):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP -I/usr/src/linux-headers-4.19.0-hoge/include   CMAKE_C_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -g CMAKE_C_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O3 -DNDEBUG CMAKE_C_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -Os -DNDEBUG CMAKE_C_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O2 -g -DNDEBUG CMAKE_C_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(109):  set(CMAKE_C_FLAGS -I/usr/src/linux-headers-4.19.0-hoge/include CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(112):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(114):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(115):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(118):  set(CMAKE_C_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(120):  set(CMAKE_C_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(122):  set(CMAKE_C_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(124):  set(CMAKE_C_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(128):  if(CMAKE_C_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(134):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/ninja )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(164):  if(NOT CMAKE_C_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(165):  set(CMAKE_C_CREATE_SHARED_LIBRARY <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(170):  if(NOT CMAKE_C_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(171):  set(CMAKE_C_CREATE_SHARED_MODULE <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(176):  if(NOT DEFINED CMAKE_C_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(177):  set(CMAKE_C_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(179):  if(NOT DEFINED CMAKE_C_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(180):  set(CMAKE_C_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(182):  if(NOT DEFINED CMAKE_C_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(183):  set(CMAKE_C_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(187):  if(NOT CMAKE_C_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(188):  set(CMAKE_C_COMPILE_OBJECT <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT>   -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(192):  if(NOT CMAKE_C_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(193):  set(CMAKE_C_LINK_EXECUTABLE <CMAKE_C_COMPILER> <FLAGS> <CMAKE_C_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(197):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(198):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(201):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(202):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(205):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(206):  set(CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(209):  mark_as_advanced(CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(216):  set(CMAKE_C_INFORMATION_LOADED 1 )
CMake Error: CMAKE_OBJC_COMPILER not set, after EnableLanguage



Try CMake generator: Unix Makefiles
Failed to find a fortran compiler for CMake. This might cause CMake to fail.
Called `/usr/bin/cmake -G Unix Makefiles --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 Unix Makefiles 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 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(1):  set(CMAKE_HOST_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(2):  set(CMAKE_HOST_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(3):  set(CMAKE_HOST_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(4):  set(CMAKE_HOST_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(8):  set(CMAKE_SYSTEM Linux-4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(9):  set(CMAKE_SYSTEM_NAME Linux )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(10):  set(CMAKE_SYSTEM_VERSION 4.19.0-hoge1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(11):  set(CMAKE_SYSTEM_PROCESSOR x86_64 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(13):  set(CMAKE_CROSSCOMPILING FALSE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeSystem.cmake(15):  set(CMAKE_SYSTEM_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(8):  include(Platform/Linux-Initialize OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake(10):  set(CMAKE_SYSTEM_SPECIFIC_INITIALIZE_LOADED 1 )
CMake Error: Could not find cmake module file: CMakeDetermineOBJCCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_OBJC_COMPILER
CMake Error: Could not find cmake module file: /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeOBJCCompiler.cmake
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(2):  set(CMAKE_CXX_COMPILER /usr/bin/c++ )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(3):  set(CMAKE_CXX_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(4):  set(CMAKE_CXX_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCXX 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(6):  set(CMAKE_CXX_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(7):  set(CMAKE_CXX_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(8):  set(CMAKE_CXX_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(9):  set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(10):  set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCXXCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(2):  set(CMAKE_C_COMPILER /usr/bin/cc )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(3):  set(CMAKE_C_COMPILER_LAUNCHER  )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(4):  set(CMAKE_C_COMPILER_ID GNU )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(5):  set(CMAKE_COMPILER_IS_GNUCC 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(6):  set(CMAKE_C_COMPILER_LOADED 1 )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(7):  set(CMAKE_C_COMPILER_WORKS TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(8):  set(CMAKE_C_ABI_COMPILED TRUE )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(9):  set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(10):  set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC )
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/cmake_gnutls/CMakeFiles/3.7.2/CMakeCCompiler.cmake(11):  set(CMAKE_SIZEOF_VOID_P 8 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(14):  set(APPLE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(15):  set(UNIX )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(16):  set(CYGWIN )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(17):  set(WIN32 )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(21):  include(CMakeGenericSystem )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(5):  set(CMAKE_SHARED_LIBRARY_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(6):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(7):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(8):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(9):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(10):  set(CMAKE_INCLUDE_FLAG_C -I )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(11):  set(CMAKE_INCLUDE_FLAG_C_SEP  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(12):  set(CMAKE_LIBRARY_PATH_FLAG -L )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(13):  set(CMAKE_LIBRARY_PATH_TERMINATOR  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(14):  set(CMAKE_LINK_LIBRARY_FLAG -l )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(16):  set(CMAKE_LINK_LIBRARY_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(17):  set(CMAKE_STATIC_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(18):  set(CMAKE_STATIC_LIBRARY_SUFFIX .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(19):  set(CMAKE_SHARED_LIBRARY_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(20):  set(CMAKE_SHARED_LIBRARY_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(21):  set(CMAKE_EXECUTABLE_SUFFIX  )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(22):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(24):  set(CMAKE_FIND_LIBRARY_PREFIXES lib )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(25):  set(CMAKE_FIND_LIBRARY_SUFFIXES .so .a )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(28):  set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(30):  set(CMAKE_SKIP_RPATH NO CACHE BOOL If set, runtime paths are not added when using shared libraries. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(32):  set(CMAKE_SKIP_INSTALL_RPATH NO CACHE BOOL If set, runtime paths are not added when installing shared libraries, but are added when building. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(35):  set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(37):  if(CMAKE_GENERATOR MATCHES Make )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(38):  set(CMAKE_COLOR_MAKEFILE ON CACHE BOOL Enable/Disable color output during build. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(41):  mark_as_advanced(CMAKE_COLOR_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(42):  if(DEFINED CMAKE_RULE_MESSAGES )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(45):  if(DEFINED CMAKE_TARGET_MESSAGES )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(48):  if(CMAKE_GENERATOR MATCHES Unix Makefiles )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(49):  set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL Enable/Disable output of compile commands during generation. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(52):  mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(56):  if(CMAKE_GENERATOR MATCHES Ninja )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(70):  function(GetDefaultWindowsPrefixBase var )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(156):  if(NOT DEFINED CMAKE_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(157):  set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT 1 )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(161):  if(CMAKE_HOST_UNIX )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(162):  set(CMAKE_INSTALL_PREFIX /usr/local CACHE PATH Install path prefix, prepended onto install directories. )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(174):  set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Unspecified )
/usr/share/cmake-3.7/Modules/CMakeGenericSystem.cmake(176):  mark_as_advanced(CMAKE_SKIP_RPATH CMAKE_SKIP_INSTALL_RPATH CMAKE_VERBOSE_MAKEFILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(24):  set(CMAKE_SYSTEM_INFO_FILE Platform/Linux )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(26):  include(Platform/Linux OPTIONAL RESULT_VARIABLE _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(1):  set(CMAKE_DL_LIBS dl )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(2):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(3):  set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(4):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(5):  set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(6):  set(CMAKE_EXE_EXPORTS_C_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(10):  set(CMAKE_PLATFORM_USES_PATH_WHEN_NO_SONAME 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(16):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_SHARED_MODULE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(17):  set(CMAKE_EXE_LINK_STATIC_C_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(18):  set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(29):  if(DEFINED CMAKE_INSTALL_SO_NO_EXE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(34):  else()
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(39):  if(EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(40):  set(CMAKE_INSTALL_SO_NO_EXE 1 CACHE INTERNAL Install .so files without execute permission. )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(49):  set(CMAKE_LIBRARY_ARCHITECTURE_REGEX [a-z0-9_]+(-[a-z0-9_]+)?-linux-gnu[a-z0-9_]* )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(51):  include(Platform/UnixPaths )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(10):  if(__UNIX_PATHS_INCLUDED )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(13):  set(__UNIX_PATHS_INCLUDED 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(15):  set(UNIX 1 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(19):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share/cmake-3.7 PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(20):  get_filename_component(_CMAKE_INSTALL_DIR /usr/share PATH )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(24):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local /usr / /usr )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(31):  if(NOT CMAKE_FIND_NO_INSTALL_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(32):  list(APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(36):  if(CMAKE_STAGING_PREFIX )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(45):  list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /usr/include/w32api /usr/X11R6/include /usr/include/X11 /usr/pkg/include /opt/csw/include /opt/include /usr/openwin/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(58):  list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /usr/lib/w32api /usr/X11R6/lib /usr/lib/X11 /usr/pkg/lib /opt/csw/lib /opt/lib /usr/openwin/lib )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(71):  list(APPEND CMAKE_SYSTEM_PROGRAM_PATH /usr/pkg/bin )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(75):  list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64 )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(79):  list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(82):  list(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES /usr/include )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(87):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/UnixPaths.cmake(88):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(55):  if(NOT CMAKE_CROSSCOMPILING AND EXISTS /etc/debian_version )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(56):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS FALSE )
/usr/share/cmake-3.7/Modules/Platform/Linux.cmake(57):  set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(28):  if(NOT _INCLUDED_SYSTEM_INFO_FILE )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(43):  if(CMAKE_EXTRA_GENERATOR )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(53):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(54):  set(CMAKE_SHARED_MODULE_PREFIX lib )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(55):  set(CMAKE_SHARED_MODULE_SUFFIX .so )
/usr/share/cmake-3.7/Modules/CMakeSystemSpecificInformation.cmake(59):  set(CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED 1 )
CMake Error at CMakeLists.txt:3 (project):
  No CMAKE_OBJC_COMPILER could be found.

  Tell CMake where to find the compiler by setting the CMake cache entry
  CMAKE_OBJC_COMPILER to the full path to the compiler, or to the compiler
  name if it is in the PATH.


CMake Error: Could not find cmake module file: CMakeOBJCInformation.cmake
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(16):  set(CMAKE_CXX_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(24):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(25):  include(Compiler/GNU-CXX OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(9):  set(__COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(11):  macro(__compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(2):  __compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_CXX_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_CXX_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_CXX -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_CXX_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_CXX_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_CXX_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_CXX_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_CXX_CREATE_ASSEMBLY_SOURCE <CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(4):  if(WIN32 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(8):  else()
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(9):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.2 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(14):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(20):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(23):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(29):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(32):  elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(37):  if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-CXX.cmake(49):  macro(cmake_record_cxx_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/c++ NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(31):  if(CMAKE_COMPILER_IS_GNUCXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(32):  set(CMAKE_BASE_NAME g++ )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(37):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(38):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(39):  include(Platform/Linux-GNU-CXX-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(41):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(42):  include(Platform/Linux-g++-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(47):  if(CMAKE_CXX_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(48):  include(Platform/Linux-GNU-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(9):  set(__LINUX_COMPILER_GNU 1 )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(11):  macro(__linux_compiler_gnu lang )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-CXX.cmake(2):  __linux_compiler_gnu(CXX )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(50):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(56):  if(CMAKE_CXX_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(64):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(68):  if(CMAKE_CXX_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(81):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(87):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(97):  if(NOT CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(101):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(105):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_PIE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(106):  set(CMAKE_CXX_COMPILE_OPTIONS_PIE  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(109):  if(NOT CMAKE_CXX_COMPILE_OPTIONS_DLL )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(110):  set(CMAKE_CXX_COMPILE_OPTIONS_DLL  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(113):  if(NOT CMAKE_SHARED_LIBRARY_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(117):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(121):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(122):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(125):  if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(126):  set(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(129):  if(NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(130):  set(CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(133):  if(NOT DEFINED CMAKE_EXE_EXPORTS_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(134):  set(CMAKE_EXE_EXPORTS_CXX_FLAG -Wl,--export-dynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(137):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(138):  set(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG -Wl,-soname, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(141):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(142):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(145):  if(NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(146):  set(CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(149):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(150):  set(CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(153):  if(NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(154):  set(CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(157):  if(NOT CMAKE_INCLUDE_FLAG_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(158):  set(CMAKE_INCLUDE_FLAG_CXX -I )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(161):  if(NOT CMAKE_INCLUDE_FLAG_SEP_CXX )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(162):  set(CMAKE_INCLUDE_FLAG_SEP_CXX  )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(168):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(169):  set(CMAKE_SHARED_MODULE_CXX_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(170):  set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(174):  if(NOT CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(178):  if(NOT CMAKE_SHARED_MODULE_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(183):  foreach(type SHARED_LIBRARY SHARED_MODULE EXE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_SHARED_MODULE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_SHARED_MODULE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(184):  if(NOT CMAKE_EXE_LINK_STATIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(185):  set(CMAKE_EXE_LINK_STATIC_CXX_FLAGS -Wl,-Bstatic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(188):  if(NOT CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(189):  set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS -Wl,-Bdynamic )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(198):  set(CMAKE_CXX_FLAGS_INIT    )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(200):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP    CMAKE_CXX_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -g CMAKE_CXX_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O3 -DNDEBUG CMAKE_CXX_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -Os -DNDEBUG CMAKE_CXX_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(201):  string(STRIP  -O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(204):  set(CMAKE_CXX_FLAGS  CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(207):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(208):  set(CMAKE_CXX_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(210):  set(CMAKE_CXX_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(212):  set(CMAKE_CXX_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(214):  set(CMAKE_CXX_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(219):  if(CMAKE_CXX_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(225):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/make )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(254):  if(NOT CMAKE_CXX_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(255):  set(CMAKE_CXX_CREATE_SHARED_LIBRARY <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(260):  if(NOT CMAKE_CXX_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(261):  set(CMAKE_CXX_CREATE_SHARED_MODULE <CMAKE_CXX_COMPILER> <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(267):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(268):  set(CMAKE_CXX_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(270):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(271):  set(CMAKE_CXX_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(273):  if(NOT DEFINED CMAKE_CXX_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(274):  set(CMAKE_CXX_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(278):  if(NOT CMAKE_CXX_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(279):  set(CMAKE_CXX_COMPILE_OBJECT <CMAKE_CXX_COMPILER>  <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(283):  if(NOT CMAKE_CXX_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(284):  set(CMAKE_CXX_LINK_EXECUTABLE <CMAKE_CXX_COMPILER>  <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(288):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_DEBUG )
/usr/share/cmake-3.7/Modules/CMakeCXXInformation.cmake(296):  set(CMAKE_CXX_INFORMATION_LOADED 1 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(11):  include(CMakeLanguageInformation )
/usr/share/cmake-3.7/Modules/CMakeLanguageInformation.cmake(9):  macro(__cmake_include_compiler_wrapper lang )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(15):  if(UNIX )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(16):  set(CMAKE_C_OUTPUT_EXTENSION .o )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(21):  set(_INCLUDED_FILE 0 )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(24):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(25):  include(Compiler/GNU-C OPTIONAL )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(1):  include(Compiler/GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(6):  if(__COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(2):  __compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(13):  set(CMAKE_C_VERBOSE_FLAG -v )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(14):  set(CMAKE_C_COMPILE_OPTIONS_PIC -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(15):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(18):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.0 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(21):  set(CMAKE_SHARED_LIBRARY_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(22):  set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(23):  set(CMAKE_C_COMPILE_OPTIONS_SYSROOT --sysroot= )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(29):  get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(30):  if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(34):  set(CMAKE_DEPFILE_FLAGS_C -MD -MT <OBJECT> -MF <DEPFILE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(38):  string(APPEND CMAKE_C_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(39):  string(APPEND CMAKE_C_FLAGS_DEBUG_INIT  -g )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(40):  string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT  -Os -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(41):  string(APPEND CMAKE_C_FLAGS_RELEASE_INIT  -O3 -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(42):  string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT  -O2 -g -DNDEBUG )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(43):  set(CMAKE_C_CREATE_PREPROCESSED_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(44):  set(CMAKE_C_CREATE_ASSEMBLY_SOURCE <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE> )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(45):  if(NOT APPLE OR NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU.cmake(46):  set(CMAKE_INCLUDE_SYSTEM_FLAG_C -isystem  )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(4):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(7):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(12):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(17):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(20):  elseif(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.6 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(25):  if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.4 )
/usr/share/cmake-3.7/Modules/Compiler/GNU-C.cmake(42):  macro(cmake_record_c_compile_features )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(28):  set(CMAKE_BASE_NAME )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(29):  get_filename_component(CMAKE_BASE_NAME /usr/bin/cc NAME_WE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(30):  if(CMAKE_COMPILER_IS_GNUCC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(31):  set(CMAKE_BASE_NAME gcc )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(36):  if(CMAKE_SYSTEM_PROCESSOR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(37):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(38):  include(Platform/Linux-GNU-C-x86_64 OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(40):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(41):  include(Platform/Linux-gcc-x86_64 OPTIONAL )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(47):  if(CMAKE_C_COMPILER_ID )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(48):  include(Platform/Linux-GNU-C OPTIONAL RESULT_VARIABLE _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(1):  include(Platform/Linux-GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(6):  if(__LINUX_COMPILER_GNU )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(7):  return()
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU-C.cmake(2):  __linux_compiler_gnu(C )
/usr/share/cmake-3.7/Modules/Platform/Linux-GNU.cmake(14):  set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS -rdynamic )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(51):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(57):  if(CMAKE_C_COMPILER_WRAPPER )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(65):  if(NOT _INCLUDED_FILE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(69):  if(CMAKE_C_SIZEOF_DATA_PTR )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(82):  if(CMAKE_USER_MAKE_RULES_OVERRIDE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(88):  if(CMAKE_USER_MAKE_RULES_OVERRIDE_C )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(98):  if(NOT CMAKE_MODULE_EXISTS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(99):  set(CMAKE_SHARED_MODULE_C_FLAGS -fPIC )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(100):  set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS -shared )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(103):  set(CMAKE_C_FLAGS_INIT -I/usr/src/linux-headers-4.19.0-hoge/include   )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(105):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP -I/usr/src/linux-headers-4.19.0-hoge/include   CMAKE_C_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -g CMAKE_C_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O3 -DNDEBUG CMAKE_C_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -Os -DNDEBUG CMAKE_C_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(106):  string(STRIP  -O2 -g -DNDEBUG CMAKE_C_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(109):  set(CMAKE_C_FLAGS -I/usr/src/linux-headers-4.19.0-hoge/include CACHE STRING Flags used by the compiler during all build types. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(112):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(114):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(115):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(118):  set(CMAKE_C_FLAGS_DEBUG -g CACHE STRING Flags used by the compiler during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(120):  set(CMAKE_C_FLAGS_MINSIZEREL -Os -DNDEBUG CACHE STRING Flags used by the compiler during release builds for minimum size. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(122):  set(CMAKE_C_FLAGS_RELEASE -O3 -DNDEBUG CACHE STRING Flags used by the compiler during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(124):  set(CMAKE_C_FLAGS_RELWITHDEBINFO -O2 -g -DNDEBUG CACHE STRING Flags used by the compiler during release builds with debug info. )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(128):  if(CMAKE_C_STANDARD_LIBRARIES_INIT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(134):  include(CMakeCommonLanguageInclude )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(9):  string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(10):  string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(11):  string(APPEND CMAKE_MODULE_LINKER_FLAGS_INIT   )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(13):  foreach(t EXE SHARED MODULE STATIC )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_EXE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_SHARED_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP   CMAKE_MODULE_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(14):  foreach(c  _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(15):  string(STRIP  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(19):  if(NOT CMAKE_NOT_USING_CONFIG_FLAGS )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(21):  if(NOT CMAKE_NO_BUILD_TYPE )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(22):  set(CMAKE_BUILD_TYPE  CACHE STRING Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(26):  set(CMAKE_EXE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(29):  set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(32):  set(CMAKE_EXE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(35):  set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(39):  set(CMAKE_SHARED_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(42):  set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(46):  set(CMAKE_SHARED_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(49):  set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(53):  set(CMAKE_MODULE_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(56):  set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(60):  set(CMAKE_MODULE_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(63):  set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(67):  set(CMAKE_STATIC_LINKER_FLAGS_DEBUG  CACHE STRING Flags used by the linker during debug builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(70):  set(CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL  CACHE STRING Flags used by the linker during release minsize builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(74):  set(CMAKE_STATIC_LINKER_FLAGS_RELEASE  CACHE STRING Flags used by the linker during release builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(77):  set(CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO  CACHE STRING Flags used by the linker during Release with Debug Info builds. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(83):  set(CMAKE_EXE_LINKER_FLAGS  CACHE STRING Flags used by the linker. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(87):  set(CMAKE_SHARED_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of dll's. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(91):  set(CMAKE_MODULE_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of modules. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(95):  set(CMAKE_STATIC_LINKER_FLAGS  CACHE STRING Flags used by the linker during the creation of static libraries. )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(99):  set(CMAKE_BUILD_TOOL /usr/bin/make )
/usr/share/cmake-3.7/Modules/CMakeCommonLanguageInclude.cmake(101):  mark_as_advanced(CMAKE_VERBOSE_MAKEFILE CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(164):  if(NOT CMAKE_C_CREATE_SHARED_LIBRARY )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(165):  set(CMAKE_C_CREATE_SHARED_LIBRARY <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(170):  if(NOT CMAKE_C_CREATE_SHARED_MODULE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(171):  set(CMAKE_C_CREATE_SHARED_MODULE <CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(176):  if(NOT DEFINED CMAKE_C_ARCHIVE_CREATE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(177):  set(CMAKE_C_ARCHIVE_CREATE <CMAKE_AR> qc <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(179):  if(NOT DEFINED CMAKE_C_ARCHIVE_APPEND )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(180):  set(CMAKE_C_ARCHIVE_APPEND <CMAKE_AR> q  <TARGET> <LINK_FLAGS> <OBJECTS> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(182):  if(NOT DEFINED CMAKE_C_ARCHIVE_FINISH )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(183):  set(CMAKE_C_ARCHIVE_FINISH <CMAKE_RANLIB> <TARGET> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(187):  if(NOT CMAKE_C_COMPILE_OBJECT )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(188):  set(CMAKE_C_COMPILE_OBJECT <CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT>   -c <SOURCE> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(192):  if(NOT CMAKE_C_LINK_EXECUTABLE )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(193):  set(CMAKE_C_LINK_EXECUTABLE <CMAKE_C_COMPILER> <FLAGS> <CMAKE_C_LINK_FLAGS> <LINK_FLAGS> <OBJECTS>  -o <TARGET> <LINK_LIBRARIES> )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(197):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(198):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG -Wl,-rpath, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(201):  if(NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(202):  set(CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP : )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(205):  if(NOT CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(206):  set(CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG -Wl,-rpath-link, )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(209):  mark_as_advanced(CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELWITHDEBINFO )
/usr/share/cmake-3.7/Modules/CMakeCInformation.cmake(216):  set(CMAKE_C_INFORMATION_LOADED 1 )
CMake Error: CMAKE_OBJC_COMPILER not set, after EnableLanguage



Try CMake generator: Visual Studio 10 2010
Failed to find a fortran compiler for CMake. This might cause CMake to fail.
Called `/usr/bin/cmake -G Visual Studio 10 2010 --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 Visual Studio 10 2010 and package gnutls with error code 1
OUT:
Running with expanded trace output on.



ERR:
CMake Error: Could not create named generator Visual Studio 10 2010

Generators
  Unix Makefiles               = Generates standard UNIX makefiles.
  Ninja                        = Generates build.ninja files.
  Watcom WMake                 = Generates Watcom WMake makefiles.
  CodeBlocks - Ninja           = Generates CodeBlocks project files.
  CodeBlocks - Unix Makefiles  = Generates CodeBlocks project files.
  CodeLite - Ninja             = Generates CodeLite project files.
  CodeLite - Unix Makefiles    = Generates CodeLite project files.
  Sublime Text 2 - Ninja       = Generates Sublime Text 2 project files.
  Sublime Text 2 - Unix Makefiles
                               = Generates Sublime Text 2 project files.
  Kate - Ninja                 = Generates Kate project files.
  Kate - Unix Makefiles        = Generates Kate project files.
  Eclipse CDT4 - Ninja         = Generates Eclipse CDT 4.0 project files.
  Eclipse CDT4 - Unix Makefiles= Generates Eclipse CDT 4.0 project files.
  KDevelop3                    = Generates KDevelop 3 project files.
  KDevelop3 - Unix Makefiles   = Generates KDevelop 3 project files.




Run-time dependency gnutls 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
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 '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
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 '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
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 'libbluray' 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 libbluray` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libbluray found: NO (tried pkgconfig and cmake)
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libbs2b found: NO (tried pkgconfig and cmake)
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency caca found: NO (tried pkgconfig and cmake)
Message: Skipping libcdio because of license
Message: Skipping libcdio because of license
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
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 '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)
Message: Skipping libfdk_aac because of license
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'fontconfig' 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 fontconfig` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency fontconfig found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'freetype2' 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 freetype2` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency freetype2 found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'fribidi' 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 fribidi` -> 1

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

Code:
 
        #ifdef __has_include
         #if !__has_include("jack/jack.h")
          #error "Header 'jack/jack.h' could not be found"
         #endif
        #else
         #include <jack/jack.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "jack/jack.h" with dependency jack: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgh2hjkib
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgh2hjkib/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgh2hjkib/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/libjack.so -Wl,--end-group 

Code:
 #include <jack/jack.h>

#include <limits.h>

        #if defined __stub_jack_port_get_latency_range || defined __stub___jack_port_get_latency_range
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &jack_port_get_latency_range;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "jack_port_get_latency_range" with dependency jack: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'kvazaar' 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 kvazaar` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency kvazaar found: NO (tried pkgconfig and cmake)
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libmfx found: NO (tried pkgconfig and cmake)
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
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 '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 '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 '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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency openh264 found: NO (tried pkgconfig and cmake)
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libopenjp2 found: NO (tried pkgconfig and cmake)
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libopenjp2 found: NO (tried pkgconfig and cmake)
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libopenmpt 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 '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
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 '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
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency librtmp found: NO (tried pkgconfig and cmake)
Message: Skipping librubberband because of license
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'shine' 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 shine` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency shine found: NO (tried pkgconfig and cmake)
Message: Skipping libsmbclient because of license
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libssh' 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 libssh` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libssh found: NO (tried pkgconfig and cmake)
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
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 '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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency srt found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'tesseract' 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 tesseract` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency tesseract found: NO (tried pkgconfig and cmake)
Message: Skipping libtls because of license
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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libv4l2 found: NO (tried pkgconfig and cmake)
Message: Skipping libvidstab because of license
Message: Skipping libvmaf because of license
Dependency vorbis found: YES 1.3.5 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9s2j6741
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9s2j6741/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("vorbis/codec.h")
          #error "Header 'vorbis/codec.h' could not be found"
         #endif
        #else
         #include <vorbis/codec.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "vorbis/codec.h" with dependency vorbis: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazyab2ct
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazyab2ct/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpazyab2ct/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/libvorbis.so -Wl,--end-group 

Code:
 #include <vorbis/codec.h>

#include <limits.h>

        #if defined __stub_vorbis_info_init || defined __stub___vorbis_info_init
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &vorbis_info_init;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "vorbis_info_init" with dependency vorbis: YES 
Dependency vorbisenc found: YES 1.3.5 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi4tck462
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi4tck462/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("vorbis/vorbisenc.h")
          #error "Header 'vorbis/vorbisenc.h' could not be found"
         #endif
        #else
         #include <vorbis/vorbisenc.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "vorbis/vorbisenc.h" with dependency vorbisenc: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpicz546iz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpicz546iz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpicz546iz/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/libvorbisenc.so -Wl,--end-group 

Code:
 #include <vorbis/vorbisenc.h>

#include <limits.h>

        #if defined __stub_vorbis_encode_init || defined __stub___vorbis_encode_init
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &vorbis_encode_init;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "vorbis_encode_init" with dependency vorbisenc: YES 
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
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 '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
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 '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
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 '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
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 '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
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 'libwebpmux' 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 libwebpmux` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libwebpmux found: NO (tried pkgconfig and cmake)
Message: Skipping libx264 because of license
Message: Skipping libx265 because of license
Dependency xcb found: YES 1.12 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp60y9rhkx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp60y9rhkx/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

Code:
 
        #ifdef __has_include
         #if !__has_include("xcb/xcb.h")
          #error "Header 'xcb/xcb.h' could not be found"
         #endif
        #else
         #include <xcb/xcb.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "xcb/xcb.h" with dependency xcb: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnw60evu2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnw60evu2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnw60evu2/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/libxcb.so -Wl,--end-group 

Code:
 #include <xcb/xcb.h>

#include <limits.h>

        #if defined __stub_xcb_connect || defined __stub___xcb_connect
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &xcb_connect;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "xcb_connect" with dependency xcb: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xcb-shm' 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-shm` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xcb-shm found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xcb-shape' 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-shape` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency xcb-shape found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'xcb-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 xcb-xfixes` -> 1

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

Code:
 
        #ifdef __has_include
         #if !__has_include("libxml2/libxml/xmlversion.h")
          #error "Header 'libxml2/libxml/xmlversion.h' could not be found"
         #endif
        #else
         #include <libxml2/libxml/xmlversion.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "libxml2/libxml/xmlversion.h" with dependency libxml-2.0: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7h2qzw6b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include -I/usr/include/libxml2 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7h2qzw6b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7h2qzw6b/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/libxml2.so -Wl,--end-group 

Code:
 #include <libxml2/libxml/xmlversion.h>

#include <limits.h>

        #if defined __stub_xmlCheckVersion || defined __stub___xmlCheckVersion
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &xmlCheckVersion;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "xmlCheckVersion" with dependency libxml-2.0: YES 
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'zimg' 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 zimg` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency zimg found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libzmq' 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 libzmq` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libzmq 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
CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency zvbi-0.2 found: NO (tried pkgconfig and cmake)
Message: Skipping openssl because of license
Message: Skipping rkmpp because of license
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'rockchip_mpp' 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 rockchip_mpp` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency rockchip_mpp found: NO (tried pkgconfig and cmake)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'sdl2' 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 sdl2` -> 1

sdl2-config found: NO need ['>= 2.0.1', '< 2.1.0']
Run-time dependency sdl2 found: NO (tried pkgconfig and config-tool)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq3q9t914
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq3q9t914/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq3q9t914/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -ladvapi32 -Wl,--end-group -Wl,--allow-shlib-undefined 

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

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

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

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

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

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

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

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

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

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

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

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

Code:
 
        #ifdef __has_include
         #if !__has_include("time.h")
          #error "Header 'time.h' could not be found"
         #endif
        #else
         #include <time.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "time.h" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa10bogb6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa10bogb6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa10bogb6/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_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 
Message: Skipping cuda_sdk because of license
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxpdl5xpl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxpdl5xpl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxpdl5xpl/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lcrystalhd -Wl,--end-group -Wl,--allow-shlib-undefined 

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

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

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

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

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Library stdc++ found: YES
Library gcrypt found: NO
Message: Skipping gmp because of license
Message: Skipping libcdio because of license
Message: Skipping libcdio because of license
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vmuye0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vmuye0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0vmuye0/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lcodec2 -Wl,--end-group -Wl,--allow-shlib-undefined 

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

Library codec2 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/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/tmpuiuqc6oj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuiuqc6oj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpuiuqc6oj/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 <dlfcn.h>

#include <limits.h>

        #if defined __stub_dlopen || defined __stub___dlopen
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &dlopen;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccbHWzZW.o: In function `main':
testfile.c:(.text+0x7): undefined reference to `dlopen'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpasmyng61
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpasmyng61/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpasmyng61/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 <dlfcn.h>

        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_dlopen)
                #error "__builtin_dlopen not found"
            #endif
        #elif ! defined(dlopen)
            /* Check for __builtin_dlopen only if no includes were added to the
             * prefix above, which means no definition of dlopen 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_dlopen;
            #else
                #error "No definition for __builtin_dlopen found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpasmyng61/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpasmyng61/testfile.c:17:18: error: #error "No definition for __builtin_dlopen found in the prefix"
                 #error "No definition for __builtin_dlopen found in the prefix"
                  ^~~~~

Checking for function "dlopen" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx_ne7y_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/tmpx_ne7y_4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx_ne7y_4/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 <dlfcn.h>

#include <limits.h>

        #if defined __stub_dlsym || defined __stub___dlsym
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &dlsym;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/ccmMEKaZ.o: In function `main':
testfile.c:(.text+0x7): 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/tmp2wyg1hhu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wyg1hhu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wyg1hhu/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 <dlfcn.h>

        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 0
                __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/tmp2wyg1hhu/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2wyg1hhu/testfile.c:17:18: error: #error "No definition for __builtin_dlsym found in the prefix"
                 #error "No definition for __builtin_dlsym found in the prefix"
                  ^~~~~

Checking for function "dlsym" : NO 
Library dl found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xtvuk0v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xtvuk0v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1xtvuk0v/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 -ldl -Wl,--end-group 

Code:
 #include <dlfcn.h>

#include <limits.h>

        #if defined __stub_dlopen || defined __stub___dlopen
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &dlopen;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "dlopen" with dependency -ldl: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcoin97zj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcoin97zj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcoin97zj/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 -ldl -Wl,--end-group 

Code:
 #include <dlfcn.h>

#include <limits.h>

        #if defined __stub_dlsym || defined __stub___dlsym
        fail fail fail this function is not going to work
        #endif
        
int main(void) {
            void *a = (void*) &dlsym;
            long b = (long) a;
            return (int) b;
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "dlsym" with dependency -ldl: YES 
Message: Skipping libfdk_aac because of license
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvw5dcxe_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvw5dcxe_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvw5dcxe_/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmu_time_awb -Wl,--end-group -Wl,--allow-shlib-undefined 

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

Library flite_cmu_time_awb found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp4_f2rnq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp4_f2rnq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp4_f2rnq/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmu_us_awb -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_awb
collect2: error: ld returned 1 exit status

Library flite_cmu_us_awb found: NO
Library flite_cmu_us_kal found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8fje64j4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8fje64j4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8fje64j4/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmu_us_kal16 -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_kal16
collect2: error: ld returned 1 exit status

Library flite_cmu_us_kal16 found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparqwy_28
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparqwy_28/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmparqwy_28/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmu_us_rms -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_rms
collect2: error: ld returned 1 exit status

Library flite_cmu_us_rms found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpua0ivq24
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpua0ivq24/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpua0ivq24/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lflite_cmu_us_slt -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_slt
collect2: error: ld returned 1 exit status

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

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

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

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

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

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

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

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

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

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

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

Code:
 
        #ifdef __has_include
         #if !__has_include("math.h")
          #error "Header 'math.h' could not be found"
         #endif
        #else
         #include <math.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "math.h" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiok15k5z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiok15k5z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiok15k5z/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 -lm -Wl,--end-group 

Code:
 #include <math.h>

#include <limits.h>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Code:
 
        #ifdef __has_include
         #if !__has_include("zlib.h")
          #error "Header 'zlib.h' could not be found"
         #endif
        #else
         #include <zlib.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "zlib.h" with dependency -lz: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6q06nrao
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6q06nrao/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6q06nrao/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 -lz -Wl,--end-group 

Code:
 #include <zlib.h>

#include <limits.h>

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

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

Library mysofa found: NO
Message: Skipping libx264 because of license
Message: Skipping libxavs because of license
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9wnwx2ug
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9wnwx2ug/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9wnwx2ug/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:
 
        #define getaddrinfo meson_disable_define_of_getaddrinfo
        
        #include <limits.h>
        #undef getaddrinfo
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getaddrinfo (void);
        
        #if defined __stub_getaddrinfo || defined __stub___getaddrinfo
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getaddrinfo ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getaddrinfo" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9ietqxx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9ietqxx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9ietqxx/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:
 
        #define inet_aton meson_disable_define_of_inet_aton
        
        #include <limits.h>
        #undef inet_aton
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char inet_aton (void);
        
        #if defined __stub_inet_aton || defined __stub___inet_aton
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return inet_aton ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "inet_aton" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_ev1ij4
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_ev1ij4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv_ev1ij4/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:
 
        #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 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt3_uuotx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt3_uuotx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt3_uuotx/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:
 
        #define access meson_disable_define_of_access
        
        #include <limits.h>
        #undef access
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char access (void);
        
        #if defined __stub_access || defined __stub___access
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return access ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "access" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0j1tb81
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0j1tb81/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt0j1tb81/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:
 
        #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/tmpnr2b5zpf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnr2b5zpf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnr2b5zpf/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:
 
        #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/tmpnr2b5zpf/testfile.c:10:14: warning: conflicting types for built-in function 'fork'
         char fork (void);
              ^~~~

Checking for function "fork" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpudjpsolt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpudjpsolt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpudjpsolt/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:
 
        #define gethrtime meson_disable_define_of_gethrtime
        
        #include <limits.h>
        #undef gethrtime
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char gethrtime (void);
        
        #if defined __stub_gethrtime || defined __stub___gethrtime
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return gethrtime ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/cc0oPsdS.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `gethrtime'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n_1qfsy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n_1qfsy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n_1qfsy/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:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_gethrtime)
                #error "__builtin_gethrtime not found"
            #endif
        #elif ! defined(gethrtime)
            /* Check for __builtin_gethrtime only if no includes were added to the
             * prefix above, which means no definition of gethrtime 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_gethrtime;
            #else
                #error "No definition for __builtin_gethrtime found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n_1qfsy/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n_1qfsy/testfile.c:14:17: error: '__builtin_gethrtime' undeclared (first use in this function)
                 __builtin_gethrtime;
                 ^~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3n_1qfsy/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "gethrtime" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps5oko7t0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps5oko7t0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps5oko7t0/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:
 
        #define getopt meson_disable_define_of_getopt
        
        #include <limits.h>
        #undef getopt
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getopt (void);
        
        #if defined __stub_getopt || defined __stub___getopt
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getopt ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "getopt" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzk59uyho
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzk59uyho/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzk59uyho/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:
 
        #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/tmp08fr6jg4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08fr6jg4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08fr6jg4/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:
 
        #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/tmpcu3ikzff
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcu3ikzff/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcu3ikzff/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:
 
        #define isatty meson_disable_define_of_isatty
        
        #include <limits.h>
        #undef isatty
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char isatty (void);
        
        #if defined __stub_isatty || defined __stub___isatty
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return isatty ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "isatty" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8i7bjv1p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8i7bjv1p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8i7bjv1p/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:
 
        #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/tmpttvvsayp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpttvvsayp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpttvvsayp/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:
 
        #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/tmpizz41c3s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpizz41c3s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpizz41c3s/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:
 
        #define mprotect meson_disable_define_of_mprotect
        
        #include <limits.h>
        #undef mprotect
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mprotect (void);
        
        #if defined __stub_mprotect || defined __stub___mprotect
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mprotect ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "mprotect" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwutb08q0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwutb08q0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwutb08q0/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:
 
        #define sched_getaffinity meson_disable_define_of_sched_getaffinity
        
        #include <limits.h>
        #undef sched_getaffinity
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sched_getaffinity (void);
        
        #if defined __stub_sched_getaffinity || defined __stub___sched_getaffinity
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sched_getaffinity ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "sched_getaffinity" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd_nkzd9k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd_nkzd9k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd_nkzd9k/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:
 
        #define setrlimit meson_disable_define_of_setrlimit
        
        #include <limits.h>
        #undef setrlimit
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setrlimit (void);
        
        #if defined __stub_setrlimit || defined __stub___setrlimit
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setrlimit ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "setrlimit" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprz3qwx60
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprz3qwx60/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprz3qwx60/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:
 
        #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 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9k9j9799
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9k9j9799/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9k9j9799/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:
 
        #define sysconf meson_disable_define_of_sysconf
        
        #include <limits.h>
        #undef sysconf
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sysconf (void);
        
        #if defined __stub_sysconf || defined __stub___sysconf
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sysconf ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "sysconf" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmxk62xh0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmxk62xh0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmxk62xh0/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:
 
        #define sysctl meson_disable_define_of_sysctl
        
        #include <limits.h>
        #undef sysctl
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sysctl (void);
        
        #if defined __stub_sysctl || defined __stub___sysctl
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sysctl ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "sysctl" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptg63rxl2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptg63rxl2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptg63rxl2/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:
 
        #define usleep meson_disable_define_of_usleep
        
        #include <limits.h>
        #undef usleep
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char usleep (void);
        
        #if defined __stub_usleep || defined __stub___usleep
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return usleep ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "usleep" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpai1fhey4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpai1fhey4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpai1fhey4/output.exe -pipe -pthread -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:
 
        #define pthread_join meson_disable_define_of_pthread_join
        
        #include <limits.h>
        #undef pthread_join
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_join (void);
        
        #if defined __stub_pthread_join || defined __stub___pthread_join
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_join ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "pthread_join" with dependency threads: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptz9bg1zx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptz9bg1zx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptz9bg1zx/output.exe -pipe -pthread -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:
 
        #define pthread_create meson_disable_define_of_pthread_create
        
        #include <limits.h>
        #undef pthread_create
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_create (void);
        
        #if defined __stub_pthread_create || defined __stub___pthread_create
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_create ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "pthread_create" with dependency threads: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpniinb7qh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpniinb7qh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpniinb7qh/output.exe -pipe -pthread -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:
 
        #define pthread_cancel meson_disable_define_of_pthread_cancel
        
        #include <limits.h>
        #undef pthread_cancel
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_cancel (void);
        
        #if defined __stub_pthread_cancel || defined __stub___pthread_cancel
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_cancel ();
        }
Compiler stdout:
 
Compiler stderr:
 
Checking for function "pthread_cancel" with dependency threads: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6ekm503
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6ekm503/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6ekm503/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:
 
        #define __sync_val_compare_and_swap meson_disable_define_of___sync_val_compare_and_swap
        
        #include <limits.h>
        #undef __sync_val_compare_and_swap
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __sync_val_compare_and_swap (void);
        
        #if defined __stub___sync_val_compare_and_swap || defined __stub_____sync_val_compare_and_swap
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __sync_val_compare_and_swap ();
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6ekm503/testfile.c:10:14: warning: conflicting types for built-in function '__sync_val_compare_and_swap'
         char __sync_val_compare_and_swap (void);
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/tmp/ccAEzmZH.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `__sync_val_compare_and_swap'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2lbp5s0r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2lbp5s0r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2lbp5s0r/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:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin___sync_val_compare_and_swap)
                #error "__builtin___sync_val_compare_and_swap not found"
            #endif
        #elif ! defined(__sync_val_compare_and_swap)
            /* Check for __builtin___sync_val_compare_and_swap only if no includes were added to the
             * prefix above, which means no definition of __sync_val_compare_and_swap 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___sync_val_compare_and_swap;
            #else
                #error "No definition for __builtin___sync_val_compare_and_swap found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2lbp5s0r/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2lbp5s0r/testfile.c:14:17: error: '__builtin___sync_val_compare_and_swap' undeclared (first use in this function)
                 __builtin___sync_val_compare_and_swap;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2lbp5s0r/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "__sync_val_compare_and_swap" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbibjzh1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbibjzh1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbibjzh1/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:
 
        #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/tmpb5cfd1zc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb5cfd1zc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb5cfd1zc/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:
 
        #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/tmp6dx0qt7k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6dx0qt7k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6dx0qt7k/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:
 
        #define closesocket meson_disable_define_of_closesocket
        
        #include <limits.h>
        #undef closesocket
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char closesocket (void);
        
        #if defined __stub_closesocket || defined __stub___closesocket
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return closesocket ();
        }
Compiler stdout:
 
Compiler stderr:
 /tmp/cch7LFOQ.o: In function `main':
testfile.c:(.text+0x5): undefined reference to `closesocket'
collect2: error: ld returned 1 exit status

Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq5ufgk45
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq5ufgk45/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq5ufgk45/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:
 
        int main(void) {
        #ifdef __has_builtin
            #if !__has_builtin(__builtin_closesocket)
                #error "__builtin_closesocket not found"
            #endif
        #elif ! defined(closesocket)
            /* Check for __builtin_closesocket only if no includes were added to the
             * prefix above, which means no definition of closesocket 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_closesocket;
            #else
                #error "No definition for __builtin_closesocket found in the prefix"
            #endif
        #endif
        return 0;
        }
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq5ufgk45/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq5ufgk45/testfile.c:14:17: error: '__builtin_closesocket' undeclared (first use in this function)
                 __builtin_closesocket;
                 ^~~~~~~~~~~~~~~~~~~~~
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq5ufgk45/testfile.c:14:17: note: each undeclared identifier is reported only once for each function it appears in

Checking for function "closesocket" : 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)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8dqmb2ke
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8dqmb2ke/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8dqmb2ke/output.obj -pipe -c -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 <malloc.h>

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

Header <malloc.h> has symbol "_aligned_malloc" : 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/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)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqjb1p03q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqjb1p03q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqjb1p03q/output.obj -pipe -c -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 <stdlib.h>

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

Header <stdlib.h> has symbol "arc4random" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwta0s7ue
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwta0s7ue/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

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

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

Has header "lzo/lzo1x.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/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)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbqxxjuo_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbqxxjuo_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbqxxjuo_/output.obj -pipe -c -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 <stdlib.h>

        #include <stdlib.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef getenv
                getenv;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <stdlib.h> has symbol "getenv" : 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/tmp959uuxdg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp959uuxdg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp959uuxdg/output.obj -pipe -c -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 <sys/stat.h>

        #include <sys/stat.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef lstat
                lstat;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <sys/stat.h> has symbol "lstat" : 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/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
Cached compiler stdout:
 
Cached 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 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqwsy7zue
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqwsy7zue/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqwsy7zue/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "GetProcessTimes" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp17hrxgvi
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp17hrxgvi/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp17hrxgvi/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "GetSystemTimeAsFileTime" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvnypfobp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvnypfobp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvnypfobp/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "LoadLibrary" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt5af74xr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt5af74xr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt5af74xr/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "MapViewOfFile" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9ya_pt6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9ya_pt6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe9ya_pt6/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "PeekNamedPipe" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzpdsi3ws
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzpdsi3ws/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzpdsi3ws/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "SetConsoleTextAttribute" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw6j5u75k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw6j5u75k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw6j5u75k/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "SetConsoleCtrlHandler" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp50amdayf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp50amdayf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp50amdayf/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "Sleep" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpehouwt6d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpehouwt6d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpehouwt6d/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "VirtualAlloc" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ew7o0f3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9ew7o0f3/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

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

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

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

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

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

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

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

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

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

Has header "mbarrier.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj4xaq6ec
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj4xaq6ec/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj4xaq6ec/output.obj -pipe -c -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 <windows.h>

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

Header <windows.h> has symbol "MemoryBarrier" : 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/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/tmpmnpqbm13
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmnpqbm13/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

Has header "x264.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqn0tbppt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqn0tbppt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqn0tbppt/output.obj -pipe -c -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 <stdlib.h>

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

Code:
 
        #ifdef __has_include
         #if !__has_include("semaphore.h")
          #error "Header 'semaphore.h' could not be found"
         #endif
        #else
         #include <semaphore.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "semaphore.h" with dependency threads: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ua9e8dv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ua9e8dv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp1ua9e8dv/output.obj -pipe -c -pthread -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 <semaphore.h>

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

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

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

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

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef atanf
                atanf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "atanf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxczjscz1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxczjscz1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxczjscz1/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef atan2f
                atan2f;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "atan2f" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7tsjini0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7tsjini0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7tsjini0/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef cbrt
                cbrt;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "cbrt" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_8aba6z8
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_8aba6z8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_8aba6z8/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef cbrtf
                cbrtf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "cbrtf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7b6852vs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7b6852vs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7b6852vs/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef copysign
                copysign;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "copysign" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8zr55_25
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8zr55_25/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8zr55_25/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef cosf
                cosf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "cosf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ksjqz4f
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_ksjqz4f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ksjqz4f/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef erf
                erf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "erf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiq1f_5ye
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiq1f_5ye/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiq1f_5ye/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef exp2
                exp2;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "exp2" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf6s4v56o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf6s4v56o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf6s4v56o/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef exp2f
                exp2f;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "exp2f" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpznv5f8ms
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpznv5f8ms/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpznv5f8ms/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef expf
                expf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "expf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgac61ikf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgac61ikf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgac61ikf/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef hypot
                hypot;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "hypot" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuf355c_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuf355c_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnuf355c_/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef isfinite
                isfinite;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "isfinite" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd3rde5ll
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd3rde5ll/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd3rde5ll/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef isinf
                isinf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "isinf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdz9vyto6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdz9vyto6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdz9vyto6/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef isnan
                isnan;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "isnan" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp36ewgdog
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp36ewgdog/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp36ewgdog/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef ldexpf
                ldexpf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "ldexpf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf_b6ldo6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf_b6ldo6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf_b6ldo6/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef llrint
                llrint;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "llrint" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpri71z1kj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpri71z1kj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpri71z1kj/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef llrintf
                llrintf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "llrintf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0l6x76hy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0l6x76hy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0l6x76hy/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef log2
                log2;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "log2" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps5h0q8ue
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps5h0q8ue/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps5h0q8ue/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef log2f
                log2f;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "log2f" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_m_bk5ay
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_m_bk5ay/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_m_bk5ay/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef log10f
                log10f;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "log10f" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwgkoaaa2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwgkoaaa2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwgkoaaa2/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef lrint
                lrint;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "lrint" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp16wiwhfg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp16wiwhfg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp16wiwhfg/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef lrintf
                lrintf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "lrintf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa6v9lraz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa6v9lraz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa6v9lraz/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef powf
                powf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "powf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbu7dk0vx
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbu7dk0vx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbu7dk0vx/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef rint
                rint;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "rint" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgjh0uyq1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgjh0uyq1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgjh0uyq1/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef round
                round;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "round" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa67abz1b
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa67abz1b/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa67abz1b/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef roundf
                roundf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "roundf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe881u8xg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe881u8xg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe881u8xg/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef sinf
                sinf;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "sinf" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp48ha4n36
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp48ha4n36/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp48ha4n36/output.obj -pipe -c -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 <math.h>

        #include <math.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef trunc
                trunc;
            #endif
            return 0;
        }
Compiler stdout:
 
Compiler stderr:
 
Header <math.h> has symbol "trunc" with dependency -lm: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjv05nabj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjv05nabj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjv05nabj/output.obj -pipe -c -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 <math.h>

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

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

Has header "dxva.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw2lucmym
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw2lucmym/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw2lucmym/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0 -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 <windows.h>
#include <dxva.h>

        void bar(void) {
            sizeof(DXVA_PicParams_VP9);
        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw2lucmym/testfile.c:1:21: fatal error: windows.h: No such file or directory
 #include <windows.h>
                     ^
compilation terminated.

Checking for type "DXVA_PicParams_VP9" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxehmqwbs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxehmqwbs/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

Has header "d3d11.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3096gnu4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3096gnu4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3096gnu4/output.obj -pipe -c -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 <windows.h>
#include <d3d11.h>

        void bar(void) {
            sizeof(ID3D11VideoContext);
        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3096gnu4/testfile.c:1:21: fatal error: windows.h: No such file or directory
 #include <windows.h>
                     ^
compilation terminated.

Checking for type "ID3D11VideoContext" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0oh4ofaa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0oh4ofaa/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

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

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

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

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

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

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

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

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

Has header "va/va_vpp.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzorarwew
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzorarwew/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzorarwew/output.obj -pipe -c -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 <va/va.h>
#include <va/va_vpp.h>

        void bar(void) {
            sizeof(VAProcPipelineParameterBuffer);
        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzorarwew/testfile.c:1:19: fatal error: va/va.h: No such file or directory
 #include <va/va.h>
                   ^
compilation terminated.

Checking for type "VAProcPipelineParameterBuffer" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptla5n5en
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptla5n5en/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

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

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

Has header "va/va_enc_mpeg2.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmperhrdysu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmperhrdysu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmperhrdysu/output.obj -pipe -c -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 <va/va.h>
#include <va/va_enc_mpeg2.h>

        void bar(void) {
            sizeof(VAEncPictureParameterBufferMPEG2);
        };
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmperhrdysu/testfile.c:1:19: fatal error: va/va.h: No such file or directory
 #include <va/va.h>
                   ^
compilation terminated.

Checking for type "VAEncPictureParameterBufferMPEG2" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgoss7ini
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgoss7ini/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

Has header "va/va_enc_vp9.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/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
Cached compiler stdout:
 
Cached 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 (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgpg42qag
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgpg42qag/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

Has header "dshow.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/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
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "netdb.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdsyzjp79
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdsyzjp79/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpdsyzjp79/output.obj -pipe -c -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 <netdb.h>

        void bar(void) {
            sizeof(struct addrinfo);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct addrinfo" : 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/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/tmppdd2efom
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppdd2efom/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppdd2efom/output.obj -pipe -c -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 <netinet/in.h>

        void bar(void) {
            sizeof(struct group_source_req);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct group_source_req" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcmz_tbeq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcmz_tbeq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcmz_tbeq/output.obj -pipe -c -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 <netinet/in.h>

        void bar(void) {
            sizeof(struct ip_mreq_source);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct ip_mreq_source" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6s088ydh
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6s088ydh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6s088ydh/output.obj -pipe -c -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 <netinet/in.h>

        void bar(void) {
            sizeof(struct ipv6_mreq);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct ipv6_mreq" : 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/tmphbjhyzpq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphbjhyzpq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphbjhyzpq/output.obj -pipe -c -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 <poll.h>

        void bar(void) {
            sizeof(struct pollfd);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct pollfd" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5jxs1k3j
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5jxs1k3j/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

Has header "netinet/sctp.h" : NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvmyo_sl0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvmyo_sl0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvmyo_sl0/output.obj -pipe -c -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 <netinet/in.h>

        void bar(void) {
            sizeof(struct sockaddr_in6);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct sockaddr_in6" : 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/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/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/tmp6f9r5_3k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6f9r5_3k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6f9r5_3k/output.obj -pipe -c -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 <sys/types.h>
#include <sys/socket.h>

        void bar(void) {
            sizeof(struct sockaddr_storage);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "struct sockaddr_storage" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe4lgx9lf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe4lgx9lf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe4lgx9lf/output.obj -pipe -c -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 <sys/types.h>
#include <sys/socket.h>

        void bar(void) {
            sizeof(socklen_t);
        };
Compiler stdout:
 
Compiler stderr:
 
Checking for type "socklen_t" : YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8k6604tl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8k6604tl/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

Has header "direct.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/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)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt025n6pk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpt025n6pk/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

Has header "frei0r.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/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
Cached compiler stdout:
 
Cached 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 (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/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
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "linux/fb.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3kq35eh4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3kq35eh4/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

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

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

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

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

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

Has header "Processing.NDI.Lib.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/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/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
Cached compiler stdout:
 
Cached compiler stderr:
 
Has header "sys/soundcard.h" : YES (cached)
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4h95w8r5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4h95w8r5/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

Has header "sys/videoio.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/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/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/tmpwoez2_je
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwoez2_je/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

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

Code:
 
        #ifdef __has_include
         #if !__has_include("asm/types.h")
          #error "Header 'asm/types.h' could not be found"
         #endif
        #else
         #include <asm/types.h>
        #endif
Compiler stdout:
 
Compiler stderr:
 
Has header "asm/types.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/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/tmpiztyhxd7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiztyhxd7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpiztyhxd7/output.obj -pipe -c -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 <linux/videodev2.h>


int i = V4L2_CAP_VIDEO_M2M_MPLANE | V4L2_CAP_VIDEO_M2M | V4L2_BUF_FLAG_LAST;
Compiler stdout:
 
Compiler stderr:
 
Checking if "v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpegksu6v9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpegksu6v9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpegksu6v9/output.obj -pipe -c -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:
 

_Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
Compiler stdout:
 
Compiler stderr:
 
Checking if "pragma_deprecated" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi0ou799h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi0ou799h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi0ou799h/output.obj -pipe -c -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 <math.h>


struct { double d; } static const bar[] = { { NAN } };
Compiler stdout:
 
Compiler stderr:
 
Checking if "const_nan" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxznwniba
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxznwniba/testfile.c -pipe -E -P -D_FILE_OFFSET_BITS=64 -P -O0 

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

Has header "arm_neon.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/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/tmpcld3yf6_
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcld3yf6_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcld3yf6_/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_VC1_ANNEX_G;
Compiler stdout:
 
Compiler stderr:
 
Checking if "vc1_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu0vv_wkt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu0vv_wkt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu0vv_wkt/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_MPEG1;
Compiler stdout:
 
Compiler stderr:
 
Checking if "mpeg1_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nl5pfqh
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_nl5pfqh/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_nl5pfqh/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_MPEG2;
Compiler stdout:
 
Compiler stderr:
 
Checking if "mpeg2_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprq3fr29g
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprq3fr29g/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprq3fr29g/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_MPEG4;
Compiler stdout:
 
Compiler stderr:
 
Checking if "mpeg4_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5mmzi6ih
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5mmzi6ih/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5mmzi6ih/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_HEVC;
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5mmzi6ih/testfile.c:5:9: error: 'V4L2_PIX_FMT_HEVC' undeclared here (not in a function)
 int i = V4L2_PIX_FMT_HEVC;
         ^~~~~~~~~~~~~~~~~

Checking if "hevc_v4l2_m2m" compiles: NO 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi198c34n
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi198c34n/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpi198c34n/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_H263;
Compiler stdout:
 
Compiler stderr:
 
Checking if "h263_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0htucabd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0htucabd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0htucabd/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_H264;
Compiler stdout:
 
Compiler stderr:
 
Checking if "h264_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv77ai41u
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv77ai41u/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv77ai41u/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_VP8;
Compiler stdout:
 
Compiler stderr:
 
Checking if "vp8_v4l2_m2m" compiles: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwhdx5c4t
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwhdx5c4t/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwhdx5c4t/output.obj -pipe -c -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 <sys/time.h>
#include <linux/videodev2.h>


int i = V4L2_PIX_FMT_VP9;
Compiler stdout:
 
Compiler stderr:
 /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwhdx5c4t/testfile.c:5:9: error: 'V4L2_PIX_FMT_VP9' undeclared here (not in a function)
 int i = V4L2_PIX_FMT_VP9;
         ^~~~~~~~~~~~~~~~

Checking if "vp9_v4l2_m2m" compiles: NO 
Program nasm found: NO
Program yasm found: NO
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3e30ba91
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3e30ba91/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3e30ba91/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 -O0 

Code:
 #ifdef __cplusplus
        extern "C" {
        #endif
        void meson_uscore_prefix (void) {}
        #ifdef __cplusplus
        }
        #endif
        
Compiler stdout:
 
Compiler stderr:
 
Symbols have underscore prefix: NO
Program find_things_extern.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py)
Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVOutputFormat --suffix=muxer --thing-suffix=muxer /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavformat/allformats.c
--- stdout ---
a64_muxer
ac3_muxer
adts_muxer
adx_muxer
aiff_muxer
amr_muxer
apng_muxer
aptx_muxer
aptx_hd_muxer
asf_muxer
ass_muxer
ast_muxer
asf_stream_muxer
au_muxer
avi_muxer
avm2_muxer
avs2_muxer
bit_muxer
caf_muxer
cavsvideo_muxer
codec2_muxer
codec2raw_muxer
crc_muxer
dash_muxer
data_muxer
daud_muxer
dirac_muxer
dnxhd_muxer
dts_muxer
dv_muxer
eac3_muxer
f4v_muxer
ffmetadata_muxer
fifo_muxer
fifo_test_muxer
filmstrip_muxer
fits_muxer
flac_muxer
flv_muxer
framecrc_muxer
framehash_muxer
framemd5_muxer
g722_muxer
g723_1_muxer
g726_muxer
g726le_muxer
gif_muxer
gsm_muxer
gxf_muxer
h261_muxer
h263_muxer
h264_muxer
hash_muxer
hds_muxer
hevc_muxer
hls_muxer
ico_muxer
ilbc_muxer
image2_muxer
image2pipe_muxer
ipod_muxer
ircam_muxer
ismv_muxer
ivf_muxer
jacosub_muxer
latm_muxer
lrc_muxer
m4v_muxer
md5_muxer
matroska_muxer
matroska_audio_muxer
microdvd_muxer
mjpeg_muxer
mlp_muxer
mmf_muxer
mov_muxer
mp2_muxer
mp3_muxer
mp4_muxer
mpeg1system_muxer
mpeg1vcd_muxer
mpeg1video_muxer
mpeg2dvd_muxer
mpeg2svcd_muxer
mpeg2video_muxer
mpeg2vob_muxer
mpegts_muxer
mpjpeg_muxer
mxf_muxer
mxf_d10_muxer
mxf_opatom_muxer
null_muxer
nut_muxer
oga_muxer
ogg_muxer
ogv_muxer
oma_muxer
opus_muxer
pcm_alaw_muxer
pcm_mulaw_muxer
pcm_vidc_muxer
pcm_f64be_muxer
pcm_f64le_muxer
pcm_f32be_muxer
pcm_f32le_muxer
pcm_s32be_muxer
pcm_s32le_muxer
pcm_s24be_muxer
pcm_s24le_muxer
pcm_s16be_muxer
pcm_s16le_muxer
pcm_s8_muxer
pcm_u32be_muxer
pcm_u32le_muxer
pcm_u24be_muxer
pcm_u24le_muxer
pcm_u16be_muxer
pcm_u16le_muxer
pcm_u8_muxer
psp_muxer
rawvideo_muxer
rm_muxer
roq_muxer
rso_muxer
rtp_muxer
rtp_mpegts_muxer
rtsp_muxer
sap_muxer
sbc_muxer
scc_muxer
segafilm_muxer
segment_muxer
stream_segment_muxer
singlejpeg_muxer
smjpeg_muxer
smoothstreaming_muxer
sox_muxer
spx_muxer
spdif_muxer
srt_muxer
sup_muxer
swf_muxer
tee_muxer
tg2_muxer
tgp_muxer
mkvtimestamp_v2_muxer
truehd_muxer
tta_muxer
uncodedframecrc_muxer
vc1_muxer
vc1t_muxer
voc_muxer
w64_muxer
wav_muxer
webm_muxer
webm_dash_manifest_muxer
webm_chunk_muxer
webp_muxer
webvtt_muxer
wtv_muxer
wv_muxer
yuv4mpegpipe_muxer
chromaprint_muxer

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVInputFormat --suffix=demuxer --thing-suffix=demuxer /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavformat/allformats.c
--- stdout ---
aa_demuxer
aac_demuxer
ac3_demuxer
acm_demuxer
act_demuxer
adf_demuxer
adp_demuxer
ads_demuxer
adx_demuxer
aea_demuxer
afc_demuxer
aiff_demuxer
aix_demuxer
amr_demuxer
amrnb_demuxer
amrwb_demuxer
anm_demuxer
apc_demuxer
ape_demuxer
apng_demuxer
aptx_demuxer
aptx_hd_demuxer
aqtitle_demuxer
asf_demuxer
asf_o_demuxer
ass_demuxer
ast_demuxer
au_demuxer
avi_demuxer
avisynth_demuxer
avr_demuxer
avs_demuxer
avs2_demuxer
bethsoftvid_demuxer
bfi_demuxer
bintext_demuxer
bink_demuxer
bit_demuxer
bmv_demuxer
bfstm_demuxer
brstm_demuxer
boa_demuxer
c93_demuxer
caf_demuxer
cavsvideo_demuxer
cdg_demuxer
cdxl_demuxer
cine_demuxer
codec2_demuxer
codec2raw_demuxer
concat_demuxer
dash_demuxer
data_demuxer
daud_demuxer
dcstr_demuxer
dfa_demuxer
dirac_demuxer
dnxhd_demuxer
dsf_demuxer
dsicin_demuxer
dss_demuxer
dts_demuxer
dtshd_demuxer
dv_demuxer
dvbsub_demuxer
dvbtxt_demuxer
dxa_demuxer
ea_demuxer
ea_cdata_demuxer
eac3_demuxer
epaf_demuxer
ffmetadata_demuxer
filmstrip_demuxer
fits_demuxer
flac_demuxer
flic_demuxer
flv_demuxer
live_flv_demuxer
fourxm_demuxer
frm_demuxer
fsb_demuxer
g722_demuxer
g723_1_demuxer
g726_demuxer
g726le_demuxer
g729_demuxer
gdv_demuxer
genh_demuxer
gif_demuxer
gsm_demuxer
gxf_demuxer
h261_demuxer
h263_demuxer
h264_demuxer
hevc_demuxer
hls_demuxer
hnm_demuxer
ico_demuxer
idcin_demuxer
idf_demuxer
iff_demuxer
ilbc_demuxer
image2_demuxer
image2pipe_demuxer
image2_alias_pix_demuxer
image2_brender_pix_demuxer
ingenient_demuxer
ipmovie_demuxer
ircam_demuxer
iss_demuxer
iv8_demuxer
ivf_demuxer
ivr_demuxer
jacosub_demuxer
jv_demuxer
lmlm4_demuxer
loas_demuxer
lrc_demuxer
lvf_demuxer
lxf_demuxer
m4v_demuxer
matroska_demuxer
mgsts_demuxer
microdvd_demuxer
mjpeg_demuxer
mjpeg_2000_demuxer
mlp_demuxer
mlv_demuxer
mm_demuxer
mmf_demuxer
mov_demuxer
mp3_demuxer
mpc_demuxer
mpc8_demuxer
mpegps_demuxer
mpegts_demuxer
mpegtsraw_demuxer
mpegvideo_demuxer
mpjpeg_demuxer
mpl2_demuxer
mpsub_demuxer
msf_demuxer
msnwc_tcp_demuxer
mtaf_demuxer
mtv_demuxer
musx_demuxer
mv_demuxer
mvi_demuxer
mxf_demuxer
mxg_demuxer
nc_demuxer
nistsphere_demuxer
nsp_demuxer
nsv_demuxer
nut_demuxer
nuv_demuxer
ogg_demuxer
oma_demuxer
paf_demuxer
pcm_alaw_demuxer
pcm_mulaw_demuxer
pcm_vidc_demuxer
pcm_f64be_demuxer
pcm_f64le_demuxer
pcm_f32be_demuxer
pcm_f32le_demuxer
pcm_s32be_demuxer
pcm_s32le_demuxer
pcm_s24be_demuxer
pcm_s24le_demuxer
pcm_s16be_demuxer
pcm_s16le_demuxer
pcm_s8_demuxer
pcm_u32be_demuxer
pcm_u32le_demuxer
pcm_u24be_demuxer
pcm_u24le_demuxer
pcm_u16be_demuxer
pcm_u16le_demuxer
pcm_u8_demuxer
pjs_demuxer
pmp_demuxer
pva_demuxer
pvf_demuxer
qcp_demuxer
r3d_demuxer
rawvideo_demuxer
realtext_demuxer
redspark_demuxer
rl2_demuxer
rm_demuxer
roq_demuxer
rpl_demuxer
rsd_demuxer
rso_demuxer
rtp_demuxer
rtsp_demuxer
s337m_demuxer
sami_demuxer
sap_demuxer
sbc_demuxer
sbg_demuxer
scc_demuxer
sdp_demuxer
sdr2_demuxer
sds_demuxer
sdx_demuxer
segafilm_demuxer
ser_demuxer
shorten_demuxer
siff_demuxer
sln_demuxer
smacker_demuxer
smjpeg_demuxer
smush_demuxer
sol_demuxer
sox_demuxer
spdif_demuxer
srt_demuxer
str_demuxer
stl_demuxer
subviewer1_demuxer
subviewer_demuxer
sup_demuxer
svag_demuxer
swf_demuxer
tak_demuxer
tedcaptions_demuxer
thp_demuxer
threedostr_demuxer
tiertexseq_demuxer
tmv_demuxer
truehd_demuxer
tta_demuxer
txd_demuxer
tty_demuxer
ty_demuxer
v210_demuxer
v210x_demuxer
vag_demuxer
vc1_demuxer
vc1t_demuxer
vivo_demuxer
vmd_demuxer
vobsub_demuxer
voc_demuxer
vpk_demuxer
vplayer_demuxer
vqf_demuxer
w64_demuxer
wav_demuxer
wc3_demuxer
webm_dash_manifest_demuxer
webvtt_demuxer
wsaud_demuxer
wsd_demuxer
wsvqa_demuxer
wtv_demuxer
wve_demuxer
wv_demuxer
xa_demuxer
xbin_demuxer
xmv_demuxer
xvag_demuxer
xwma_demuxer
yop_demuxer
yuv4mpegpipe_demuxer
image_bmp_pipe_demuxer
image_dds_pipe_demuxer
image_dpx_pipe_demuxer
image_exr_pipe_demuxer
image_j2k_pipe_demuxer
image_jpeg_pipe_demuxer
image_jpegls_pipe_demuxer
image_pam_pipe_demuxer
image_pbm_pipe_demuxer
image_pcx_pipe_demuxer
image_pgmyuv_pipe_demuxer
image_pgm_pipe_demuxer
image_pictor_pipe_demuxer
image_png_pipe_demuxer
image_ppm_pipe_demuxer
image_psd_pipe_demuxer
image_qdraw_pipe_demuxer
image_sgi_pipe_demuxer
image_svg_pipe_demuxer
image_sunrast_pipe_demuxer
image_tiff_pipe_demuxer
image_webp_pipe_demuxer
image_xpm_pipe_demuxer
image_xwd_pipe_demuxer
libgme_demuxer
libmodplug_demuxer
libopenmpt_demuxer
vapoursynth_demuxer

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVCodec --suffix=encoder --thing-suffix=encoder /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavcodec/allcodecs.c
--- stdout ---
a64multi_encoder
a64multi5_encoder
alias_pix_encoder
amv_encoder
apng_encoder
asv1_encoder
asv2_encoder
avrp_encoder
avui_encoder
ayuv_encoder
bmp_encoder
cinepak_encoder
cljr_encoder
comfortnoise_encoder
dnxhd_encoder
dpx_encoder
dvvideo_encoder
ffv1_encoder
ffvhuff_encoder
fits_encoder
flashsv_encoder
flashsv2_encoder
flv_encoder
gif_encoder
h261_encoder
h263_encoder
h263p_encoder
hap_encoder
huffyuv_encoder
jpeg2000_encoder
jpegls_encoder
ljpeg_encoder
magicyuv_encoder
mjpeg_encoder
mpeg1video_encoder
mpeg2video_encoder
mpeg4_encoder
msmpeg4v2_encoder
msmpeg4v3_encoder
msvideo1_encoder
pam_encoder
pbm_encoder
pcx_encoder
pgm_encoder
pgmyuv_encoder
png_encoder
ppm_encoder
prores_encoder
prores_aw_encoder
prores_ks_encoder
qtrle_encoder
r10k_encoder
r210_encoder
rawvideo_encoder
roq_encoder
rv10_encoder
rv20_encoder
s302m_encoder
sgi_encoder
snow_encoder
sunrast_encoder
svq1_encoder
targa_encoder
tiff_encoder
utvideo_encoder
v210_encoder
v308_encoder
v408_encoder
v410_encoder
vc2_encoder
wrapped_avframe_encoder
wmv1_encoder
wmv2_encoder
xbm_encoder
xface_encoder
xwd_encoder
y41p_encoder
yuv4_encoder
zlib_encoder
zmbv_encoder
aac_encoder
ac3_encoder
ac3_fixed_encoder
alac_encoder
aptx_encoder
aptx_hd_encoder
dca_encoder
eac3_encoder
flac_encoder
g723_1_encoder
mlp_encoder
mp2_encoder
mp2fixed_encoder
nellymoser_encoder
opus_encoder
ra_144_encoder
sbc_encoder
sonic_encoder
sonic_ls_encoder
truehd_encoder
tta_encoder
vorbis_encoder
wavpack_encoder
wmav1_encoder
wmav2_encoder
pcm_alaw_encoder
pcm_f32be_encoder
pcm_f32le_encoder
pcm_f64be_encoder
pcm_f64le_encoder
pcm_mulaw_encoder
pcm_s8_encoder
pcm_s8_planar_encoder
pcm_s16be_encoder
pcm_s16be_planar_encoder
pcm_s16le_encoder
pcm_s16le_planar_encoder
pcm_s24be_encoder
pcm_s24daud_encoder
pcm_s24le_encoder
pcm_s24le_planar_encoder
pcm_s32be_encoder
pcm_s32le_encoder
pcm_s32le_planar_encoder
pcm_s64be_encoder
pcm_s64le_encoder
pcm_u8_encoder
pcm_u16be_encoder
pcm_u16le_encoder
pcm_u24be_encoder
pcm_u24le_encoder
pcm_u32be_encoder
pcm_u32le_encoder
pcm_vidc_encoder
roq_dpcm_encoder
adpcm_adx_encoder
adpcm_g722_encoder
adpcm_g726_encoder
adpcm_g726le_encoder
adpcm_ima_qt_encoder
adpcm_ima_wav_encoder
adpcm_ms_encoder
adpcm_swf_encoder
adpcm_yamaha_encoder
ssa_encoder
ass_encoder
dvbsub_encoder
dvdsub_encoder
movtext_encoder
srt_encoder
subrip_encoder
text_encoder
webvtt_encoder
xsub_encoder
aac_at_encoder
alac_at_encoder
ilbc_at_encoder
pcm_alaw_at_encoder
pcm_mulaw_at_encoder
libaom_av1_encoder
libcodec2_encoder
libfdk_aac_encoder
libgsm_encoder
libgsm_ms_encoder
libilbc_encoder
libmp3lame_encoder
libopencore_amrnb_encoder
libopenjpeg_encoder
libopus_encoder
libshine_encoder
libspeex_encoder
libtheora_encoder
libtwolame_encoder
libvo_amrwbenc_encoder
libvorbis_encoder
libvpx_vp8_encoder
libvpx_vp9_encoder
libwavpack_encoder
libwebp_anim_encoder
libwebp_encoder
libx262_encoder
libx264_encoder
libx264rgb_encoder
libx265_encoder
libxavs_encoder
libxavs2_encoder
libxvid_encoder
h263_v4l2m2m_encoder
libopenh264_encoder
h264_amf_encoder
h264_nvenc_encoder
h264_omx_encoder
h264_qsv_encoder
h264_v4l2m2m_encoder
h264_vaapi_encoder
h264_videotoolbox_encoder
nvenc_encoder
nvenc_h264_encoder
nvenc_hevc_encoder
hevc_amf_encoder
hevc_nvenc_encoder
hevc_qsv_encoder
hevc_v4l2m2m_encoder
hevc_vaapi_encoder
hevc_videotoolbox_encoder
libkvazaar_encoder
mjpeg_qsv_encoder
mjpeg_vaapi_encoder
mpeg2_qsv_encoder
mpeg2_vaapi_encoder
mpeg4_v4l2m2m_encoder
vp8_v4l2m2m_encoder
vp8_vaapi_encoder
vp9_vaapi_encoder

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVCodec --suffix=decoder --thing-suffix=decoder /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavcodec/allcodecs.c
--- stdout ---
aasc_decoder
aic_decoder
alias_pix_decoder
amv_decoder
anm_decoder
ansi_decoder
apng_decoder
asv1_decoder
asv2_decoder
aura_decoder
aura2_decoder
avrp_decoder
avrn_decoder
avs_decoder
avui_decoder
ayuv_decoder
bethsoftvid_decoder
bfi_decoder
bink_decoder
bitpacked_decoder
bmp_decoder
bmv_video_decoder
brender_pix_decoder
c93_decoder
cavs_decoder
cdgraphics_decoder
cdxl_decoder
cfhd_decoder
cinepak_decoder
clearvideo_decoder
cljr_decoder
cllc_decoder
comfortnoise_decoder
cpia_decoder
cscd_decoder
cyuv_decoder
dds_decoder
dfa_decoder
dirac_decoder
dnxhd_decoder
dpx_decoder
dsicinvideo_decoder
dvaudio_decoder
dvvideo_decoder
dxa_decoder
dxtory_decoder
dxv_decoder
eacmv_decoder
eamad_decoder
eatgq_decoder
eatgv_decoder
eatqi_decoder
eightbps_decoder
eightsvx_exp_decoder
eightsvx_fib_decoder
escape124_decoder
escape130_decoder
exr_decoder
ffv1_decoder
ffvhuff_decoder
fic_decoder
fits_decoder
flashsv_decoder
flashsv2_decoder
flic_decoder
flv_decoder
fmvc_decoder
fourxm_decoder
fraps_decoder
frwu_decoder
g2m_decoder
gdv_decoder
gif_decoder
h261_decoder
h263_decoder
h263i_decoder
h263p_decoder
h263_v4l2m2m_decoder
h264_decoder
h264_crystalhd_decoder
h264_v4l2m2m_decoder
h264_mediacodec_decoder
h264_mmal_decoder
h264_qsv_decoder
h264_rkmpp_decoder
hap_decoder
hevc_decoder
hevc_qsv_decoder
hevc_rkmpp_decoder
hevc_v4l2m2m_decoder
hnm4_video_decoder
hq_hqa_decoder
hqx_decoder
huffyuv_decoder
idcin_decoder
iff_ilbm_decoder
imm4_decoder
indeo2_decoder
indeo3_decoder
indeo4_decoder
indeo5_decoder
interplay_video_decoder
jpeg2000_decoder
jpegls_decoder
jv_decoder
kgv1_decoder
kmvc_decoder
lagarith_decoder
loco_decoder
m101_decoder
magicyuv_decoder
mdec_decoder
mimic_decoder
mjpeg_decoder
mjpegb_decoder
mmvideo_decoder
motionpixels_decoder
mpeg1video_decoder
mpeg2video_decoder
mpeg4_decoder
mpeg4_crystalhd_decoder
mpeg4_v4l2m2m_decoder
mpeg4_mmal_decoder
mpegvideo_decoder
mpeg1_v4l2m2m_decoder
mpeg2_mmal_decoder
mpeg2_crystalhd_decoder
mpeg2_v4l2m2m_decoder
mpeg2_qsv_decoder
mpeg2_mediacodec_decoder
msa1_decoder
mscc_decoder
msmpeg4v1_decoder
msmpeg4v2_decoder
msmpeg4v3_decoder
msmpeg4_crystalhd_decoder
msrle_decoder
mss1_decoder
mss2_decoder
msvideo1_decoder
mszh_decoder
mts2_decoder
mvc1_decoder
mvc2_decoder
mwsc_decoder
mxpeg_decoder
nuv_decoder
paf_video_decoder
pam_decoder
pbm_decoder
pcx_decoder
pgm_decoder
pgmyuv_decoder
pictor_decoder
pixlet_decoder
png_decoder
ppm_decoder
prores_decoder
prosumer_decoder
psd_decoder
ptx_decoder
qdraw_decoder
qpeg_decoder
qtrle_decoder
r10k_decoder
r210_decoder
rasc_decoder
rawvideo_decoder
rl2_decoder
roq_decoder
rpza_decoder
rscc_decoder
rv10_decoder
rv20_decoder
rv30_decoder
rv40_decoder
s302m_decoder
sanm_decoder
scpr_decoder
screenpresso_decoder
sdx2_dpcm_decoder
sgi_decoder
sgirle_decoder
sheervideo_decoder
smacker_decoder
smc_decoder
smvjpeg_decoder
snow_decoder
sp5x_decoder
speedhq_decoder
srgc_decoder
sunrast_decoder
svq1_decoder
svq3_decoder
targa_decoder
targa_y216_decoder
tdsc_decoder
theora_decoder
thp_decoder
tiertexseqvideo_decoder
tiff_decoder
tmv_decoder
truemotion1_decoder
truemotion2_decoder
truemotion2rt_decoder
tscc_decoder
tscc2_decoder
txd_decoder
ulti_decoder
utvideo_decoder
v210_decoder
v210x_decoder
v308_decoder
v408_decoder
v410_decoder
vb_decoder
vble_decoder
vc1_decoder
vc1_crystalhd_decoder
vc1image_decoder
vc1_mmal_decoder
vc1_qsv_decoder
vc1_v4l2m2m_decoder
vcr1_decoder
vmdvideo_decoder
vmnc_decoder
vp3_decoder
vp5_decoder
vp6_decoder
vp6a_decoder
vp6f_decoder
vp7_decoder
vp8_decoder
vp8_rkmpp_decoder
vp8_v4l2m2m_decoder
vp9_decoder
vp9_rkmpp_decoder
vp9_v4l2m2m_decoder
vqa_decoder
webp_decoder
wcmv_decoder
wrapped_avframe_decoder
wmv1_decoder
wmv2_decoder
wmv3_decoder
wmv3_crystalhd_decoder
wmv3image_decoder
wnv1_decoder
xan_wc3_decoder
xan_wc4_decoder
xbm_decoder
xface_decoder
xl_decoder
xpm_decoder
xwd_decoder
y41p_decoder
ylc_decoder
yop_decoder
yuv4_decoder
zero12v_decoder
zerocodec_decoder
zlib_decoder
zmbv_decoder
aac_decoder
aac_fixed_decoder
aac_latm_decoder
ac3_decoder
ac3_fixed_decoder
alac_decoder
als_decoder
amrnb_decoder
amrwb_decoder
ape_decoder
aptx_decoder
aptx_hd_decoder
atrac1_decoder
atrac3_decoder
atrac3al_decoder
atrac3p_decoder
atrac3pal_decoder
atrac9_decoder
binkaudio_dct_decoder
binkaudio_rdft_decoder
bmv_audio_decoder
cook_decoder
dca_decoder
dolby_e_decoder
dsd_lsbf_decoder
dsd_msbf_decoder
dsd_lsbf_planar_decoder
dsd_msbf_planar_decoder
dsicinaudio_decoder
dss_sp_decoder
dst_decoder
eac3_decoder
evrc_decoder
ffwavesynth_decoder
flac_decoder
g723_1_decoder
g729_decoder
gsm_decoder
gsm_ms_decoder
iac_decoder
ilbc_decoder
imc_decoder
interplay_acm_decoder
mace3_decoder
mace6_decoder
metasound_decoder
mlp_decoder
mp1_decoder
mp1float_decoder
mp2_decoder
mp2float_decoder
mp3float_decoder
mp3_decoder
mp3adufloat_decoder
mp3adu_decoder
mp3on4float_decoder
mp3on4_decoder
mpc7_decoder
mpc8_decoder
nellymoser_decoder
on2avc_decoder
opus_decoder
paf_audio_decoder
qcelp_decoder
qdm2_decoder
qdmc_decoder
ra_144_decoder
ra_288_decoder
ralf_decoder
sbc_decoder
shorten_decoder
sipr_decoder
smackaud_decoder
sonic_decoder
tak_decoder
truehd_decoder
truespeech_decoder
tta_decoder
twinvq_decoder
vmdaudio_decoder
vorbis_decoder
wavpack_decoder
wmalossless_decoder
wmapro_decoder
wmav1_decoder
wmav2_decoder
wmavoice_decoder
ws_snd1_decoder
xma1_decoder
xma2_decoder
pcm_alaw_decoder
pcm_bluray_decoder
pcm_dvd_decoder
pcm_f16le_decoder
pcm_f24le_decoder
pcm_f32be_decoder
pcm_f32le_decoder
pcm_f64be_decoder
pcm_f64le_decoder
pcm_lxf_decoder
pcm_mulaw_decoder
pcm_s8_decoder
pcm_s8_planar_decoder
pcm_s16be_decoder
pcm_s16be_planar_decoder
pcm_s16le_decoder
pcm_s16le_planar_decoder
pcm_s24be_decoder
pcm_s24daud_decoder
pcm_s24le_decoder
pcm_s24le_planar_decoder
pcm_s32be_decoder
pcm_s32le_decoder
pcm_s32le_planar_decoder
pcm_s64be_decoder
pcm_s64le_decoder
pcm_u8_decoder
pcm_u16be_decoder
pcm_u16le_decoder
pcm_u24be_decoder
pcm_u24le_decoder
pcm_u32be_decoder
pcm_u32le_decoder
pcm_vidc_decoder
pcm_zork_decoder
gremlin_dpcm_decoder
interplay_dpcm_decoder
roq_dpcm_decoder
sol_dpcm_decoder
xan_dpcm_decoder
adpcm_4xm_decoder
adpcm_adx_decoder
adpcm_afc_decoder
adpcm_aica_decoder
adpcm_ct_decoder
adpcm_dtk_decoder
adpcm_ea_decoder
adpcm_ea_maxis_xa_decoder
adpcm_ea_r1_decoder
adpcm_ea_r2_decoder
adpcm_ea_r3_decoder
adpcm_ea_xas_decoder
adpcm_g722_decoder
adpcm_g726_decoder
adpcm_g726le_decoder
adpcm_ima_amv_decoder
adpcm_ima_apc_decoder
adpcm_ima_dat4_decoder
adpcm_ima_dk3_decoder
adpcm_ima_dk4_decoder
adpcm_ima_ea_eacs_decoder
adpcm_ima_ea_sead_decoder
adpcm_ima_iss_decoder
adpcm_ima_oki_decoder
adpcm_ima_qt_decoder
adpcm_ima_rad_decoder
adpcm_ima_smjpeg_decoder
adpcm_ima_wav_decoder
adpcm_ima_ws_decoder
adpcm_ms_decoder
adpcm_mtaf_decoder
adpcm_psx_decoder
adpcm_sbpro_2_decoder
adpcm_sbpro_3_decoder
adpcm_sbpro_4_decoder
adpcm_swf_decoder
adpcm_thp_decoder
adpcm_thp_le_decoder
adpcm_vima_decoder
adpcm_xa_decoder
adpcm_yamaha_decoder
ssa_decoder
ass_decoder
ccaption_decoder
dvbsub_decoder
dvdsub_decoder
jacosub_decoder
microdvd_decoder
movtext_decoder
mpl2_decoder
pgssub_decoder
pjs_decoder
realtext_decoder
sami_decoder
srt_decoder
stl_decoder
subrip_decoder
subviewer_decoder
subviewer1_decoder
text_decoder
vplayer_decoder
webvtt_decoder
xsub_decoder
aac_at_decoder
ac3_at_decoder
adpcm_ima_qt_at_decoder
alac_at_decoder
amr_nb_at_decoder
eac3_at_decoder
gsm_ms_at_decoder
ilbc_at_decoder
mp1_at_decoder
mp2_at_decoder
mp3_at_decoder
pcm_alaw_at_decoder
pcm_mulaw_at_decoder
qdmc_at_decoder
qdm2_at_decoder
libaom_av1_decoder
libcelt_decoder
libcodec2_decoder
libdavs2_decoder
libfdk_aac_decoder
libgsm_decoder
libgsm_ms_decoder
libilbc_decoder
libopencore_amrnb_decoder
libopencore_amrwb_decoder
libopenjpeg_decoder
libopus_decoder
librsvg_decoder
libspeex_decoder
libvorbis_decoder
libvpx_vp8_decoder
libvpx_vp9_decoder
libzvbi_teletext_decoder
bintext_decoder
xbin_decoder
idf_decoder
libopenh264_decoder
h264_cuvid_decoder
hevc_cuvid_decoder
hevc_mediacodec_decoder
mjpeg_cuvid_decoder
mpeg1_cuvid_decoder
mpeg2_cuvid_decoder
mpeg4_cuvid_decoder
mpeg4_mediacodec_decoder
vc1_cuvid_decoder
vp8_cuvid_decoder
vp8_mediacodec_decoder
vp8_qsv_decoder
vp9_cuvid_decoder
vp9_mediacodec_decoder

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVCodecParser --suffix=parser --thing-suffix=parser /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavcodec/parsers.c
--- stdout ---
aac_parser
aac_latm_parser
ac3_parser
adx_parser
av1_parser
avs2_parser
bmp_parser
cavsvideo_parser
cook_parser
dca_parser
dirac_parser
dnxhd_parser
dpx_parser
dvaudio_parser
dvbsub_parser
dvdsub_parser
dvd_nav_parser
flac_parser
g729_parser
gsm_parser
h261_parser
h263_parser
h264_parser
hevc_parser
mjpeg_parser
mlp_parser
mpeg4video_parser
mpegaudio_parser
mpegvideo_parser
opus_parser
png_parser
pnm_parser
rv30_parser
rv40_parser
sbc_parser
sipr_parser
tak_parser
vc1_parser
vorbis_parser
vp3_parser
vp8_parser
vp9_parser
xma_parser

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVBitStreamFilter --suffix=bsf --thing-suffix=bsf /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavcodec/bitstream_filters.c
--- stdout ---
aac_adtstoasc_bsf
av1_metadata_bsf
chomp_bsf
dump_extradata_bsf
dca_core_bsf
eac3_core_bsf
extract_extradata_bsf
filter_units_bsf
h264_metadata_bsf
h264_mp4toannexb_bsf
h264_redundant_pps_bsf
hapqa_extract_bsf
hevc_metadata_bsf
hevc_mp4toannexb_bsf
imx_dump_header_bsf
mjpeg2jpeg_bsf
mjpega_dump_header_bsf
mp3_header_decompress_bsf
mpeg2_metadata_bsf
mpeg4_unpack_bframes_bsf
mov2textsub_bsf
noise_bsf
null_bsf
remove_extradata_bsf
text2movsub_bsf
trace_headers_bsf
vp9_metadata_bsf
vp9_raw_reorder_bsf
vp9_superframe_bsf
vp9_superframe_split_bsf

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVHWAccel --suffix=hwaccel --thing-suffix=hwaccel /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavcodec/hwaccels.h
--- stdout ---
h263_vaapi_hwaccel
h263_videotoolbox_hwaccel
h264_d3d11va_hwaccel
h264_d3d11va2_hwaccel
h264_dxva2_hwaccel
h264_nvdec_hwaccel
h264_vaapi_hwaccel
h264_vdpau_hwaccel
h264_videotoolbox_hwaccel
hevc_d3d11va_hwaccel
hevc_d3d11va2_hwaccel
hevc_dxva2_hwaccel
hevc_nvdec_hwaccel
hevc_vaapi_hwaccel
hevc_vdpau_hwaccel
hevc_videotoolbox_hwaccel
mjpeg_nvdec_hwaccel
mjpeg_vaapi_hwaccel
mpeg1_nvdec_hwaccel
mpeg1_vdpau_hwaccel
mpeg1_videotoolbox_hwaccel
mpeg1_xvmc_hwaccel
mpeg2_d3d11va_hwaccel
mpeg2_d3d11va2_hwaccel
mpeg2_nvdec_hwaccel
mpeg2_dxva2_hwaccel
mpeg2_vaapi_hwaccel
mpeg2_vdpau_hwaccel
mpeg2_videotoolbox_hwaccel
mpeg2_xvmc_hwaccel
mpeg4_nvdec_hwaccel
mpeg4_vaapi_hwaccel
mpeg4_vdpau_hwaccel
mpeg4_videotoolbox_hwaccel
vc1_d3d11va_hwaccel
vc1_d3d11va2_hwaccel
vc1_dxva2_hwaccel
vc1_nvdec_hwaccel
vc1_vaapi_hwaccel
vc1_vdpau_hwaccel
vp8_nvdec_hwaccel
vp8_vaapi_hwaccel
vp9_d3d11va_hwaccel
vp9_d3d11va2_hwaccel
vp9_dxva2_hwaccel
vp9_nvdec_hwaccel
vp9_vaapi_hwaccel
wmv3_d3d11va_hwaccel
wmv3_d3d11va2_hwaccel
wmv3_dxva2_hwaccel
wmv3_nvdec_hwaccel
wmv3_vaapi_hwaccel
wmv3_vdpau_hwaccel

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=URLProtocol --suffix=protocol --thing-suffix=protocol /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavformat/protocols.c
--- stdout ---
async_protocol
bluray_protocol
cache_protocol
concat_protocol
crypto_protocol
data_protocol
ffrtmpcrypt_protocol
ffrtmphttp_protocol
file_protocol
ftp_protocol
gopher_protocol
hls_protocol
http_protocol
httpproxy_protocol
https_protocol
icecast_protocol
mmsh_protocol
mmst_protocol
md5_protocol
pipe_protocol
prompeg_protocol
rtmp_protocol
rtmpe_protocol
rtmps_protocol
rtmpt_protocol
rtmpte_protocol
rtmpts_protocol
rtp_protocol
sctp_protocol
srtp_protocol
subfile_protocol
tee_protocol
tcp_protocol
tls_protocol
udp_protocol
udplite_protocol
unix_protocol
librtmp_protocol
librtmpe_protocol
librtmps_protocol
librtmpt_protocol
librtmpte_protocol
libsrt_protocol
libssh_protocol
libsmbclient_protocol

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVOutputFormat --suffix=muxer --thing-suffix=outdev /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavdevice/alldevices.c
--- stdout ---
alsa_outdev
caca_outdev
decklink_outdev
libndi_newtek_outdev
fbdev_outdev
opengl_outdev
oss_outdev
pulse_outdev
sdl2_outdev
sndio_outdev
v4l2_outdev
xv_outdev

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things_extern.py --type=AVInputFormat --suffix=demuxer --thing-suffix=indev /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavdevice/alldevices.c
--- stdout ---
alsa_indev
android_camera_indev
avfoundation_indev
bktr_indev
decklink_indev
libndi_newtek_indev
dshow_indev
fbdev_indev
gdigrab_indev
iec61883_indev
jack_indev
kmsgrab_indev
lavfi_indev
openal_indev
oss_indev
pulse_indev
sndio_indev
v4l2_indev
vfwcap_indev
xcbgrab_indev
libcdio_indev
libdc1394_indev

--- stderr ---


Program find_things.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things.py)
Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things.py /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavfilter/allfilters.c
--- stdout ---
abench_filter
acompressor_filter
acontrast_filter
acopy_filter
acue_filter
acrossfade_filter
acrossover_filter
acrusher_filter
adeclick_filter
adeclip_filter
adelay_filter
aderivative_filter
aecho_filter
aemphasis_filter
aeval_filter
afade_filter
afftdn_filter
afftfilt_filter
afir_filter
aformat_filter
agate_filter
aiir_filter
aintegral_filter
ainterleave_filter
alimiter_filter
allpass_filter
aloop_filter
amerge_filter
ametadata_filter
amix_filter
amultiply_filter
anequalizer_filter
anull_filter
apad_filter
aperms_filter
aphaser_filter
apulsator_filter
arealtime_filter
aresample_filter
areverse_filter
aselect_filter
asendcmd_filter
asetnsamples_filter
asetpts_filter
asetrate_filter
asettb_filter
ashowinfo_filter
asidedata_filter
asplit_filter
astats_filter
astreamselect_filter
atempo_filter
atrim_filter
azmq_filter
bandpass_filter
bandreject_filter
bass_filter
biquad_filter
bs2b_filter
channelmap_filter
channelsplit_filter
chorus_filter
compand_filter
compensationdelay_filter
crossfeed_filter
crystalizer_filter
dcshift_filter
drmeter_filter
dynaudnorm_filter
earwax_filter
ebur128_filter
equalizer_filter
extrastereo_filter
firequalizer_filter
flanger_filter
haas_filter
hdcd_filter
headphone_filter
highpass_filter
highshelf_filter
join_filter
ladspa_filter
loudnorm_filter
lowpass_filter
lowshelf_filter
lv2_filter
mcompand_filter
pan_filter
replaygain_filter
resample_filter
rubberband_filter
sidechaincompress_filter
sidechaingate_filter
silencedetect_filter
silenceremove_filter
sofalizer_filter
stereotools_filter
stereowiden_filter
superequalizer_filter
surround_filter
treble_filter
tremolo_filter
vibrato_filter
volume_filter
volumedetect_filter
aevalsrc_filter
anoisesrc_filter
anullsrc_filter
flite_filter
hilbert_filter
sinc_filter
sine_filter
anullsink_filter
alphaextract_filter
alphamerge_filter
amplify_filter
ass_filter
atadenoise_filter
avgblur_filter
avgblur_opencl_filter
bbox_filter
bench_filter
bitplanenoise_filter
blackdetect_filter
blackframe_filter
blend_filter
bm3d_filter
boxblur_filter
boxblur_opencl_filter
bwdif_filter
chromahold_filter
chromakey_filter
ciescope_filter
codecview_filter
colorbalance_filter
colorchannelmixer_filter
colorkey_filter
colorlevels_filter
colormatrix_filter
colorspace_filter
convolution_filter
convolution_opencl_filter
convolve_filter
copy_filter
coreimage_filter
cover_rect_filter
crop_filter
cropdetect_filter
cue_filter
curves_filter
datascope_filter
dctdnoiz_filter
deband_filter
deblock_filter
decimate_filter
deconvolve_filter
deflate_filter
deflicker_filter
deinterlace_qsv_filter
deinterlace_vaapi_filter
dejudder_filter
delogo_filter
denoise_vaapi_filter
deshake_filter
despill_filter
detelecine_filter
dilation_filter
dilation_opencl_filter
displace_filter
doubleweave_filter
drawbox_filter
drawgraph_filter
drawgrid_filter
drawtext_filter
edgedetect_filter
elbg_filter
entropy_filter
eq_filter
erosion_filter
erosion_opencl_filter
extractplanes_filter
fade_filter
fftdnoiz_filter
fftfilt_filter
field_filter
fieldhint_filter
fieldmatch_filter
fieldorder_filter
fillborders_filter
find_rect_filter
floodfill_filter
format_filter
fps_filter
framepack_filter
framerate_filter
framestep_filter
frei0r_filter
fspp_filter
gblur_filter
geq_filter
gradfun_filter
graphmonitor_filter
greyedge_filter
haldclut_filter
hflip_filter
histeq_filter
histogram_filter
hqdn3d_filter
hqx_filter
hstack_filter
hue_filter
hwdownload_filter
hwmap_filter
hwupload_filter
hwupload_cuda_filter
hysteresis_filter
idet_filter
il_filter
inflate_filter
interlace_filter
interleave_filter
kerndeint_filter
lenscorrection_filter
lensfun_filter
libvmaf_filter
limiter_filter
loop_filter
lumakey_filter
lut_filter
lut1d_filter
lut2_filter
lut3d_filter
lutrgb_filter
lutyuv_filter
maskedclamp_filter
maskedmerge_filter
mcdeint_filter
mergeplanes_filter
mestimate_filter
metadata_filter
midequalizer_filter
minterpolate_filter
mix_filter
mpdecimate_filter
negate_filter
nlmeans_filter
nnedi_filter
noformat_filter
noise_filter
normalize_filter
null_filter
ocr_filter
ocv_filter
oscilloscope_filter
overlay_filter
overlay_opencl_filter
overlay_qsv_filter
owdenoise_filter
pad_filter
palettegen_filter
paletteuse_filter
perms_filter
perspective_filter
phase_filter
pixdesctest_filter
pixscope_filter
pp_filter
pp7_filter
premultiply_filter
prewitt_filter
prewitt_opencl_filter
procamp_vaapi_filter
program_opencl_filter
pseudocolor_filter
psnr_filter
pullup_filter
qp_filter
random_filter
readeia608_filter
readvitc_filter
realtime_filter
remap_filter
removegrain_filter
removelogo_filter
repeatfields_filter
reverse_filter
roberts_filter
roberts_opencl_filter
rotate_filter
sab_filter
scale_filter
scale_cuda_filter
scale_npp_filter
scale_qsv_filter
scale_vaapi_filter
scale2ref_filter
select_filter
selectivecolor_filter
sendcmd_filter
separatefields_filter
setdar_filter
setfield_filter
setparams_filter
setpts_filter
setrange_filter
setsar_filter
settb_filter
sharpness_vaapi_filter
showinfo_filter
showpalette_filter
shuffleframes_filter
shuffleplanes_filter
sidedata_filter
signalstats_filter
signature_filter
smartblur_filter
sobel_filter
sobel_opencl_filter
split_filter
spp_filter
sr_filter
ssim_filter
stereo3d_filter
streamselect_filter
subtitles_filter
super2xsai_filter
swaprect_filter
swapuv_filter
tblend_filter
telecine_filter
threshold_filter
thumbnail_filter
thumbnail_cuda_filter
tile_filter
tinterlace_filter
tlut2_filter
tmix_filter
tonemap_filter
tonemap_opencl_filter
transpose_filter
transpose_npp_filter
trim_filter
unpremultiply_filter
unsharp_filter
unsharp_opencl_filter
uspp_filter
vaguedenoiser_filter
vectorscope_filter
vflip_filter
vfrdet_filter
vibrance_filter
vidstabdetect_filter
vidstabtransform_filter
vignette_filter
vmafmotion_filter
vpp_qsv_filter
vstack_filter
w3fdif_filter
waveform_filter
weave_filter
xbr_filter
xstack_filter
yadif_filter
yadif_cuda_filter
zmq_filter
zoompan_filter
zscale_filter
allrgb_filter
allyuv_filter
cellauto_filter
color_filter
coreimagesrc_filter
frei0r_src_filter
haldclutsrc_filter
life_filter
mandelbrot_filter
mptestsrc_filter
nullsrc_filter
openclsrc_filter
pal75bars_filter
pal100bars_filter
rgbtestsrc_filter
smptebars_filter
smptehdbars_filter
testsrc_filter
testsrc2_filter
yuvtestsrc_filter
nullsink_filter
abitscope_filter
adrawgraph_filter
agraphmonitor_filter
ahistogram_filter
aphasemeter_filter
avectorscope_filter
concat_filter
showcqt_filter
showfreqs_filter
showspectrum_filter
showspectrumpic_filter
showvolume_filter
showwaves_filter
showwavespic_filter
spectrumsynth_filter
amovie_filter
movie_filter
afifo_filter
fifo_filter

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/find_things.py --full /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavfilter/allfilters.c
--- stdout ---
af_abench
af_acompressor
af_acontrast
af_acopy
af_acue
af_acrossfade
af_acrossover
af_acrusher
af_adeclick
af_adeclip
af_adelay
af_aderivative
af_aecho
af_aemphasis
af_aeval
af_afade
af_afftdn
af_afftfilt
af_afir
af_aformat
af_agate
af_aiir
af_aintegral
af_ainterleave
af_alimiter
af_allpass
af_aloop
af_amerge
af_ametadata
af_amix
af_amultiply
af_anequalizer
af_anull
af_apad
af_aperms
af_aphaser
af_apulsator
af_arealtime
af_aresample
af_areverse
af_aselect
af_asendcmd
af_asetnsamples
af_asetpts
af_asetrate
af_asettb
af_ashowinfo
af_asidedata
af_asplit
af_astats
af_astreamselect
af_atempo
af_atrim
af_azmq
af_bandpass
af_bandreject
af_bass
af_biquad
af_bs2b
af_channelmap
af_channelsplit
af_chorus
af_compand
af_compensationdelay
af_crossfeed
af_crystalizer
af_dcshift
af_drmeter
af_dynaudnorm
af_earwax
af_ebur128
af_equalizer
af_extrastereo
af_firequalizer
af_flanger
af_haas
af_hdcd
af_headphone
af_highpass
af_highshelf
af_join
af_ladspa
af_loudnorm
af_lowpass
af_lowshelf
af_lv2
af_mcompand
af_pan
af_replaygain
af_resample
af_rubberband
af_sidechaincompress
af_sidechaingate
af_silencedetect
af_silenceremove
af_sofalizer
af_stereotools
af_stereowiden
af_superequalizer
af_surround
af_treble
af_tremolo
af_vibrato
af_volume
af_volumedetect
asrc_aevalsrc
asrc_anoisesrc
asrc_anullsrc
asrc_flite
asrc_hilbert
asrc_sinc
asrc_sine
asink_anullsink
vf_alphaextract
vf_alphamerge
vf_amplify
vf_ass
vf_atadenoise
vf_avgblur
vf_avgblur_opencl
vf_bbox
vf_bench
vf_bitplanenoise
vf_blackdetect
vf_blackframe
vf_blend
vf_bm3d
vf_boxblur
vf_boxblur_opencl
vf_bwdif
vf_chromahold
vf_chromakey
vf_ciescope
vf_codecview
vf_colorbalance
vf_colorchannelmixer
vf_colorkey
vf_colorlevels
vf_colormatrix
vf_colorspace
vf_convolution
vf_convolution_opencl
vf_convolve
vf_copy
vf_coreimage
vf_cover_rect
vf_crop
vf_cropdetect
vf_cue
vf_curves
vf_datascope
vf_dctdnoiz
vf_deband
vf_deblock
vf_decimate
vf_deconvolve
vf_deflate
vf_deflicker
vf_deinterlace_qsv
vf_deinterlace_vaapi
vf_dejudder
vf_delogo
vf_denoise_vaapi
vf_deshake
vf_despill
vf_detelecine
vf_dilation
vf_dilation_opencl
vf_displace
vf_doubleweave
vf_drawbox
vf_drawgraph
vf_drawgrid
vf_drawtext
vf_edgedetect
vf_elbg
vf_entropy
vf_eq
vf_erosion
vf_erosion_opencl
vf_extractplanes
vf_fade
vf_fftdnoiz
vf_fftfilt
vf_field
vf_fieldhint
vf_fieldmatch
vf_fieldorder
vf_fillborders
vf_find_rect
vf_floodfill
vf_format
vf_fps
vf_framepack
vf_framerate
vf_framestep
vf_frei0r
vf_fspp
vf_gblur
vf_geq
vf_gradfun
vf_graphmonitor
vf_greyedge
vf_haldclut
vf_hflip
vf_histeq
vf_histogram
vf_hqdn3d
vf_hqx
vf_hstack
vf_hue
vf_hwdownload
vf_hwmap
vf_hwupload
vf_hwupload_cuda
vf_hysteresis
vf_idet
vf_il
vf_inflate
vf_interlace
vf_interleave
vf_kerndeint
vf_lenscorrection
vf_lensfun
vf_libvmaf
vf_limiter
vf_loop
vf_lumakey
vf_lut
vf_lut1d
vf_lut2
vf_lut3d
vf_lutrgb
vf_lutyuv
vf_maskedclamp
vf_maskedmerge
vf_mcdeint
vf_mergeplanes
vf_mestimate
vf_metadata
vf_midequalizer
vf_minterpolate
vf_mix
vf_mpdecimate
vf_negate
vf_nlmeans
vf_nnedi
vf_noformat
vf_noise
vf_normalize
vf_null
vf_ocr
vf_ocv
vf_oscilloscope
vf_overlay
vf_overlay_opencl
vf_overlay_qsv
vf_owdenoise
vf_pad
vf_palettegen
vf_paletteuse
vf_perms
vf_perspective
vf_phase
vf_pixdesctest
vf_pixscope
vf_pp
vf_pp7
vf_premultiply
vf_prewitt
vf_prewitt_opencl
vf_procamp_vaapi
vf_program_opencl
vf_pseudocolor
vf_psnr
vf_pullup
vf_qp
vf_random
vf_readeia608
vf_readvitc
vf_realtime
vf_remap
vf_removegrain
vf_removelogo
vf_repeatfields
vf_reverse
vf_roberts
vf_roberts_opencl
vf_rotate
vf_sab
vf_scale
vf_scale_cuda
vf_scale_npp
vf_scale_qsv
vf_scale_vaapi
vf_scale2ref
vf_select
vf_selectivecolor
vf_sendcmd
vf_separatefields
vf_setdar
vf_setfield
vf_setparams
vf_setpts
vf_setrange
vf_setsar
vf_settb
vf_sharpness_vaapi
vf_showinfo
vf_showpalette
vf_shuffleframes
vf_shuffleplanes
vf_sidedata
vf_signalstats
vf_signature
vf_smartblur
vf_sobel
vf_sobel_opencl
vf_split
vf_spp
vf_sr
vf_ssim
vf_stereo3d
vf_streamselect
vf_subtitles
vf_super2xsai
vf_swaprect
vf_swapuv
vf_tblend
vf_telecine
vf_threshold
vf_thumbnail
vf_thumbnail_cuda
vf_tile
vf_tinterlace
vf_tlut2
vf_tmix
vf_tonemap
vf_tonemap_opencl
vf_transpose
vf_transpose_npp
vf_trim
vf_unpremultiply
vf_unsharp
vf_unsharp_opencl
vf_uspp
vf_vaguedenoiser
vf_vectorscope
vf_vflip
vf_vfrdet
vf_vibrance
vf_vidstabdetect
vf_vidstabtransform
vf_vignette
vf_vmafmotion
vf_vpp_qsv
vf_vstack
vf_w3fdif
vf_waveform
vf_weave
vf_xbr
vf_xstack
vf_yadif
vf_yadif_cuda
vf_zmq
vf_zoompan
vf_zscale
vsrc_allrgb
vsrc_allyuv
vsrc_cellauto
vsrc_color
vsrc_coreimagesrc
vsrc_frei0r_src
vsrc_haldclutsrc
vsrc_life
vsrc_mandelbrot
vsrc_mptestsrc
vsrc_nullsrc
vsrc_openclsrc
vsrc_pal75bars
vsrc_pal100bars
vsrc_rgbtestsrc
vsrc_smptebars
vsrc_smptehdbars
vsrc_testsrc
vsrc_testsrc2
vsrc_yuvtestsrc
vsink_nullsink
avf_abitscope
avf_adrawgraph
avf_agraphmonitor
avf_ahistogram
avf_aphasemeter
avf_avectorscope
avf_concat
avf_showcqt
avf_showfreqs
avf_showspectrum
avf_showspectrumpic
avf_showvolume
avf_showwaves
avf_showwavespic
vaf_spectrumsynth
avsrc_amovie
avsrc_movie
af_afifo
vf_fifo

--- stderr ---


Configuring tmpconfig.h using configuration
Configuring components.h using configuration
Program depresolver.py found: YES (/usr/bin/python3 /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/depresolver.py)
Running command: /usr/bin/python3 /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/depresolver.py /home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/tmpconfig.h /home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/components.h
--- stdout ---
opencl_drm_beignet=0
voc_muxer=1
eightbps_decoder=1
aac_latm_parser=1
avr32_ap=0
x86_32=0
celt_decoder_create_custom=0
aqtitle_demuxer=1
ea_cdata_demuxer=1
lrc_demuxer=1
dcbzl_inline=0
msa_inline=0
lv2=0
huffyuv_encoder=1
v4l2_m2m=1
gif_demuxer=1
r10k_decoder=1
hevc_nvenc_encoder=0
mvi_demuxer=1
concat_filter=1
math_h=1
hysteresis_filter=1
image2_brender_pix_demuxer=1
aac_at_decoder=0
mxf_demuxer=1
pcm_s8_encoder=1
libopenh264_encoder=0
libnpp=0
sox_muxer=1
dsicin_demuxer=1
libvorbis_encoder=1
asf_stream_muxer=1
msrle_decoder=1
dpx_encoder=1
pcm_u16le_decoder=1
mxf_opatom_muxer=1
bink_decoder=1
pcm_s16be_planar_encoder=1
simd_align_64=0
mpeg2_crystalhd_decoder=0
pcm_s24daud_decoder=1
sh4=0
va_va_enc_vp9_h=0
icecast_protocol=1
matroska_muxer=1
librtmpte_protocol=0
avgblur_opencl_filter=0
hevcparse=1
vapictureparameterbufferhevc=0
libfontconfig=0
lut_filter=1
struct_rusage_ru_maxrss=1
dcbzl_external=0
tedcaptions_demuxer=1
simd_align_32=0
mp3adufloat_decoder=1
mpeg2dvd_muxer=1
normalize_filter=1
alsa_indev=1
qdraw_decoder=1
cpunop=0
swscale_alpha=0
eq_filter=0
transcode_aac_example=0
atrac9_decoder=1
jacosub_muxer=1
stereotools_filter=1
libmp3lame=0
abench_filter=1
gnu_windres=0
pcm_f64le_demuxer=1
round=1
biquad_filter=1
convolution_filter=1
aesni=0
libass=0
mdct=1
h263i_decoder=1
colorkey_filter=1
afade_filter=1
rtmpts_protocol=0
xan_wc4_decoder=1
data_muxer=1
utvideo_encoder=1
vc1_crystalhd_decoder=0
ico_demuxer=1
fontconfig=0
ac3_encoder=1
dshow_indev=0
truehd_decoder=1
fcntl=1
image_pam_pipe_demuxer=1
dev_video_meteor_ioctl_meteor_h=0
deinterlace_vaapi_filter=0
mipsfpu=0
lrc_muxer=1
rpza_decoder=1
w32threads=0
fits_encoder=1
ilbc_muxer=1
omx=0
mips32r6_external=0
cbrtf=1
pcm_s16le_muxer=1
graphmonitor_filter=1
conio_h=0
hevc_demuxer=1
chomp_bsf=1
arm_neon_h=0
pcm_s32be_muxer=1
dc1394_new=0
sse3_inline=0
isatty=1
sctp_protocol=0
allyuv_filter=1
vp9_raw_reorder_bsf=1
sonic_decoder=1
tmv_decoder=1
pcm_s16le_demuxer=1
concat_protocol=1
llviddsp=1
vflip_filter=1
vp9_v4l2m2m_decoder=0
filtering_audio_example=0
highpass_filter=1
segment_muxer=1
ast_demuxer=1
hqx_filter=1
async_protocol=1
v4l2_outdev=1
xbm_decoder=1
ralf_decoder=1
binkaudio_dct_decoder=1
shuffleframes_filter=1
libfdk_aac_encoder=0
roq_decoder=1
gdv_demuxer=1
coreimage=0
tilegx=0
x11_extensions_xvmclib_h=0
rtmp_socket=0
zscale_filter=0
vfpv3=0
sol_dpcm_decoder=1
pcm_u16be_decoder=1
mjpeg_parser=1
wmv3_vaapi_hwaccel=0
closesocket=0
advapi32=0
pixscope_filter=1
lowpass_filter=1
aic_decoder=1
mpeg1_xvmc_hwaccel=0
xmm_clobbers=0
sp5x_decoder=1
sndio_indev=0
dxva2_configpicturedecode=0
yop_decoder=1
lzma=0
sgirle_decoder=1
alimiter_filter=1
pic=1
areverse_filter=1
audio_frame_queue=1
pcm_u16le_encoder=1
ssa_decoder=1
roq_demuxer=1
outdevs=0
v4l2_ioctl=0
prores_encoder=1
msnwc_tcp_demuxer=1
program_opencl_filter=0
librtmpe_protocol=0
v210_demuxer=1
va_va_enc_hevc_h=0
ffrtmphttp_protocol=1
libgsm_encoder=0
amr_muxer=1
bintext_demuxer=1
png_decoder=1
simd_align_16=0
mpeg2_v4l2m2m_decoder=1
mpeg4video_parser=1
const_nan=1
xop_inline=0
sys_time_h=1
mmvideo_decoder=1
segafilm_muxer=1
png_encoder=1
rdtsc=0
mp3_demuxer=1
fork=1
h263_encoder=1
aligned_malloc=0
adpcm_mtaf_decoder=1
hevc_v4l2_m2m=0
opus_encoder=1
openal_indev=0
libndi_newtek_outdev=0
arealtime_filter=1
entropy_filter=1
tg2_muxer=1
ole32=0
pthread_cancel=1
gradfun_filter=1
subviewer_decoder=1
adts_header=1
blend_filter=1
pcm_bluray_decoder=1
pullup_filter=0
mmal_parameter_video_max_num_callbacks=0
h264_d3d11va_hwaccel=0
aac_adtstoasc_bsf=1
hypot=1
frei0r=0
libxcb=1
setend_external=0
mpeg2_vaapi_hwaccel=0
cbs_av1=1
libwebp_anim_encoder=0
noformat_filter=1
hevc_muxer=1
acameramanager_create=0
gsm_parser=1
zimg_get_api_version=0
telecine_filter=1
tdsc_decoder=1
llvidencdsp=1
vaapi_transcode_example=0
ffv1_encoder=1
pgmyuv_decoder=1
mpeg_er=1
ldbrx_external=0
exp2f=1
libcdio=0
udplite_h=0
adpcm_ima_ea_sead_decoder=1
caca_create_canvas=0
channelsplit_filter=1
cotaskmemfree=0
loongson2_external=0
libwebp_encoder=0
imx_dump_header_bsf=1
ac3_fixed_encoder=1
pcm_lxf_decoder=1
dcshift_filter=1
vmdvideo_decoder=1
acm_demuxer=1
librtmpt_protocol=0
mpeg2_qsv_decoder=0
hevc_decoder=1
sidechaincompress_filter=1
commandlinetoargvw=0
ppc4xx_external=0
vp8dsp=1
hwmap_filter=1
text_encoder=1
ocv_filter=0
pcm_mulaw_demuxer=1
mpeg4_vdpau_hwaccel=0
fast_64bit=1
msmpeg4v3_decoder=1
libaom_av1_decoder=0
pcm_alaw_at_encoder=0
pcm_u16le_demuxer=1
md5_muxer=1
yuv4_decoder=1
vsx_inline=0
linux_perf=0
zmbv_decoder=1
h264_redundant_pps_bsf=1
adpcm_ima_ea_eacs_decoder=1
ametadata_filter=1
ass_decoder=1
opencl_d3d11=0
cinepak_encoder=1
nvenc_encoder=0
h263_videotoolbox_hwaccel=0
mscc_decoder=1
rm_muxer=1
snow_decoder=1
vaencpictureparameterbuffermpeg2=0
mpl2_demuxer=1
yuv4_encoder=1
poll_h=1
libcdio_indev=0
smackaud_decoder=1
inline_asm=0
fma3=0
golomb=1
vqf_demuxer=1
vp6_decoder=1
lmlm4_demuxer=1
decode_audio_example=0
channelmap_filter=1
error_resilience=1
libx264rgb_encoder=0
adpcm_sbpro_2_decoder=1
h264pred=1
tonemap_opencl_filter=0
libx264_encoder=0
ppm_decoder=1
loadlibrary=0
intrax8=1
amr_demuxer=1
volume_filter=1
httpproxy_protocol=1
cyuv_decoder=1
pp7_filter=0
jacosub_decoder=1
acrossover_filter=1
mpegps_demuxer=1
apng_muxer=1
image_jpeg_pipe_demuxer=1
ffmpeg=1
psapi=0
sys_soundcard_h=1
frm_demuxer=1
ppc=0
interplay_dpcm_decoder=1
pcm_alaw_decoder=1
capcreatecapturewindow=0
ivf_demuxer=1
libpulse=0
fieldmatch_filter=1
mxg_demuxer=1
eac3_demuxer=1
flv_muxer=1
xl_decoder=1
webpgetencoderversion=0
vp9_superframe_split_bsf=1
smptehdbars_filter=1
h264_v4l2m2m_encoder=1
stdlib_h=1
thumbnail_cuda_filter=0
image_bmp_pipe_demuxer=1
eamad_decoder=1
roq_dpcm_encoder=1
opengl=0
oscilloscope_filter=1
a64_muxer=1
scale_vaapi_filter=0
tonemap_filter=1
msa_external=0
movie_filter=1
truemotion1_decoder=1
smacker_demuxer=1
mss34dsp=1
mips32r2_inline=0
pcm_s24le_decoder=1
pcx_decoder=1
ilbc_decoder=1
dvd_nav_parser=1
avr32=0
ac3_muxer=1
glob_h=1
ainterleave_filter=1
g722dsp=1
armv6=0
vqa_decoder=1
flac_muxer=1
hevc_vaapi_hwaccel=0
jv_demuxer=1
indevs=0
camera2ndk=0
aemphasis_filter=1
libspeex_encoder=0
rdft=1
h264dsp=1
pcm_alaw_muxer=1
pcm_u16be_muxer=1
libgme=0
mjpeg_cuvid_decoder=0
pcm_mulaw_encoder=1
aformat_filter=1
fraps_decoder=1
vpx_codec_vp9_dx=0
cdio_paranoia_paranoia_h=0
mts2_decoder=1
subrip_decoder=1
adpcm_aica_decoder=1
mp1float_decoder=1
jni=0
openal=0
amrwb_decoder=1
asetnsamples_filter=1
rkmpp=0
pcm_f64be_demuxer=1
struct_sockaddr_storage=1
dnxhd_encoder=1
codec2_muxer=1
mpeg2_d3d11va2_hwaccel=0
libxml2=1
xavs_encoder_encode=0
h264_demuxer=1
adrawgraph_filter=1
pcm_mulaw_decoder=1
iec61883_indev=0
vdppictureinfohevc=0
scale_cuda_filter=0
w64_demuxer=1
atomic_cas_ptr=0
mpl2_decoder=1
firequalizer_filter=1
sys_param_h=1
avrp_decoder=1
tmix_filter=1
bmv_video_decoder=1
sse2_inline=0
pcm_s8_decoder=1
small=0
threedostr_demuxer=1
android=0
tak_decoder=1
codec2_demuxer=1
asm_mod_q=0
flacdsp=1
android_camera_indev=0
sidechaingate_filter=1
rgbtestsrc_filter=1
nlmeans_filter=1
sync_val_compare_and_swap=0
loongson3=0
h264_v4l2m2m_decoder=1
sunrast_decoder=1
ansi_decoder=1
lowshelf_filter=1
flac_demuxer=1
altivec_inline=0
lv2_filter=0
srt_muxer=1
bandpass_filter=1
eac3_encoder=1
mips64=0
mach_mach_time_h=0
libgsm_decoder=0
vp8_v4l2m2m_encoder=1
drawgraph_filter=1
compensationdelay_filter=1
data_protocol=1
adp_demuxer=1
rint=1
coreimagesrc_filter=0
vaprocpipelineparameterbuffer=0
hap_encoder=0
struct_ip_mreq_source=1
bs2b_filter=0
vp8_cuvid_decoder=0
mxf_d10_muxer=1
libxavs=0
transpose_filter=1
sdl2_outdev=0
tile_filter=1
rsvg_handle_render_cairo=0
pcm_zork_decoder=1
adpcm_ct_decoder=1
sheervideo_decoder=1
avisynth=0
anullsink_filter=1
ividsp=1
deband_filter=1
avdevice=1
sparc=0
hwaccels=0
pcm_f32le_demuxer=1
ilbc_at_encoder=0
pcm_u24be_demuxer=1
flashsv2_decoder=1
mix_filter=1
pcm_s24le_demuxer=1
imm4_decoder=1
gmtime_r=1
mpegaudioheader=1
uncodedframecrc_muxer=1
overlay_opencl_filter=0
vaapi_encode=0
ebx_available=0
lstat=1
adpcm_g722_encoder=1
mpsub_demuxer=1
unpremultiply_filter=1
v308_encoder=1
v210_encoder=1
cdxl_demuxer=1
demuxing_decoding_example=0
scale_filter=1
vp7_decoder=1
erf=1
aligned_stack=1
mpc8_decoder=1
lzo=1
huffman=1
va_va_h=0
dvaudio_parser=1
fieldorder_filter=1
libvpx_vp8_encoder=0
perms_filter=1
afir_filter=1
pcm_u24le_decoder=1
flv_decoder=1
pcm_mulaw_at_decoder=0
aptx_hd_demuxer=1
pcm_alaw_demuxer=1
webrtcilbcfix_initdecode=0
nellymoser_encoder=1
dev_bktr_ioctl_meteor_h=0
rv20_encoder=1
shell32=0
mgsts_demuxer=1
libcodec2_encoder=0
vfwcap_indev=0
headphone_filter=1
pcm_f24le_decoder=1
join_filter=1
interplay_video_decoder=1
pcm_s32be_demuxer=1
lumakey_filter=1
atan2f=1
vdpau_x11=0
filmstrip_demuxer=1
strerror_r=1
mkvtimestamp_v2_muxer=1
vdpau=0
amrnb_demuxer=1
amix_filter=1
g722_demuxer=1
noise_filter=1
ylc_decoder=1
zerocodec_decoder=1
ra_288_decoder=1
lavfi_indev=1
vpx_codec_vp8_dx=0
mjpeg_vaapi_encoder=0
mpeg1_nvdec_hwaccel=0
ogg_muxer=1
silenceremove_filter=1
cdg_demuxer=1
memalign=1
lut3d_filter=1
cbs_mpeg2=1
image_tiff_pipe_demuxer=1
qcp_demuxer=1
xbin_decoder=1
streamselect_filter=1
rtmpe_protocol=0
highshelf_filter=1
pnm_parser=1
crystalhd=0
thp_decoder=1
nsv_demuxer=1
smc_decoder=1
inflate_filter=1
roq_muxer=1
pcm_f64be_encoder=1
vorbis_codec_h=1
tee_muxer=1
libzmq=0
libxml2_libxml_xmlversion_h=1
pa_context_new=0
wcmv_decoder=1
md5_protocol=1
libcelt_decoder=0
allpass_filter=1
pbm_decoder=1
dnxhd_decoder=1
adeclick_filter=1
drmgetversion=0
muxers=0
getsystemtimeasfiletime=0
ssse3_external=0
mips32r2=0
vp8_rkmpp_decoder=0
pgmyuv_encoder=1
intrinsics_neon=0
mpeg4_videotoolbox_hwaccel=0
ffnvcodec=0
sse4_inline=0
r210_decoder=1
lutrgb_filter=1
pthread_join=1
d3d11_h=0
fribidi_version_info=0
aptx_muxer=1
aptx_demuxer=1
mips32r6_inline=0
mmal=0
caf_demuxer=1
smvjpeg_decoder=1
direct_h=0
rsync_contimeout=0
wmv3_decoder=1
libspeex=0
ppc64=0
tty_demuxer=1
dvbsub_parser=1
avs_decoder=1
txd_decoder=1
libcaca=0
libopenmpt=0
xform_asm=0
indeo2_decoder=1
lgplv3=0
vmd_demuxer=1
libxvid_encoder=0
codec2raw_muxer=1
msvideo1_encoder=1
tls_protocol=0
curves_filter=1
loudnorm_filter=1
g723_1_encoder=1
stl_decoder=1
virtualalloc=0
dts_muxer=1
mpeg4_vaapi_hwaccel=0
mov2textsub_bsf=1
mp3on4_decoder=1
iirfilter=1
hstack_filter=1
pcm_u32le_decoder=1
cook_parser=1
decode_video_example=0
librtmps_protocol=0
e_if_init=0
transpose_npp_filter=0
adpcm_ima_qt_decoder=1
scpr_decoder=1
struct_addrinfo=1
xwd_encoder=1
mergeplanes_filter=1
jpeg2000_decoder=1
asetrate_filter=1
extractplanes_filter=1
texturedspenc=0
pvf_demuxer=1
msf_demuxer=1
yuv4mpegpipe_muxer=1
codec2_create=0
videodsp=1
mpegvideo_decoder=1
mpeg4_v4l2_m2m=1
rtpenc_chain=1
opus_multistream_surround_encoder_create=0
ingenient_demuxer=1
gxf_demuxer=1
chromakey_filter=1
struct_stat_st_mtim_tv_nsec=1
blockdsp=1
h263_muxer=1
pictor_decoder=1
libsnappy=0
vpx_codec_vp8_cx=0
mpeg1_v4l2m2m_decoder=1
prores_aw_encoder=1
pcm_u16be_encoder=1
mpeg1video_encoder=1
libxvid=0
pad_filter=1
mp1_decoder=1
mipsfpu_external=0
sipr_parser=1
hevc_metadata_bsf=1
copysign=1
decoders=0
mimic_decoder=1
iff_ilbm_decoder=1
mp2_muxer=1
net_udplite_h=0
hnm_demuxer=1
libopenmpt_demuxer=0
dst_decoder=1
isnan=1
codec2raw_demuxer=1
va_va_enc_vp8_h=0
pcm_s32le_demuxer=1
tta_muxer=1
mmal_port_connect=0
framecrc_muxer=1
showvolume_filter=1
gethrtime=0
ppc4xx_inline=0
movtext_encoder=1
libsrt_protocol=0
libilbc_decoder=0
pcm_u32le_encoder=1
geq_filter=0
cvcreateimageheader=0
roberts_filter=1
mvc2_decoder=1
vp5_decoder=1
postproc=0
webp_muxer=1
vdpau_vdpau_h=0
indeo5_decoder=1
rtpdec=1
cuctxcreate=0
truncf=1
corefoundation=1
adpcm_ima_dk3_decoder=1
metasound_decoder=1
gblur_filter=1
libopencv=0
cdio_cddap_open=0
alsa=1
mpeg2vob_muxer=1
gpl=0
audiotoolbox=0
mips=0
subviewer_demuxer=1
regclosekey=0
mp3float_decoder=1
ldbrx=0
avx2_external=0
aac_decoder=1
mcdeint_filter=0
filters=0
asendcmd_filter=1
faanidct=0
dctdnoiz_filter=1
isinf=1
v410_encoder=1
mp2_decoder=1
pcx_encoder=1
metadata_filter=1
avi_muxer=1
aderivative_filter=1
libtheora=0
vplayer_demuxer=1
spdif_demuxer=1
musx_demuxer=1
dds_decoder=1
mips64r2=0
frei0r_h=0
vaencpictureparameterbuffervp9=0
clenqueuendrangekernel=0
libvo_amrwbenc=0
bluray_protocol=0
pcm_f32be_decoder=1
access=1
libsmbclient_protocol=0
pcm_s8_planar_decoder=1
static=0
adpcm_xa_decoder=1
hls_protocol=1
libx265_encoder=0
idctdsp=1
pcm_s32be_decoder=1
zero12v_decoder=1
image2_alias_pix_demuxer=1
r3d_demuxer=1
twolame_encode_buffer_float32_interleaved=0
convolve_filter=1
libflite=0
pcm_s64le_encoder=1
palettegen_filter=1
ftp_protocol=1
opencl_dxva2=0
utgetostypefromstring=0
lpc=1
asetpts_filter=1
udplite_protocol=1
wmalossless_decoder=1
g2m_decoder=1
eightsvx_fib_decoder=1
phase_filter=0
perspective_filter=0
comfortnoise_decoder=1
armv5te_external=0
f4v_muxer=1
dnn=1
vc1_decoder=1
qsvvpp=0
vpp_qsv_filter=0
libopus_encoder=0
snappy=1
mmxext_inline=0
sbc_parser=1
vc1_nvdec_hwaccel=0
isfinite=1
tblend_filter=1
pcm_s32le_decoder=1
ffv1_decoder=1
framehash_muxer=1
vignette_filter=1
wmavoice_decoder=1
adpcm_ima_amv_decoder=1
fic_decoder=1
vmafmotion_filter=1
thumbnail_filter=1
tilepro=0
h264_crystalhd_decoder=0
dirac_parse=1
prosumer_decoder=1
webm_dash_manifest_demuxer=1
dilation_filter=1
appkit=0
rsd_demuxer=1
wmv1_encoder=1
ass_encoder=1
exr_decoder=1
sse4_external=0
libkvazaar=0
srt_decoder=1
nsp_demuxer=1
latm_muxer=1
aac_demuxer=1
ftrapv=0
libspeex_decoder=0
threshold_filter=1
llrint=1
sgi_encoder=1
amd3dnowext=0
qsv=0
mcompand_filter=1
librsvg=0
schannel=0
mpeg2_d3d11va_hwaccel=0
sse3_external=0
sse_inline=0
struct_sctp_event_subscribe=0
hevc_mediacodec_decoder=0
memory_poisoning=0
bigendian=0
interleave_filter=1
fsb_demuxer=1
avio_dir_cmd_example=0
rubberband_new=0
prewitt_opencl_filter=0
machine_ioctl_meteor_h=0
sse4=0
image_sgi_pipe_demuxer=1
mpeg4_nvdec_hwaccel=0
wmv3_d3d11va2_hwaccel=0
hwupload_cuda_filter=0
compand_filter=1
libilbc_encoder=0
pcm_s24le_planar_encoder=1
tinterlace_filter=0
ffrtmpcrypt_protocol=0
pcm_f64le_encoder=1
pcm_u24le_demuxer=1
nuv_demuxer=1
h263p_encoder=1
ac3_parser=1
adpcm_adx_decoder=1
rv10_encoder=1
ads_demuxer=1
pcm_u24be_decoder=1
avcodec=1
libgsm=0
vfrdet_filter=1
mips32r6=0
au_muxer=1
adpcm_g726_encoder=1
sbg_demuxer=1
mpeg2_videotoolbox_hwaccel=0
astats_filter=1
showpalette_filter=1
image_xwd_pipe_demuxer=1
mpeg1_vdpau_hwaccel=0
mips64r6=0
image_dds_pipe_demuxer=1
amd3dnowext_inline=0
zlib_h=1
image_dpx_pipe_demuxer=1
cine_demuxer=1
fourxm_demuxer=1
qpeg_decoder=1
alsa_outdev=1
mpegvideo_demuxer=1
cpunop_inline=0
g723_1_decoder=1
jack_indev=1
libvorbis=1
ppm_encoder=1
adpcm_ima_wav_encoder=1
stereo3d_filter=0
sys_select_h=1
fbdev_outdev=1
flashsv_decoder=1
gnutls_global_init=0
pcm_dvd_decoder=1
noise_bsf=1
apad_filter=1
dts_demuxer=1
symver=0
adpcm_ima_smjpeg_decoder=1
live_flv_demuxer=1
dnxhd_demuxer=1
resample_filter=1
webpanimencoderoptionsinit=0
xma1_decoder=1
mandelbrot_filter=1
adeclip_filter=1
xstack_filter=1
fifo_filter=1
mips32r5_inline=0
spdif_muxer=1
version3=0
cuda_h=0
microdvd_demuxer=1
mmx=0
ptx_decoder=1
bmp_decoder=1
av1_parser=1
vfw32=0
sysconf=1
avx512=0
crypto_protocol=1
imc_decoder=1
extrastereo_filter=1
flic_demuxer=1
ogg_demuxer=1
iv8_demuxer=1
librubberband=0
pp_filter=0
magicyuv_encoder=1
adx_muxer=1
libtheora_encoder=0
getprocessaffinitymask=0
mips64r2_inline=0
createdibsection=0
mpc_demuxer=1
eatgv_decoder=1
neon_inline=0
libxavs_encoder=0
sofalizer_filter=0
cabac=1
vc1dsp=1
mediandk=0
vp9_v4l2_m2m=0
gnu_as=0
sami_decoder=1
xvmc=0
mipsdsp_inline=0
ac3_at_decoder=0
hevc_qsv_decoder=0
modplug_load=0
ac3_demuxer=1
cover_rect_filter=0
mp3adu_decoder=1
aphasemeter_filter=1
aselect_filter=1
pjs_demuxer=1
atomic_h=0
cropdetect_filter=0
fits_decoder=1
deflicker_filter=1
libopenh264=0
atrac3al_decoder=1
image2_demuxer=1
pcm_vidc_encoder=1
showwavespic_filter=1
mipsdspr2=0
avx_external=0
acrossfade_filter=1
atempo_filter=1
mpeg2video_decoder=1
vmdaudio_decoder=1
xmlcheckversion=1
vsx=0
fits_muxer=1
ffwavesynth_decoder=1
dos_paths=0
adpcm_psx_decoder=1
cbs=1
sleep=0
ac3dsp=1
dnxhd_muxer=1
jack_jack_h=1
rtmpt_protocol=1
aac_at_encoder=0
opengl_outdev=0
doubleweave_filter=1
mmap=1
fft=1
bintext_decoder=1
pcm_s16be_encoder=1
libcelt=0
avx_inline=0
sem_timedwait=1
acontrast_filter=1
x86asm=0
vp9_mediacodec_decoder=0
soxr_create=0
adpcm_sbpro_3_decoder=1
wavpackopenfileoutput=0
text2movsub_bsf=1
yadif_filter=1
procamp_vaapi_filter=0
premultiply_filter=1
snow_encoder=1
copy_filter=1
chromahold_filter=1
mjpeg_qsv_encoder=0
libx264=0
pseudocolor_filter=1
flv_demuxer=1
cinepak_decoder=1
pcm_s16le_planar_encoder=1
libkvazaar_encoder=0
maskedclamp_filter=1
truemotion2rt_decoder=1
silencedetect_filter=1
denoise_vaapi_filter=0
asidedata_filter=1
expf=1
hwdownload_filter=1
xlib=0
libx262_encoder=0
frwu_decoder=1
adpcm_ima_qt_at_decoder=0
vc1_cuvid_decoder=0
afftdn_filter=1
libgsm_ms_decoder=0
bswapdsp=1
mmx_inline=0
dct=1
xpm_decoder=1
color_filter=1
sobel_filter=1
pcm_u24le_muxer=1
libxcb_shm=0
zlib_decoder=1
avs_demuxer=1
bmv_demuxer=1
pam_encoder=1
lame_set_vbr_quality=0
ffmetadata_muxer=1
muxing_example=0
srt_encoder=1
m4v_muxer=1
socklen_t=1
as_fpu_directive=0
roq_encoder=1
aiff_muxer=1
vp9_dxva2_hwaccel=0
mss1_decoder=1
pcm_u32be_demuxer=1
ape_demuxer=1
image_pictor_pipe_demuxer=1
haldclut_filter=1
sendcmd_filter=1
mlp_encoder=1
winrt=0
hls_muxer=1
srgc_decoder=1
rotate_filter=1
pgssub_decoder=1
ia64=0
vc1t_demuxer=1
mmst_protocol=1
apng_encoder=1
roundf=1
vpx_codec_vp9_cx=0
h264_dxva2_hwaccel=0
h264_metadata_bsf=1
paletteuse_filter=1
rv30_parser=1
msa1_decoder=1
xcb_xcb_h=1
dsicinaudio_decoder=1
vorbis_info_init=1
videotoolbox=0
avgblur_filter=1
setfield_filter=1
smartblur_filter=0
pod2man=0
libfribidi=0
adpcm_g726le_decoder=1
aevalsrc_filter=1
netinet_in_h=1
truehd_demuxer=1
libvmaf=0
afftfilt_filter=1
vp8_decoder=1
agate_filter=1
altivec_external=0
libmysofa=0
dolby_e_decoder=1
testsrc2_filter=1
realtext_decoder=1
boxblur_filter=0
linux_fb_h=1
neon_external=0
audiodsp=1
pcm_f64be_decoder=1
network=1
fftdnoiz_filter=1
gif_decoder=1
pulse_outdev=0
detelecine_filter=1
io_h=0
hevc_d3d11va_hwaccel=0
i686_inline=0
nnedi_filter=0
stl_demuxer=1
image_ppm_pipe_demuxer=1
dev_video_bktr_ioctl_bt848_h=0
aac_encoder=1
libssh=0
power8=0
acompressor_filter=1
vp8_mediacodec_decoder=0
dca_parser=1
cdio_paranoia_h=0
dvdsub_decoder=1
uspp_filter=0
filtering_video_example=0
loongson2_inline=0
sdr2_demuxer=1
pcm_s8_muxer=1
sse42_inline=0
libxavs2_encoder=0
colorlevels_filter=1
librtmp_protocol=0
x264_csp_bgr=0
remove_extradata_bsf=1
zmbv_encoder=1
ast_muxer=1
hdcd_filter=1
ipod_muxer=1
va_va_vpp_h=0
v210x_decoder=1
swapuv_filter=1
mpeg2_xvmc_hwaccel=0
qdm2_at_decoder=0
il_filter=1
gxf_muxer=1
afc_demuxer=1
libx262=0
mp3_at_decoder=0
pcm_alaw_at_decoder=0
mp1_at_decoder=0
cavs_decoder=1
time_h=1
gsm_ms_at_decoder=0
blackdetect_filter=1
sbc_demuxer=1
h264_nvenc_encoder=0
machine_rw_barrier=0
v408_decoder=1
smptebars_filter=1
openclsrc_filter=0
mpeg2svcd_muxer=1
hevc_parser=1
ssl_library_init=0
nut_demuxer=1
dss_sp_decoder=1
apng_demuxer=1
spp_filter=0
subtitles_filter=0
rv40_parser=1
atrac3_decoder=1
ldexpf=1
mpegaudio=1
erosion_filter=1
libwebp=0
armv6t2=0
drawbox_filter=1
peeknamedpipe=0
libssh_protocol=0
showcqt_filter=1
mipsdspr2_inline=0
rtsp_demuxer=1
amf=0
ass_library_init=0
opencl_vaapi_beignet=0
tta_demuxer=1
rubberband_filter=0
id3d11videocontext=0
vfp_external=0
cosf=1
unistd_h=1
genh_demuxer=1
rso_demuxer=1
daud_muxer=1
cbs_h264=1
adpcm_ima_apc_decoder=1
tomi=0
struct_sockaddr_sa_len=0
txd_demuxer=1
image_pgmyuv_pipe_demuxer=1
ws_snd1_decoder=1
mpjpeg_demuxer=1
field_filter=1
id3d11videodecoder=0
inet_aton=1
vorbis_encoder=1
sftp_init=0
brender_pix_decoder=1
asm_types_h=1
aiir_filter=1
aandcttables=1
g729_demuxer=1
es2_gl_h=0
y41p_encoder=1
armv6t2_external=0
g722_muxer=1
tta_decoder=1
aptx_hd_decoder=1
nvenc=0
oma_demuxer=1
vfp_args=0
struct_v4l2_frmivalenum_discrete=0
microdvd_decoder=1
mbarrier_h=0
xmv_demuxer=1
adpcm_yamaha_encoder=1
mlp_parser=1
wmv2_encoder=1
mtaf_demuxer=1
librsvg_decoder=0
sysctl=1
gnutls=0
yuvtestsrc_filter=1
mmf_demuxer=1
h263dsp=1
pcm_s64le_decoder=1
xcb_shm_attach=0
ossfuzz=0
valgrind_backtrace=0
targa_encoder=1
armv5te_inline=0
adpcm_ima_dk4_decoder=1
str_demuxer=1
libtwolame=0
colorchannelmixer_filter=1
dv_muxer=1
vp9_superframe_bsf=1
adf_demuxer=1
libfdk_aac_decoder=0
libshine=0
pcm_s32le_planar_decoder=1
xv_outdev=0
idf_demuxer=1
ac3_decoder=1
rangecoder=1
avresample=1
image_sunrast_pipe_demuxer=1
bm3d_filter=1
pcm_u16le_muxer=1
fmvc_decoder=1
amd3dnow_external=0
h264_rkmpp_decoder=0
vdp_device_create_x11=0
adts_muxer=1
vorbis_parser=1
pbm_encoder=1
mp2fixed_encoder=1
va_va_enc_mpeg2_h=0
pthreads=1
alsa_asoundlib_h=1
text_decoder=1
cavsvideo_demuxer=1
dtscrystalhdversion=0
libjack=1
libmodplug=0
gdv_decoder=1
qtrle_encoder=1
iff_demuxer=1
d_if_init=0
sharpness_vaapi_filter=0
find_rect_filter=0
pjs_decoder=1
armv6t2_inline=0
mprotect=1
lzf=1
gdigrab_indev=0
sdx_demuxer=1
displace_filter=1
aom_codec_version=0
apulsator_filter=1
webvtt_encoder=1
dispatch_dispatch_h=0
mpeg2_qsv_encoder=0
acrusher_filter=1
setconsoletextattribute=0
faan=0
vc2_encoder=1
sgi_decoder=1
null_bsf=1
mpegaudiodsp=1
welsgetcodecversion=0
vaapi_1=0
mlv_demuxer=1
webvtt_demuxer=1
amv_encoder=1
hflip_filter=1
mpegvideo_parser=1
bit_muxer=1
microdvd_muxer=1
mestimate_filter=1
dxva_picparams_hevc=0
aecho_filter=1
vc1_muxer=1
asf_demuxer=1
aimage_delete=0
alac_at_encoder=0
xbin_demuxer=1
wglgetprocaddress=0
gif_encoder=1
comfortnoise_encoder=1
avformat=1
bcryptgenrandom=0
ibasefilter=0
exif=1
vmnc_decoder=1
dxva_h=0
dvdsub_encoder=1
usleep=1
mips64r6_inline=0
nellymoser_decoder=1
ty_demuxer=1
v4l2_indev=1
pcm_mulaw_muxer=1
setconsolectrlhandler=0
nvenc_h264_encoder=0
power8_external=0
libsoxr=0
bfin=0
h264_cuvid_decoder=0
binkaudio_rdft_decoder=1
huffyuvdsp=1
mpeg4_encoder=1
bfi_decoder=1
hevc_v4l2m2m_decoder=0
hevc_videotoolbox_encoder=0
coreimage_filter=0
vp8_vaapi_encoder=0
greyedge_filter=1
dynaudnorm_filter=1
dvbsub_encoder=1
h264_d3d11va2_hwaccel=0
fieldhint_filter=1
xface_decoder=1
vibrato_filter=1
idcin_demuxer=1
h264chroma=1
owdenoise_filter=0
lrintf=1
azmq_filter=0
bethsoftvid_decoder=1
hevc_videotoolbox_hwaccel=0
prompeg_protocol=1
erosion_opencl_filter=0
dvaudio_decoder=1
libv4l2=0
redspark_demuxer=1
pcm_s16le_encoder=1
s302m_decoder=1
qsvdec_example=0
fourxm_decoder=1
vagetdisplaydrm=0
dpx_parser=1
ayuv_encoder=1
pcm_s24daud_encoder=1
msvideo1_decoder=1
bd_open=0
sidedata_filter=1
mdct15=1
h264_mediacodec_decoder=0
pcm_f64be_muxer=1
als_decoder=1
dcstr_demuxer=1
mpeg1video_decoder=1
vectorscope_filter=1
unix_protocol=1
loop_filter=1
weave_filter=1
chromaprint_muxer=0
xop_external=0
nanosleep=1
vc1_vdpau_hwaccel=0
concat_demuxer=1
caf_muxer=1
cuda_sdk=0
agraphmonitor_filter=1
cfhd_decoder=1
clgetdeviceidsfromd3d11khr_fn=0
dump_extradata_bsf=1
paf_audio_decoder=1
xbm_encoder=1
ipmovie_demuxer=1
mjpega_dump_header_bsf=1
cavsvideo_muxer=1
wv_demuxer=1
ft_init_freetype=0
xcb_connect=1
eatqi_decoder=1
setend_inline=0
roq_dpcm_decoder=1
aarch64=0
wmav1_decoder=1
smacker_decoder=1
clcreatefromva_apimediasurfaceintel_fn=0
gmp=0
twinvq_decoder=1
vc1_v4l2_m2m=1
ea_demuxer=1
th_info_init=0
ffprobe=1
sup_muxer=1
xbr_filter=1
as_func=0
vc1_mmal_decoder=0
trim_filter=1
videotoolbox_encoder=0
bass_filter=1
avfilter=1
loas_demuxer=1
s337m_demuxer=1
boa_demuxer=1
altivec=0
avfoundation_indev=0
vaapi_x11=0
au_demuxer=1
nut_muxer=1
subrip_encoder=1
libaom_av1_encoder=0
split_filter=1
flac_encoder=1
wmv2dsp=1
struct_group_source_req=1
qsvdec=0
h264_muxer=1
flite_filter=0
evrc_decoder=1
psd_decoder=1
shorten_demuxer=1
dilation_opencl_filter=0
vc1t_muxer=1
libaom=0
netinet_sctp_h=0
aptx_hd_muxer=1
amerge_filter=1
cuvid=0
deconvolve_filter=1
anequalizer_filter=1
dxa_demuxer=1
select_filter=1
nullsink_filter=1
gsm_h=0
adelay_filter=1
dev_bktr_ioctl_bt848_h=0
vc1image_decoder=1
h264_amf_encoder=0
vfp=0
mach_absolute_time=0
mp2float_decoder=1
mpeg4_v4l2m2m_decoder=1
lenscorrection_filter=1
mpeg4_mediacodec_decoder=0
rtp_muxer=1
vp8_nvdec_hwaccel=0
remap_filter=1
sndio_outdev=0
xma_parser=1
hnm4_video_decoder=1
mips32r5_external=0
c93_demuxer=1
qtrle_decoder=1
g726le_muxer=1
i686=1
rv20_decoder=1
getenv=1
hwupload_filter=1
dxtory_decoder=1
adpcm_afc_decoder=1
ebur128_filter=1
va_va_dec_hevc_h=0
haldclutsrc_filter=1
adpcm_g726le_encoder=1
pcm_s32le_muxer=1
pixelutils=1
pcm_f32be_encoder=1
adpcm_ima_iss_decoder=1
bmv_audio_decoder=1
h261_encoder=1
power8_inline=0
zlib_encoder=1
msmpeg4_crystalhd_decoder=0
libbluray=0
srtp_protocol=1
gettimeofday=1
hevc_d3d11va2_hwaccel=0
parisc=0
user32=0
h264_vaapi_hwaccel=0
windows_h=0
yop_demuxer=1
tak_parser=1
openmpt_module_create=0
vp3_decoder=1
h264_v4l2_m2m=1
wmv3_d3d11va_hwaccel=0
sami_demuxer=1
pcm_vidc_decoder=1
dsicinvideo_decoder=1
sys_resource_h=1
oss_outdev=1
makeinfo=0
super2xsai_filter=0
adpcm_dtk_decoder=1
wmav1_encoder=1
pgm_decoder=1
ahistogram_filter=1
smush_demuxer=1
unsharp_filter=1
vp3_parser=1
mm_demuxer=1
jv_decoder=1
vaapi_drm=0
xcbgrab_indev=1
dxva2=0
rso_muxer=1
xmm_clobber_test=0
mpeg2_nvdec_hwaccel=0
framerate_filter=1
corevideo=1
elbg_filter=1
mpeg1_cuvid_decoder=0
targa_y216_decoder=1
random_filter=1
mipsdsp=0
avrn_decoder=1
mpeg2_metadata_bsf=1
sys_videoio_h=0
wav_muxer=1
cljr_encoder=1
surround_filter=1
pcm_f32le_muxer=1
adpcm_ima_rad_decoder=1
h264parse=1
librtmp=0
magicyuv_decoder=1
swresample=1
vaencpictureparameterbufferh264=0
threads=1
pcm_s24be_encoder=1
tcp_protocol=1
segafilm_demuxer=1
fast_cmov=1
glob=1
hevc_mp4toannexb_bsf=1
aura2_decoder=1
truespeech_decoder=1
pcm_s32le_encoder=1
lsp=1
signalstats_filter=1
shared=1
mmf_muxer=1
me_cmp=1
mpeg4_mmal_decoder=0
libwavpack_encoder=0
sse2_external=0
hq_hqa_decoder=1
mpeg2video_encoder=1
sdl2=0
wmav2_decoder=1
mpeg4_unpack_bframes_bsf=1
h264qpel=1
dfa_demuxer=1
spectrumsynth_filter=1
minterpolate_filter=1
aac_latm_decoder=1
oma_muxer=1
tls_configure=0
vapoursynth_demuxer=0
floodfill_filter=1
image_pbm_pipe_demuxer=1
lxf_demuxer=1
srtp=1
x86_64=1
eightsvx_exp_decoder=1
xcb_shape_get_rectangles=0
histogram_filter=1
vsmotiondetectinit=0
adpcm_ea_decoder=1
vb_decoder=1
libzvbi_teletext_decoder=0
avs2_demuxer=1
wmv3_crystalhd_decoder=0
h261_demuxer=1
matroska_demuxer=1
dvbtxt_demuxer=1
arpa_inet_h=1
exp2=1
ffplay=0
bethsoftvid_demuxer=1
bs2b_open=0
hevc_qsv_encoder=0
vagetdisplay=0
vp8_parser=1
a64multi5_encoder=1
vcr1_decoder=1
mjpeg2jpeg_bsf=1
mpeg4_crystalhd_decoder=0
framemd5_muxer=1
gsm_muxer=1
amplify_filter=1
mpegtsraw_demuxer=1
opencl_drm_arm=0
filter_units_bsf=1
libvpx_vp8_decoder=0
dpx_decoder=1
ebp_available=0
x264_encoder_encode=0
amv_decoder=1
gplv3=0
mpc8_demuxer=1
flac_parser=1
image_j2k_pipe_demuxer=1
avrp_encoder=1
mpegts_muxer=1
avx=0
clearvideo_decoder=1
setrlimit=1
mips32r5=0
sse_external=0
vorbis_decoder=1
svq3_decoder=1
wmv3image_decoder=1
srt_socket=0
alac_encoder=1
kcmvideocodectype_hevc=0
struct_msghdr_msg_flags=0
h263_demuxer=1
singlejpeg_muxer=1
reverse_filter=1
msmpeg4v2_decoder=1
vc1_v4l2m2m_decoder=1
avx2_inline=0
openssl_init_ssl=0
h264_mmal_decoder=0
qp_filter=1
life_filter=1
vc1_vaapi_hwaccel=0
treble_filter=1
faandct=0
drmeter_filter=1
sox_demuxer=1
sine_filter=1
pcm_s8_demuxer=1
idcin_decoder=1
sap_demuxer=1
msmpeg4v3_encoder=1
zoompan_filter=1
opencv2_core_core_c_h=0
mvc1_decoder=1
r210_encoder=1
pcm_s8_planar_encoder=1
mp4_muxer=1
pcm_u24be_encoder=1
sse3=0
sol_demuxer=1
epaf_demuxer=1
deshake_filter=1
theora_decoder=1
indeo3_decoder=1
pmp_demuxer=1
msmpeg4v1_decoder=1
cllc_decoder=1
libmodplug_demuxer=0
pcm_u24le_encoder=1
sdx2_dpcm_decoder=1
adx_parser=1
amrnb_decoder=1
matroska_audio_muxer=1
vp9_nvdec_hwaccel=0
unsharp_opencl_filter=0
scc_muxer=1
sdl_pollevent=0
mysofa_load=0
dnxhd_parser=1
pcm_f32le_encoder=1
vp56dsp=1
tiertexseq_demuxer=1
dev_ic_bt8xx_h=0
hqx_decoder=1
mpeg2_mediacodec_decoder=0
amd3dnow_inline=0
gsm_create=0
smbc_init=0
image_svg_pipe_demuxer=1
tee_protocol=1
mjpeg_decoder=1
flac_decoder=1
libopencore_amrwb=0
libvpx=0
fma4_external=0
mmi_inline=0
ilbc_demuxer=1
pcm_s32le_planar_encoder=1
qdmc_at_decoder=0
avui_decoder=1
gopher_protocol=1
scale2ref_filter=1
bmp_parser=1
inline_asm_labels=0
cache_protocol=1
rm_demuxer=1
wmv3_nvdec_hwaccel=0
avutil=1
bsfs=0
mjpeg_muxer=1
wma_freqs=1
mpc7_decoder=1
libdc1394=0
x265_api_get=0
adpcm_ima_dat4_decoder=1
yadif_cuda_filter=0
inline_asm_nonlocal_labels=0
iso_media=1
smoothstreaming_muxer=1
act_demuxer=1
framepack_filter=1
opus_multistream_decoder_create=0
anativewindow_acquire=0
libtwolame_encoder=0
i686_external=0
tak_demuxer=1
tmv_demuxer=1
bitplanenoise_filter=1
qsvenc=0
eac3_decoder=1
mov_demuxer=1
vp9_vaapi_encoder=0
xa_demuxer=1
subviewer1_decoder=1
kbhit=0
adpcm_ea_r3_decoder=1
vbi_decoder_new=0
brstm_demuxer=1
stereowiden_filter=1
cabs=1
libopencore_amrnb=0
webm_dash_manifest_muxer=1
null_filter=1
srt_demuxer=1
ismv_muxer=1
blackframe_filter=0
mjpeg_nvdec_hwaccel=0
zmq_ctx_new=0
flanger_filter=1
tscc2_decoder=1
anoisesrc_filter=1
pcm_u8_decoder=1
cpia_decoder=1
xsub_encoder=1
libopencore_amrwb_decoder=0
file_protocol=1
ssse3_inline=0
loongson2=0
vainitialize=0
bfi_demuxer=1
clcreateimagefromfdintel_fn=0
anullsrc_filter=1
earwax_filter=1
ssse3=0
separatefields_filter=1
dss_demuxer=1
hds_muxer=1
sobel_opencl_filter=0
aeval_filter=1
tgp_muxer=1
sbc_decoder=1
decklink=0
mpeg2_dxva2_hwaccel=0
vc1_qsv_decoder=0
ppc4xx=0
decimate_filter=1
svq1_encoder=1
haas_filter=1
riffdec=1
prores_decoder=1
rtmps_protocol=0
xcb_xfixes_get_cursor_image=0
xvgetportattribute=0
mpeg4_cuvid_decoder=0
wsaud_demuxer=1
libm=1
bandreject_filter=1
fbdev_indev=1
pcm_s16le_decoder=1
pcm_u32le_muxer=1
fifo_muxer=1
decklinkapi_h=0
svq1_decoder=1
dxgidebug_h=0
sin=1
fifo_test_muxer=1
pipe_protocol=1
ass_filter=0
adpcm_ima_wav_decoder=1
anm_demuxer=1
decklink_outdev=0
adpcm_ea_r2_decoder=1
rawvideo_encoder=1
valgrind_valgrind_h=1
hls_demuxer=1
getrusage=1
omx_core_h=0
opus_decoder=1
utvideo_decoder=1
mp2_encoder=1
interlace_filter=0
crossfeed_filter=1
amd3dnowext_external=0
libcodec2_decoder=0
getshellwindow=0
mips64r2_external=0
wmv2_decoder=1
hardcoded_tables=0
eac3_at_decoder=0
d3d11va=0
removelogo_filter=1
opengl_gl3_h=0
avs2_parser=1
ladspa=0
mxpeg_decoder=1
avisynth_demuxer=0
datascope_filter=1
http_multiclient_example=0
pcm_mulaw_at_encoder=0
demuxers=0
pcm_f32le_decoder=1
subfile_protocol=1
superequalizer_filter=1
fmtconvert=1
dxv_decoder=1
fcinit=0
motionpixels_decoder=1
pcm_f64le_decoder=1
mmx_external=0
ra_144_decoder=1
prewitt_filter=1
qdm2_decoder=1
libc_msvcrt=0
idet_filter=1
svag_demuxer=1
gsm_decoder=1
pcm_u8_demuxer=1
vp9_parser=1
image_exr_pipe_demuxer=1
vag_demuxer=1
tremolo_filter=1
localtime_r=1
movtext_decoder=1
sdp_demuxer=1
image_psd_pipe_demuxer=1
zlib=1
ivf_muxer=1
libgme_demuxer=0
pcm_s24be_demuxer=1
vc1_d3d11va_hwaccel=0
vp9_rkmpp_decoder=0
nullsrc_filter=1
symver_asm_label=0
adpcm_4xm_decoder=1
aasc_decoder=1
allrgb_filter=1
crc_muxer=1
fma3_inline=0
asv2_encoder=1
ass_muxer=1
sys_stat_h=1
readeia608_filter=1
eatgq_decoder=1
asf_muxer=1
setsar_filter=1
realtime_filter=1
voc_demuxer=1
libopus_decoder=0
pcm_f32be_demuxer=1
dejudder_filter=1
podpages=0
ffmetadata_demuxer=1
v308_decoder=1
vsx_external=0
ssa_encoder=1
m4v_demuxer=1
image_png_pipe_demuxer=1
libndi_newtek=0
struct_sockaddr_in6=1
mpeg4_v4l2m2m_encoder=1
hevc_nvdec_hwaccel=0
rtp_mpegts_muxer=1
sln_demuxer=1
jack_port_get_latency_range=1
sinc_filter=1
hevc_cuvid_decoder=0
colorbalance_filter=1
libopenjpeg_encoder=0
ilbc_at_decoder=0
sys_socket_h=1
pcm_s24be_muxer=1
pam_decoder=1
mipsdsp_external=0
armv6_inline=0
vaapi=0
deblock_filter=1
vivo_demuxer=1
tessbaseapicreate=0
local_aligned=0
m68k=0
pcm_s64be_decoder=1
tpeldsp=1
hap_decoder=1
armv8_inline=0
vc1_d3d11va2_hwaccel=0
selectivecolor_filter=1
aptx_decoder=1
libvmaf_filter=0
libcodec2=0
dca_encoder=1
as_arch_directive=0
mov_muxer=1
pcm_u8_muxer=1
ac3_fixed_decoder=1
nistsphere_demuxer=1
cbs_vp9=1
yuv4mpegpipe_demuxer=1
wrapped_avframe_decoder=1
amr_nb_at_decoder=0
setmode=0
snappy_compress=0
va_va_enc_h264_h=0
lrint=1
mpeg2_mmal_decoder=0
dlopen=1
vaencpictureparameterbufferhevc=0
qcelp_decoder=1
dv_demuxer=1
adpcm_swf_encoder=1
sbc_muxer=1
bz2_bzlibversion=0
aphaser_filter=1
vfpv3_inline=0
adpcm_ima_ws_decoder=1
h264_vaapi_encoder=0
sbc_encoder=1
caca_outdev=0
colorspace_filter=1
riffenc=1
txtpages=0
pcm_s24le_planar_decoder=1
c93_decoder=1
pragma_deprecated=1
arc4random=0
parsers=0
pcm_f64le_muxer=1
adpcm_adx_encoder=1
semaphore_h=1
readvitc_filter=1
mm_empty=0
ssim_filter=1
sup_demuxer=1
xsub_decoder=1
bfstm_demuxer=1
protocols=0
dvvideo_decoder=1
dirac_demuxer=1
wtv_muxer=1
aac_fixed_decoder=1
xvid_global=0
pcm_f16le_decoder=1
mp3on4float_decoder=1
h263_decoder=1
showinfo_filter=1
dcbzl=0
kvz_api_get=0
wavpack_encoder=1
atrim_filter=1
realtext_demuxer=1
overlay_filter=1
avr_demuxer=1
vfpv3_external=0
webm_chunk_muxer=1
blocks_extension=0
adpcm_swf_decoder=1
mpeg2_v4l2_m2m=1
h263_v4l2_m2m=1
chromaprint=0
null_muxer=1
adpcm_ms_encoder=1
vp6a_decoder=1
gme_new_emu=0
libvorbis_decoder=1
xop=0
xan_wc3_decoder=1
vfp_inline=0
cavsvideo_parser=1
mp3_muxer=1
showwaves_filter=1
asv2_decoder=1
alias_pix_encoder=1
sds_demuxer=1
qdmc_decoder=1
pcm_u32be_decoder=1
fast_unaligned=1
algeterror=0
cbs_h265=1
adpcm_ima_qt_encoder=1
mpeg2_cuvid_decoder=0
pixlet_decoder=1
prores_ks_encoder=1
g723_1_muxer=1
gif_muxer=1
alias_pix_decoder=1
delogo_filter=0
rl2_decoder=1
mmxext_external=0
pva_demuxer=1
image2pipe_demuxer=1
vble_decoder=1
encode_audio_example=0
settb_filter=1
tiff_decoder=1
mv_demuxer=1
sse=0
mmi=0
rscc_decoder=1
dash_demuxer=1
uwp=0
vaguedenoiser_filter=0
libx265=0
malloc_h=1
vp9_metadata_bsf=1
tta_encoder=1
bwdif_filter=1
g726_muxer=1
snd_pcm_htimestamp=1
pcm_vidc_muxer=1
rtmp_protocol=1
avi_demuxer=1
adpcm_g722_decoder=1
psnr_filter=1
png_parser=1
loco_decoder=1
boxblur_opencl_filter=0
machine_ioctl_bt848_h=0
psp_muxer=1
asf_o_demuxer=1
sys_types_h=1
netdb_h=1
dash_muxer=1
h263_v4l2m2m_encoder=1
swscale=1
webvtt_decoder=1
pan_filter=1
indeo4_decoder=1
wav_demuxer=1
resampling_audio_example=0
loongson3_external=0
vp8_v4l2_m2m=1
mpeg2video_muxer=1
limiter_filter=1
screenpresso_decoder=1
thumb=0
amd3dnow=0
mptestsrc_filter=0
dvprofile=1
nppgetlibversion=0
asplit_filter=1
mpeg1_v4l2_m2m=1
sonic_encoder=1
libmfx=0
oga_muxer=1
vobsub_demuxer=1
apc_demuxer=1
rockchip_mpp=0
jpegls_decoder=1
aptx_hd_encoder=1
extract_extradata_bsf=1
ffvhuff_decoder=1
v210x_demuxer=1
ircam_demuxer=1
libgsm_ms_encoder=0
rawvideo_muxer=1
showfreqs_filter=1
dvbsub_demuxer=1
wsvqa_demuxer=1
runtime_cpudetect=0
dshow_h=0
idf_decoder=1
iss_demuxer=1
sinewin=1
nvenc_hevc_encoder=0
xface_encoder=1
stdint_h=1
adpcm_ms_decoder=1
memorybarrier=0
loongson3_inline=0
wve_demuxer=1
aix_demuxer=1
sparc64=0
adpcm_ea_r1_decoder=1
ulti_decoder=1
vibrance_filter=1
deinterlace_qsv_filter=0
rv10_decoder=1
spx_muxer=1
mace6_decoder=1
h264_decoder=1
adpcm_ea_xas_decoder=1
rl2_demuxer=1
aura_decoder=1
truehd_encoder=1
anm_decoder=1
pal100bars_filter=1
fftfilt_filter=1
fast_clz=1
sr_filter=1
scaling_video_example=0
mpegaudio_parser=1
adpcm_ima_oki_decoder=1
alac_at_decoder=0
symver_gnu_asm=0
escape124_decoder=1
filmstrip_muxer=1
mjpeg_demuxer=1
rv30_decoder=1
vp9_cuvid_decoder=0
aloop_filter=1
frei0r_filter=0
libsmbclient=0
huffyuv_decoder=1
removegrain_filter=1
dca_decoder=1
pal75bars_filter=1
fma3_external=0
webp_decoder=1
pcm_vidc_demuxer=1
pcm_f32be_muxer=1
shuffleplanes_filter=1
mpegvideo=1
llrintf=1
libvpx_vp9_decoder=0
acopy_filter=1
pcm_s24be_decoder=1
powf=1
ciescope_filter=1
shine_encode_buffer=0
vc1_dxva2_hwaccel=0
avx512_inline=0
dlsym=1
despill_filter=1
cook_decoder=1
scale_qsv_filter=0
sched_getaffinity=1
dirac_parser=1
d3d9_h=0
libc_glibc=1
swf_muxer=1
convolution_opencl_filter=0
as_dn_directive=0
oss_indev=1
hw_decode_example=0
hevc_vdpau_hwaccel=0
s302m_encoder=1
chorus_filter=1
mszh_decoder=1
ass_demuxer=1
adpcm_ea_maxis_xa_decoder=1
libopenjpeg=0
https_protocol=0
pcm_u32be_muxer=1
x264_h=0
libfreetype=0
setparams_filter=1
openssl=0
avx2=0
adpcm_yamaha_decoder=1
http_protocol=1
libtls=0
libiec61883=0
iec61883_cmp_connect=0
wmv3_dxva2_hwaccel=0
amrwb_demuxer=1
r10k_encoder=1
bink_demuxer=1
pcm_u24be_muxer=1
lvf_demuxer=1
mpp_create=0
pcm_s16le_planar_decoder=1
h264_qsv_decoder=0
dlfcn_h=1
mxf_muxer=1
mmxext=0
vpk_demuxer=1
crystalizer_filter=1
clock_gettime=1
astreamselect_filter=1
armv8_external=0
mkstemp=1
s390=0
libndi_newtek_indev=0
bktr_indev=0
targa_decoder=1
autodetect=0
nc_demuxer=1
w64_muxer=1
midequalizer_filter=1
mjpeg_encoder=1
rasc_decoder=1
afifo_filter=1
lagarith_decoder=1
setdar_filter=1
tscc_decoder=1
mipsdspr2_external=0
os2threads=0
__sync_val_compare_and_swap=0
aa_demuxer=1
pcm_s24le_muxer=1
libzvbi=0
securetransport=0
dvdsub_parser=1
wnv1_decoder=1
vaapi_encode_example=0
dxva_picparams_vp9=0
tiff_encoder=1
mpeg1vcd_muxer=1
lilv_world_new=0
atrac3p_decoder=1
crop_filter=1
speex_decoder_init=0
armv6_external=0
roberts_opencl_filter=0
struct_ipv6_mreq=1
dsd_msbf_planar_decoder=1
gcrypt=0
framestep_filter=1
interplay_acm_decoder=1
arm=0
avm2_muxer=1
edgedetect_filter=1
vp8_qsv_decoder=0
vidstabtransform_filter=0
bbox_filter=1
pcm_s16be_planar_decoder=1
asv1_decoder=1
ra_144_encoder=1
pcm_alaw_encoder=1
manpages=0
h264_nvdec_hwaccel=0
h261_decoder=1
h264_parser=1
lensfun_filter=0
pcm_s16be_demuxer=1
h261_muxer=1
encoders=0
decklink_indev=0
cpunop_external=0
sanm_decoder=1
pcm_s24le_encoder=1
sunrast_encoder=1
equalizer_filter=1
vp8_vaapi_hwaccel=0
vaencpictureparameterbuffervp8=0
avx512_external=0
hapqa_extract_bsf=1
ayuv_decoder=1
initializesecuritycontext=0
vc1_parser=1
aea_demuxer=1
h263p_decoder=1
cue_filter=1
bzlib=0
linux_perf_event_h=0
sse42_external=0
perl=0
compute_vmaf=0
truehd_muxer=1
ogv_muxer=1
vidstabdetect_filter=0
complex_h=1
__machine_rw_barrier=0
lzo_lzo1x_h=0
image2pipe_muxer=1
sse42=0
rtmpte_protocol=0
atrac3pal_decoder=1
vp6f_decoder=1
overlay_qsv_filter=0
signature_filter=0
llauddsp=1
dca_core_bsf=1
adpcm_g726_decoder=1
lzo1x_999_compress=0
log2f=1
metadata_example=0
mtv_demuxer=1
aiff_demuxer=1
mp2_at_decoder=0
libopenjpeg_decoder=0
v210_decoder=1
cexp=1
mpjpeg_muxer=1
flashsv2_encoder=1
vplayer_decoder=1
mjpegb_decoder=1
msa=0
avectorscope_filter=1
log2=1
cuda=0
hevc_rkmpp_decoder=0
wrapped_avframe_encoder=1
mpeg4_decoder=1
y41p_decoder=1
nvdec=0
neon_clobber_test=0
dfa_decoder=1
showspectrum_filter=1
drawgrid_filter=1
libwavpack=0
avs2_muxer=1
processing_ndi_lib_h=0
bit_demuxer=1
daud_demuxer=1
mace3_decoder=1
ashowinfo_filter=1
msa_h=0
xma2_decoder=1
trunc=1
pcm_u8_encoder=1
wsd_demuxer=1
decoder_interface_init=0
libxcb_xfixes=0
testsrc_filter=1
aptx_encoder=1
avui_encoder=1
amultiply_filter=1
mmi_external=0
shorten_decoder=1
image_jpegls_pipe_demuxer=1
kmvc_decoder=1
mpz_export=0
m101_decoder=1
hevc_amf_encoder=0
aac_parser=1
sipr_decoder=1
texturedsp=1
jpegls_encoder=1
amovie_filter=1
bitpacked_decoder=1
jpeg2000_encoder=1
v408_encoder=1
startcode=1
h264_qsv_encoder=0
vapictureparameterbuffervp8=0
libdc1394_indev=0
g729_decoder=1
texi2html=0
paf_demuxer=1
pcm_s16be_muxer=1
mlp_muxer=1
dirac_decoder=1
vp3dsp=1
zlibversion=1
aesni_inline=0
kgv1_decoder=1
g729_parser=1
dirent_h=1
mpeg1system_muxer=1
kerndeint_filter=0
rtp_protocol=1
dsd_lsbf_decoder=1
xwma_demuxer=1
getprocessmemoryinfo=0
hevc_vaapi_encoder=0
coremedia=1
xan_dpcm_decoder=1
transcoding_example=0
vp8_v4l2m2m_decoder=1
h263_vaapi_hwaccel=0
armv8=0
atanf=1
libshine_encoder=0
libtensorflow=1
adx_demuxer=1
posix_memalign=1
safe_bitstream_reader=0
g726le_demuxer=1
libbs2b=0
setpts_filter=1
vp9_vaapi_hwaccel=0
sinf=1
fma4=0
_aligned_malloc=0
getprocesstimes=0
truemotion2_decoder=1
atrac1_decoder=1
libzimg=0
tiertexseqvideo_decoder=1
adpcm_thp_decoder=1
lutyuv_filter=1
section_data_rel_ro=1
ldbrx_inline=0
mips32r2_external=0
avr32_uc=0
gsm_demuxer=1
libopencore_amrnb_decoder=0
opj_version=0
abitscope_filter=1
setrange_filter=1
libmp3lame_encoder=0
udp_protocol=1
fma4_inline=0
ffvhuff_encoder=1
mpegts_demuxer=1
h264_omx_encoder=0
extract_mvs_example=0
cbrt=1
g723_1_demuxer=1
dwt=1
hqdn3d_filter=0
nonfree=0
image_pgm_pipe_demuxer=1
cl_dx9_surface_info_khr=0
cdgraphics_decoder=1
iconv=0
vp9_d3d11va2_hwaccel=0
paf_video_decoder=1
mips64r6_external=0
lut1d_filter=1
ivr_demuxer=1
maskedmerge_filter=1
vaencpictureparameterbufferjpeg=0
mmsh_protocol=1
trace_headers_bsf=1
scale_npp_filter=0
adpcm_vima_decoder=1
pcm_u16be_demuxer=1
wmapro_decoder=1
ladspa_h=0
makeinfo_html=0
kmsgrab_indev=0
image_qdraw_pipe_demuxer=1
waveform_filter=1
hpeldsp=1
bcrypt=0
opus_muxer=1
lzma_version_number=0
wv_muxer=1
smjpeg_muxer=1
termios_h=1
webvtt_muxer=1
cdxl_decoder=1
fdctdsp=1
eac3_muxer=1
rawvideo_demuxer=1
struct_pollfd=1
mpeg2_vaapi_encoder=0
aperms_filter=1
image_xpm_pipe_demuxer=1
tlut2_filter=1
qpeldsp=1
ocr_filter=0
v410_decoder=1
webm_muxer=1
opencl=0
image2_muxer=1
dvbsub_decoder=1
colormatrix_filter=0
frame_thread_encoder=0
g726_demuxer=1
eacmv_decoder=1
doc=0
rpl_demuxer=1
jpegtables=1
libdl=1
hevc_v4l2m2m_encoder=0
omx_rpi=0
rtsp_muxer=1
pcm_s32be_encoder=1
histeq_filter=0
dtshd_demuxer=1
remuxing_example=0
gray=0
ser_demuxer=1
av1_metadata_bsf=1
pcm_s64be_encoder=1
adpcm_thp_le_decoder=1
fspp_filter=0
rtp_demuxer=1
showspectrumpic_filter=1
zmq_filter=0
libfdk_aac=0
libvorbisenc=1
libxcb_shape=0
sse2=0
gsm_ms_decoder=1
a64multi_encoder=1
mp3_decoder=1
aesni_external=0
siff_demuxer=1
flashsv_encoder=1
pixdesctest_filter=1
as_object_arch=0
frei0r_src_filter=0
libopus=0
wmav2_encoder=1
mss2_decoder=1
pcm_u32le_demuxer=1
mapviewoffile=0
nuv_decoder=1
libilbc=0
huffyuvencdsp=1
vp9_d3d11va_hwaccel=0
flic_decoder=1
msmpeg4v2_encoder=1
scc_demuxer=1
swf_demuxer=1
alphamerge_filter=1
dsd_lsbf_planar_decoder=1
opus_parser=1
mpegvideoenc=1
jacosub_demuxer=1
h263_parser=1
vpx_img_fmt_highbitdepth=0
mpeg1video_muxer=1
h264_videotoolbox_hwaccel=0
wavpack_decoder=1
h264_vdpau_hwaccel=0
flv_encoder=1
bmp_encoder=1
pthread_create=1
aintegral_filter=1
alpha=0
winsock2_h=0
bench_filter=1
rawvideo_decoder=1
speedhq_decoder=1
eac3_core_bsf=1
htmlpages=0
dsd_msbf_decoder=1
h264_mp4toannexb_bsf=1
armv5te=0
image_webp_pipe_demuxer=1
replaygain_filter=1
dxa_decoder=1
fits_demuxer=1
wmv1_decoder=1
deflate_filter=1
twolame_init=0
ico_muxer=1
getopt=1
h264_videotoolbox_encoder=0
vp9_decoder=1
atadenoise_filter=1
alphaextract_filter=1
encode_video_example=0
smjpeg_demuxer=1
libvidstab=0
ljpeg_encoder=1
flite_init=0
gcry_mpi_new=0
mlp_decoder=1
gremlin_dpcm_decoder=1
aacencopen=0
xwd_decoder=1
subviewer1_demuxer=1
fade_filter=1
mjpeg_2000_demuxer=1
fps_filter=1
pcm_u32be_encoder=1
apng_decoder=1
setend=0
opencl_vaapi_intel_media=0
mp3_header_decompress_bsf=1
stream_segment_muxer=1
libopenh264_decoder=0
ircam_muxer=1
pcm_s16be_decoder=1
codecview_filter=1
filter_audio_example=0
hevc_dxva2_hwaccel=0
asettb_filter=1
mpeg1_videotoolbox_hwaccel=0
mjpeg_vaapi_hwaccel=0
mpeg2_vdpau_hwaccel=0
aresample_filter=1
linux_videodev2_h=1
glxgetprocaddress=0
mipsfpu_inline=0
w3fdif_filter=1
x86=1
getaddrinfo=1
alac_decoder=1
chromaprint_get_version=0
escape130_decoder=1
wmv3_vdpau_hwaccel=0
pixblockdsp=1
libsrt=0
vorbis_vorbisenc_h=1
sio_open=0
libvo_amrwbenc_encoder=0
log10f=1
drawtext_filter=0
mfxinit=0
volumedetect_filter=1
data_demuxer=1
libopencore_amrnb_encoder=0
ccaption_decoder=1
vc1_demuxer=1
acue_filter=1
asv1_encoder=1
ladspa_filter=0
iac_decoder=1
swaprect_filter=1
ape_decoder=1
cljr_decoder=1
thp_demuxer=1
va_va_dec_vp8_h=0
h261_parser=1
repeatfields_filter=0
fillborders_filter=1
negate_filter=1
xvag_demuxer=1
wc3_demuxer=1
mpdecimate_filter=0
mlp_demuxer=1
lut2_filter=1
dirac_muxer=1
libvpx_vp9_encoder=0
libtesseract=0
pulse_indev=0
on2avc_decoder=1
adpcm_sbpro_4_decoder=1
libdavs2_decoder=0
vorbis_encode_init=1
rv34dsp=1
hue_filter=1
wtv_demuxer=1
dvvideo_encoder=1
sonic_ls_encoder=1
sndio=0
mdec_decoder=1
cellauto_filter=1
cscd_decoder=1
hilbert_filter=1
mwsc_decoder=1
libdrm=0
neon=0
anull_filter=1
rv40_decoder=1
sys_un_h=1
sab_filter=0
inline_asm_direct_symbol_refs=0
format_filter=1
avfoundation=0
vstack_filter=1
sap_muxer=1
avio_reading_example=0
mmx2=0
secitemimport=0
pgm_encoder=1
h263_v4l2m2m_decoder=1
image_pcx_pipe_demuxer=1
dxva2api_h=0
ibm_asm=0
mediacodec=0
hash_muxer=1
dsf_demuxer=1
//BEGIN_DEPENDS
aac_latm_parser=aac_latm_parser
wmv3_decoder=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode,wmv3_decoder
hevc_videotoolbox_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
fourxm_decoder=blockdsp,bswapdsp,fourxm_decoder
huffyuv_encoder=bswapdsp,huffman,huffyuvencdsp,llvidencdsp,huffyuv_encoder
v4l2_m2m=linux_videodev2_h,sem_timedwait,v4l2_m2m
vflip_filter=vflip_filter
mdct15=mdct15
h264_mediacodec_decoder=h264_mp4toannexb_bsf,h264_parser,golomb,h264dsp,h264parse
als_decoder=bswapdsp,als_decoder
image2_brender_pix_demuxer=image2_demuxer,image2_brender_pix_demuxer
aac_at_decoder=aac_adtstoasc_bsf,adts_header
mpeg1video_decoder=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,mpeg1video_decoder
sctp_protocol=network
prores_encoder=fdctdsp,prores_encoder
unix_protocol=sys_un_h,network,unix_protocol
mpeg4video_parser=h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,mpeg4video_parser
libvorbis_encoder=libvorbis,libvorbisenc,audio_frame_queue,libvorbis_encoder
asf_stream_muxer=asf_muxer,riffenc,asf_stream_muxer
vp9_parser=vp9_parser
caf_muxer=iso_media,caf_muxer
mxf_opatom_muxer=mxf_muxer,mxf_opatom_muxer
bink_decoder=blockdsp,hpeldsp,bink_decoder
aptx_hd_decoder=audio_frame_queue,aptx_hd_decoder
transcode_aac_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,swresample
matroska_muxer=iso_media,riffenc,matroska_muxer
hevcparse=golomb,hevcparse
dwt=dwt
lut_filter=lut_filter
h264dsp=h264dsp
eatqi_decoder=aandcttables,blockdsp,bswapdsp,idctdsp,eatqi_decoder
mp3adufloat_decoder=mpegaudio,mp3adufloat_decoder
alsa_indev=alsa,alsa_indev
cpunop=i686,x86
atrac9_decoder=mdct,atrac9_decoder
vc1_v4l2_m2m=vc1_v4l2_m2m
ffprobe=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,ffprobe
asv2_decoder=blockdsp,bswapdsp,idctdsp,asv2_decoder
vp7_decoder=h264pred,videodsp,vp8dsp,vp7_decoder
mdct=mdct
h263i_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,h263i_decoder
zoompan_filter=swscale,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,zoompan_filter
rtmpts_protocol=ffrtmphttp_protocol,http_protocol,tcp_protocol,network,zlib
utvideo_encoder=bswapdsp,huffman,llvidencdsp,utvideo_encoder
jpegtables=jpegtables
ac3_encoder=ac3dsp,audiodsp,mdct,me_cmp,ac3_encoder
avfoundation_indev=corevideo,coremedia,pthreads
iirfilter=iirfilter
nut_muxer=riffenc,nut_muxer
libaom_av1_encoder=extract_extradata_bsf
avisynth=libdl
flac_encoder=bswapdsp,flacdsp,lpc,flac_encoder
wmv2dsp=wmv2dsp
mp3on4_decoder=mpegaudio,mp3on4_decoder
asv1_encoder=aandcttables,bswapdsp,fdctdsp,pixblockdsp,asv1_encoder
atrac3p_decoder=mdct,sinewin,atrac3p_decoder
crop_filter=crop_filter
deconvolve_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,deconvolve_filter
corefoundation=corefoundation
select_filter=pixelutils,select_filter
sonic_decoder=golomb,rangecoder,sonic_decoder
mp2_decoder=mpegaudio,mp2_decoder
mp2float_decoder=mpegaudio,mp2float_decoder
startcode=startcode
dnn=dnn
ac3_fixed_encoder=ac3dsp,audiodsp,mdct,me_cmp,ac3_fixed_encoder
async_protocol=threads,async_protocol
v4l2_outdev=linux_videodev2_h,v4l2_outdev
binkaudio_dct_decoder=mdct,rdft,fft,dct,sinewin,wma_freqs,binkaudio_dct_decoder
libfdk_aac_encoder=audio_frame_queue
demuxing_decoding_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
i686=x86,i686
zscale_filter=const_nan
qsvdec_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
mp3_at_decoder=mpegaudioheader
cbs_jpeg=cbs
h261_encoder=mpegvideoenc,me_cmp,pixblockdsp,h261_encoder
mmx=x86
zlib_encoder=zlib,zlib_encoder
aic_decoder=golomb,idctdsp,aic_decoder
mpeg1_xvmc_hwaccel=mpeg1video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
sp5x_decoder=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,sp5x_decoder
srtp_protocol=rtp_protocol,udp_protocol,network,srtp,srtp_protocol
hevc_d3d11va2_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
h264_vaapi_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
tak_parser=tak_parser
vp3_decoder=hpeldsp,vp3dsp,videodsp,vp3_decoder
h264_v4l2_m2m=h264_v4l2_m2m
oss_outdev=sys_soundcard_h,oss_outdev
wmav1_encoder=mdct,sinewin,wma_freqs,wmav1_encoder
ffrtmphttp_protocol=http_protocol,tcp_protocol,network,zlib,ffrtmphttp_protocol
ralf_decoder=golomb,ralf_decoder
network=network
magicyuv_encoder=llvidencdsp,magicyuv_encoder
jv_decoder=blockdsp,jv_decoder
xcbgrab_indev=libxcb,xcbgrab_indev
corevideo=corevideo
png_encoder=zlib,llvidencdsp,png_encoder
framerate_filter=pixelutils,framerate_filter
mp3_demuxer=mpegaudio_parser,mpegaudioheader,mp3_demuxer
fork=fork
h263_encoder=h263dsp,mpegvideoenc,me_cmp,pixblockdsp,h263_encoder
opus_encoder=audio_frame_queue,mdct15,opus_encoder
avrn_decoder=exif,jpegtables,avrn_decoder
mpeg2_metadata_bsf=cbs_mpeg2,cbs,mpeg2_metadata_bsf
rm_demuxer=rm_demuxer
h264parse=h264parse
magicyuv_decoder=llviddsp,magicyuv_decoder
swresample=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,swresample
adts_header=adts_header
threads=threads
hevc_parser=hevcparse,golomb,hevc_parser
msmpeg4v3_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,msmpeg4v3_decoder
hevc_mp4toannexb_bsf=hevc_mp4toannexb_bsf
h264_d3d11va_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
aac_adtstoasc_bsf=adts_header,aac_adtstoasc_bsf
libxcb=libxcb
hpeldsp=hpeldsp
cbs_av1=cbs_av1
mmf_muxer=riffenc,mmf_muxer
me_cmp=me_cmp
libwavpack_encoder=audio_frame_queue
mpeg2video_encoder=mpegvideoenc,me_cmp,pixblockdsp,h263dsp,mpeg2video_encoder
vaapi_transcode_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
ffv1_encoder=rangecoder,ffv1_encoder
audio_frame_queue=audio_frame_queue
h264qpel=h264qpel
spectrumsynth_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,spectrumsynth_filter
aac_latm_decoder=aac_decoder,adts_header,mdct15,mdct,sinewin,aac_latm_parser,aac_latm_decoder
ac3dsp=ac3dsp
xmv_demuxer=riffdec,xmv_demuxer
vp8_nvdec_hwaccel=vp8_decoder,h264pred,videodsp,vp8dsp
srtp=srtp
x86_64=i686,x86,fast_cmov,x86_64
cabac=cabac
vp9_vaapi_hwaccel=vp9_decoder,videodsp,vp9_parser,vp9_superframe_split_bsf
sdp_demuxer=rtpdec,asf_demuxer,riffdec,jpegtables,mov_demuxer,iso_media,zlib,mpegts_demuxer,rm_demuxer,rtp_protocol,udp_protocol,network,sdp_demuxer
mpeg2_qsv_decoder=mpegvideo_parser,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
hevc_decoder=bswapdsp,cabac,golomb,hevcparse,videodsp,hevc_decoder
h264_parser=golomb,h264dsp,h264parse,h264_parser
muxing_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,swscale
subtitles_filter=avformat,avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,network,zlib
vp8dsp=vp8dsp
matroska_demuxer=iso_media,riffdec,lzo,zlib,matroska_demuxer
wav_muxer=riffenc,wav_muxer
mpeg4_vdpau_hwaccel=mpeg4_decoder,h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,mpeg4video_parser
fast_cmov=fast_cmov
ffplay=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,swscale,swresample,rdft,fft,crop_filter,transpose_filter,hflip_filter,vflip_filter,rotate_filter
pcm_alaw_at_encoder=audio_frame_queue
hevc_qsv_encoder=hevcparse,golomb
atrac3_decoder=mdct,atrac3_decoder
mjpeg2jpeg_bsf=jpegtables,mjpeg2jpeg_bsf
h264_redundant_pps_bsf=cbs_h264,cbs,golomb,h264_redundant_pps_bsf
av1_metadata_bsf=cbs_av1,av1_metadata_bsf
mpegtsraw_demuxer=mpegts_demuxer,iso_media,mpegtsraw_demuxer
filter_units_bsf=cbs,filter_units_bsf
amv_decoder=sp5x_decoder,mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,amv_decoder
mscc_decoder=zlib,mscc_decoder
rawvideo_decoder=bswapdsp,rawvideo_decoder
flac_parser=flac_parser
snow_decoder=dwt,h264qpel,hpeldsp,me_cmp,rangecoder,videodsp,snow_decoder
mpegts_muxer=adts_muxer,latm_muxer,mpegts_muxer
clearvideo_decoder=idctdsp,clearvideo_decoder
lzo=lzo
vp6a_decoder=vp6_decoder,h264chroma,hpeldsp,huffman,videodsp,vp3dsp,vp56dsp,vp6a_decoder
golomb=golomb
wmv3image_decoder=wmv3_decoder,vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode,wmv3image_decoder
rv10_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,rv10_encoder
alac_encoder=lpc,alac_encoder
decode_audio_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
msmpeg4v2_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,msmpeg4v2_decoder
h264pred=h264pred
vc1_vaapi_hwaccel=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode
intrax8=blockdsp,idctdsp,intrax8
faandct=fdctdsp
avi_muxer=riffenc,avi_muxer
httpproxy_protocol=tcp_protocol,network,zlib,httpproxy_protocol
qdm2_decoder=mdct,rdft,fft,mpegaudiodsp,dct,qdm2_decoder
msmpeg4v3_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,msmpeg4v3_encoder
ivf_muxer=av1_metadata_bsf,cbs_av1,vp9_superframe_bsf,ivf_muxer
mpegps_demuxer=mpegps_demuxer
mmx_inline=x86
asv2_encoder=aandcttables,bswapdsp,fdctdsp,pixblockdsp,asv2_encoder
ffmpeg=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avfilter,avformat,network,zlib,ffmpeg
sys_soundcard_h=sys_soundcard_h
mp4_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,mp4_muxer
deshake_filter=pixelutils,deshake_filter
theora_decoder=vp3_decoder,hpeldsp,vp3dsp,videodsp,theora_decoder
indeo3_decoder=hpeldsp,indeo3_decoder
eac3_demuxer=ac3_parser,eac3_demuxer
flv_muxer=flv_muxer
msmpeg4v1_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,msmpeg4v1_decoder
cllc_decoder=bswapdsp,cllc_decoder
vp9_superframe_split_bsf=vp9_superframe_split_bsf
h264_v4l2m2m_encoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,h264_v4l2_m2m,h264_v4l2m2m_encoder
amrnb_decoder=lsp,amrnb_decoder
matroska_audio_muxer=matroska_muxer,iso_media,riffenc,matroska_audio_muxer
eamad_decoder=aandcttables,blockdsp,bswapdsp,idctdsp,mpegvideo,hpeldsp,me_cmp,eamad_decoder
mss34dsp=mss34dsp
mpeg1_v4l2_m2m=mpeg1_v4l2_m2m
error_resilience=me_cmp,error_resilience
pixelutils=pixelutils
g722dsp=g722dsp
mjpeg_decoder=blockdsp,hpeldsp,exif,idctdsp,jpegtables,mjpeg_decoder
frei0r_filter=libdl
hevc_vaapi_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
postproc=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia
gopher_protocol=network,gopher_protocol
scale2ref_filter=swscale,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,scale2ref_filter
w64_muxer=wav_muxer,riffenc,w64_muxer
fraps_decoder=bswapdsp,huffman,fraps_decoder
latm_muxer=latm_muxer
pcm_mulaw_at_encoder=audio_frame_queue
avutil=clock_gettime,libm,corefoundation,corevideo,coremedia,avutil
transcoding_example=avfilter,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,avcodec,null_bsf,avformat,network,zlib
mpc7_decoder=bswapdsp,mpegaudiodsp,dct,rdft,fft,mpc7_decoder
vp8_vaapi_hwaccel=vp8_decoder,h264pred,videodsp,vp8dsp
iso_media=iso_media
smoothstreaming_muxer=ismv_muxer,mov_muxer,iso_media,riffenc,rtpenc_chain,smoothstreaming_muxer
dnxhd_encoder=blockdsp,fdctdsp,idctdsp,mpegvideoenc,me_cmp,pixblockdsp,dnxhd_encoder
snappy=snappy
mpeg2_d3d11va2_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
libxml2=libxml2
xma2_decoder=wmapro_decoder,mdct,sinewin,wma_freqs,xma2_decoder
tak_demuxer=tak_parser,tak_demuxer
w64_demuxer=wav_demuxer,riffdec,w64_demuxer
eac3_decoder=ac3_decoder,ac3_parser,ac3dsp,bswapdsp,fmtconvert,mdct,eac3_decoder
mov_demuxer=iso_media,riffdec,zlib,mov_demuxer
coremedia=coremedia
vp8_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,vp8_v4l2_m2m,vp8_v4l2m2m_decoder
libshine_encoder=audio_frame_queue
frei0r_src_filter=libdl
encode_audio_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
sap_muxer=rtp_muxer,golomb,rtp_protocol,udp_protocol,network,rtpenc_chain,sap_muxer
tak_decoder=audiodsp,tak_decoder
resampling_audio_example=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,swresample
zmbv_decoder=zlib,zmbv_decoder
ismv_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,ismv_muxer
mjpeg_nvdec_hwaccel=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables
flacdsp=flacdsp
frame_thread_encoder=threads
mp3_decoder=mpegaudio,mp3_decoder
flac_demuxer=flac_parser,flac_demuxer
eac3_core_bsf=ac3_parser,eac3_core_bsf
eac3_encoder=ac3_encoder,ac3dsp,audiodsp,mdct,me_cmp,eac3_encoder
pthreads=pthreads
hds_muxer=flv_muxer,hds_muxer
aresample_filter=swresample,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,aresample_filter
tgp_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,tgp_muxer
vp8_v4l2m2m_encoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,vp8_v4l2_m2m,vp8_v4l2m2m_encoder
mpeg2_dxva2_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
wtv_demuxer=mpegts_demuxer,iso_media,riffdec,wtv_demuxer
spdif_demuxer=adts_header,spdif_demuxer
svq1_encoder=hpeldsp,me_cmp,mpegvideoenc,pixblockdsp,svq1_encoder
mxf_d10_muxer=mxf_muxer,mxf_d10_muxer
h263_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,h263_v4l2_m2m,h263_v4l2m2m_decoder
transpose_filter=transpose_filter
prores_decoder=blockdsp,idctdsp,prores_decoder
rtmps_protocol=zlib
huffyuvencdsp=huffyuvencdsp
libm=libm
ividsp=ividsp
fbdev_indev=linux_fb_h,fbdev_indev
vc1_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,vc1_v4l2_m2m,vc1_v4l2m2m_decoder
avdevice=avformat,avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,network,zlib,avdevice
fifo_muxer=threads,fifo_muxer
ilbc_at_encoder=audio_frame_queue
svq1_decoder=hpeldsp,svq1_decoder
flashsv2_decoder=zlib,flashsv2_decoder
flv_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,flv_decoder
mpegaudioheader=mpegaudioheader
decklink_outdev=threads
svq3_decoder=golomb,h264dsp,h264parse,h264pred,hpeldsp,tpeldsp,videodsp,zlib,svq3_decoder
adpcm_g722_encoder=g722dsp,adpcm_g722_encoder
valgrind_valgrind_h=valgrind_valgrind_h
utvideo_decoder=bswapdsp,llviddsp,utvideo_decoder
rasc_decoder=zlib,rasc_decoder
mpc8_decoder=mpegaudiodsp,dct,rdft,fft,mpc8_decoder
huffman=huffman
wmv2_decoder=blockdsp,error_resilience,me_cmp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,qpeldsp,intrax8,videodsp,wmv2dsp,wmv2_decoder
eac3_at_decoder=ac3_parser
afir_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,afir_filter
android_camera_indev=pthreads
swscale=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,swscale
nellymoser_encoder=audio_frame_queue,mdct,sinewin,nellymoser_encoder
avisynth_demuxer=riffdec
rv20_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,rv20_encoder
http_multiclient_example=avformat,avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,network,zlib,fork
mpeg1_nvdec_hwaccel=mpeg1video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
fmtconvert=fmtconvert
ogg_muxer=ogg_muxer
dxv_decoder=lzf,texturedsp,dxv_decoder
sofalizer_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft
psp_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,psp_muxer
motionpixels_decoder=bswapdsp,motionpixels_decoder
ra_144_decoder=audiodsp,ra_144_decoder
valgrind_backtrace=valgrind_valgrind_h
zerocodec_decoder=zlib,zerocodec_decoder
interplay_video_decoder=hpeldsp,interplay_video_decoder
lavfi_indev=avfilter,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,lavfi_indev
llvidencdsp=llvidencdsp
mjpeg_vaapi_encoder=jpegtables
removelogo_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,swscale,removelogo_filter
icecast_protocol=http_protocol,tcp_protocol,network,zlib,icecast_protocol
zlib=zlib
wcmv_decoder=zlib,wcmv_decoder
exif=exif
tls_protocol=tcp_protocol,network
txd_decoder=texturedsp,txd_decoder
hevc_v4l2m2m_encoder=v4l2_m2m,linux_videodev2_h,sem_timedwait
thp_decoder=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,thp_decoder
jpegls_decoder=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,jpegls_decoder
eatgq_decoder=aandcttables,eatgq_decoder
asf_muxer=riffenc,asf_muxer
vp9_dxva2_hwaccel=vp9_decoder,videodsp,vp9_parser,vp9_superframe_split_bsf
vp5_decoder=h264chroma,hpeldsp,videodsp,vp3dsp,vp56dsp,vp5_decoder
truehd_decoder=mlp_parser,truehd_decoder
dnxhd_decoder=blockdsp,idctdsp,dnxhd_decoder
rtpenc_chain=rtpenc_chain
rtmpte_protocol=ffrtmphttp_protocol,http_protocol,tcp_protocol,network,zlib
mpeg4_v4l2m2m_encoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,mpeg4_v4l2_m2m,mpeg4_v4l2m2m_encoder
hevc_nvdec_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
cbs_mpeg2=cbs,cbs_mpeg2
mpeg4_videotoolbox_hwaccel=mpeg4_decoder,h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,mpeg4video_parser
ffnvcodec=libdl
hevc_cuvid_decoder=hevc_mp4toannexb_bsf
h264_videotoolbox_encoder=pthreads
caf_demuxer=iso_media,riffdec,caf_demuxer
h264chroma=h264chroma
screenpresso_decoder=zlib,screenpresso_decoder
hap_decoder=snappy,texturedsp,hap_decoder
fbdev_outdev=linux_fb_h,fbdev_outdev
vc1_d3d11va2_hwaccel=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode
sonic_encoder=golomb,rangecoder,sonic_encoder
aptx_decoder=audio_frame_queue,aptx_decoder
libvmaf_filter=pthreads
mov_muxer=iso_media,riffenc,rtpenc_chain,mov_muxer
ac3_fixed_decoder=ac3_parser,ac3dsp,bswapdsp,mdct,ac3_fixed_decoder
sipr_decoder=lsp,sipr_decoder
cbs_vp9=cbs,cbs_vp9
hflip_filter=hflip_filter
mpeg4_vaapi_hwaccel=mpeg4_decoder,h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,mpeg4video_parser
tg2_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,tg2_muxer
qcelp_decoder=lsp,qcelp_decoder
libopus_encoder=audio_frame_queue
vorbis_encoder=audio_frame_queue,mdct,vorbis_encoder
mp3_muxer=mpegaudioheader,mp3_muxer
vp3dsp=vp3dsp
h264_vaapi_encoder=cbs_h264,cbs,golomb
riffenc=riffenc
mpegvideo_decoder=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,mpegvideo_decoder
mpeg4_v4l2_m2m=mpeg4_v4l2_m2m
vp9_superframe_bsf=vp9_superframe_bsf
showcqt_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,swscale,fft,showcqt_filter
wmv1_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,wmv1_decoder
mpeg1_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,mpeg1_v4l2_m2m,mpeg1_v4l2m2m_decoder
tscc_decoder=zlib,tscc_decoder
mpeg1video_encoder=mpegvideoenc,me_cmp,pixblockdsp,h263dsp,mpeg1video_encoder
mp1_decoder=mpegaudio,mp1_decoder
dirac_demuxer=dirac_parser,dirac_demuxer
wtv_muxer=mpegts_muxer,adts_muxer,latm_muxer,riffenc,wtv_muxer
aac_fixed_decoder=adts_header,mdct,sinewin,aac_fixed_decoder
hevc_metadata_bsf=cbs_h265,cbs,golomb,hevc_metadata_bsf
mp3on4float_decoder=mpegaudio,mp3on4float_decoder
h263_decoder=h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,h263_decoder
mimic_decoder=blockdsp,bswapdsp,hpeldsp,idctdsp,mimic_decoder
lzf=lzf
extract_mvs_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
mpeg2_v4l2_m2m=mpeg2_v4l2_m2m
h263_v4l2_m2m=h263_v4l2_m2m
libsrt_protocol=network
vc1_vdpau_hwaccel=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode
libvorbis_decoder=libvorbis,libvorbis_decoder
wma_freqs=wma_freqs
wav_demuxer=riffdec,wav_demuxer
vc1_dxva2_hwaccel=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode
indeo5_decoder=ividsp,indeo5_decoder
vc1image_decoder=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode,vc1image_decoder
h263dsp=h263dsp
metasound_decoder=lsp,mdct,sinewin,metasound_decoder
alsa=alsa
fic_decoder=golomb,fic_decoder
smartblur_filter=swscale,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia
vble_decoder=llviddsp,vble_decoder
mp3float_decoder=mpegaudio,mp3float_decoder
aac_decoder=adts_header,mdct15,mdct,sinewin,aac_decoder
mcdeint_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
rscc_decoder=zlib,rscc_decoder
dash_demuxer=libxml2,dash_demuxer
faanidct=idctdsp
negate_filter=lut_filter,negate_filter
vp9_metadata_bsf=cbs_vp9,cbs,vp9_metadata_bsf
vorbis_decoder=mdct,vorbis_decoder
hevc_d3d11va_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
rtmp_protocol=tcp_protocol,network,zlib,rtmp_protocol
sap_demuxer=sdp_demuxer,rtpdec,asf_demuxer,riffdec,jpegtables,mov_demuxer,iso_media,zlib,mpegts_demuxer,rm_demuxer,rtp_protocol,udp_protocol,network,sap_demuxer
avi_demuxer=iso_media,riffdec,exif,avi_demuxer
adpcm_g722_decoder=g722dsp,adpcm_g722_decoder
llviddsp=llviddsp
asf_o_demuxer=riffdec,asf_o_demuxer
dash_muxer=mp4_muxer,mov_muxer,iso_media,riffenc,rtpenc_chain,dash_muxer
h263_v4l2m2m_encoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,h263_v4l2_m2m,h263_v4l2m2m_encoder
pan_filter=swresample,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,pan_filter
idctdsp=idctdsp
indeo4_decoder=ividsp,indeo4_decoder
image2_alias_pix_demuxer=image2_demuxer,image2_alias_pix_demuxer
vp8_v4l2_m2m=vp8_v4l2_m2m
convolve_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,convolve_filter
avresample=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,avresample
ftp_protocol=tcp_protocol,network,ftp_protocol
mxpeg_decoder=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,mxpeg_decoder
lpc=lpc
oga_muxer=ogg_muxer,oga_muxer
vobsub_demuxer=mpegps_demuxer,vobsub_demuxer
g2m_decoder=zlib,blockdsp,idctdsp,jpegtables,g2m_decoder
filtering_audio_example=avfilter,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,avcodec,null_bsf,avformat,network,zlib
aptx_hd_encoder=audio_frame_queue,aptx_hd_encoder
aac_parser=adts_header,aac_parser
ffvhuff_decoder=huffyuv_decoder,bswapdsp,huffyuvdsp,llviddsp,ffvhuff_decoder
exr_decoder=zlib,exr_decoder
f4v_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,f4v_muxer
showfreqs_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,showfreqs_filter
vc1_decoder=blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode,vc1_decoder
dv_demuxer=dvprofile,dv_demuxer
metadata_example=avformat,avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,network,zlib
h264_rkmpp_decoder=h264_mp4toannexb_bsf
wmavoice_decoder=lsp,rdft,fft,dct,mdct,sinewin,wmavoice_decoder
filtering_video_example=avfilter,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,avcodec,null_bsf,avformat,network,zlib
rv10_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,rv10_decoder
h264_decoder=cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp,h264_decoder
h264_crystalhd_decoder=h264_mp4toannexb_bsf,h264_parser,golomb,h264dsp,h264parse
dirac_parse=golomb,dirac_parse
cbs_h264=cbs,golomb,cbs_h264
sr_filter=avformat,avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,network,zlib,swscale,dnn,sr_filter
mpegaudio_parser=mpegaudioheader,mpegaudio_parser
fftfilt_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,rdft,fft,fftfilt_filter
xwma_demuxer=riffdec,xwma_demuxer
rv30_decoder=golomb,h264pred,h264qpel,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,rv34dsp,rv30_decoder
swf_demuxer=zlib,swf_demuxer
qpeldsp=qpeldsp
flac_decoder=flacdsp,flac_decoder
mpeg2_d3d11va_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
huffyuv_decoder=bswapdsp,huffyuvdsp,llviddsp,huffyuv_decoder
dca_decoder=mdct,dca_decoder
hevc_mediacodec_decoder=hevc_mp4toannexb_bsf,hevc_parser,hevcparse,golomb
mjpeg_encoder=jpegtables,mpegvideoenc,me_cmp,pixblockdsp,mjpeg_encoder
lagarith_decoder=llviddsp,lagarith_decoder
rtpdec=asf_demuxer,riffdec,jpegtables,mov_demuxer,iso_media,zlib,mpegts_demuxer,rm_demuxer,rtp_protocol,udp_protocol,network,rtpdec
wmv1_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,wmv1_encoder
vc1_parser=vc1dsp,h264chroma,qpeldsp,startcode,vc1_parser
atrac1_decoder=mdct,sinewin,atrac1_decoder
cook_decoder=audiodsp,mdct,sinewin,cook_decoder
ffrtmpcrypt_protocol=tcp_protocol,network
nuv_demuxer=riffdec,nuv_demuxer
h263p_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,h263p_encoder
ac3_parser=ac3_parser
oss_indev=sys_soundcard_h,oss_indev
hw_decode_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
hevc_vdpau_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
showspectrumpic_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,showspectrumpic_filter
avcodec=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avcodec
https_protocol=zlib
vc1_qsv_decoder=vc1_parser,vc1dsp,h264chroma,qpeldsp,startcode
mpeg2_videotoolbox_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
mpeg1_vdpau_hwaccel=mpeg1video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
rtp_demuxer=sdp_demuxer,rtpdec,asf_demuxer,riffdec,jpegtables,mov_demuxer,iso_media,zlib,mpegts_demuxer,rm_demuxer,rtp_protocol,udp_protocol,network,rtp_demuxer
aiff_muxer=iso_media,aiff_muxer
http_protocol=tcp_protocol,network,zlib,http_protocol
mpegts_demuxer=iso_media,mpegts_demuxer
alsa_outdev=alsa,alsa_outdev
decode_video_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
cbs=cbs
h264_qsv_decoder=h264_mp4toannexb_bsf,h264_parser,golomb,h264dsp,h264parse
mxf_muxer=mxf_muxer
jack_indev=libjack,sem_timedwait,jack_indev
clock_gettime=clock_gettime
flashsv_decoder=zlib,flashsv_decoder
sonic_ls_encoder=golomb,rangecoder,sonic_ls_encoder
rv40_decoder=golomb,h264pred,h264qpel,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,rv34dsp,rv40_decoder
extract_extradata_bsf=extract_extradata_bsf
dct=rdft,fft,dct
resample_filter=avresample,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,resample_filter
xma1_decoder=wmapro_decoder,mdct,sinewin,wma_freqs,xma1_decoder
libspeex_encoder=audio_frame_queue
scaling_video_example=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,swscale
vaapi_encode_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
movie_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,movie_filter
av1_parser=cbs_av1,av1_parser
imc_decoder=bswapdsp,fft,mdct,sinewin,imc_decoder
ogg_demuxer=dirac_parse,golomb,ogg_demuxer
rtp_protocol=udp_protocol,network,rtp_protocol
vc1_nvdec_hwaccel=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode
vp8_qsv_decoder=vp8_parser
mp1float_decoder=mpegaudio,mp1float_decoder
wmav2_decoder=mdct,sinewin,wma_freqs,wmav2_decoder
asv1_decoder=blockdsp,bswapdsp,idctdsp,asv1_decoder
ra_144_encoder=audio_frame_queue,lpc,audiodsp,ra_144_encoder
rotate_filter=rotate_filter
h264_nvdec_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
h261_decoder=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,h261_decoder
llauddsp=llauddsp
decklink_indev=threads
ac3_at_decoder=ac3_parser
hevc_qsv_decoder=hevc_mp4toannexb_bsf,hevc_parser,hevcparse,golomb
ac3_demuxer=ac3_parser,ac3_demuxer
cover_rect_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
amrwb_decoder=lsp,amrwb_decoder
mp3adu_decoder=mpegaudio,mp3adu_decoder
gdigrab_indev=bmp_decoder
mpeg4_nvdec_hwaccel=mpeg4_decoder,h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,mpeg4video_parser
h263p_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,h263p_decoder
image2_demuxer=image2_demuxer
atempo_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,rdft,fft,atempo_filter
mpeg2video_decoder=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,mpeg2video_decoder
vp6f_decoder=vp6_decoder,h264chroma,hpeldsp,huffman,videodsp,vp3dsp,vp56dsp,vp6f_decoder
signature_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
scale_filter=swscale,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,scale_filter
rtmpt_protocol=ffrtmphttp_protocol,http_protocol,tcp_protocol,network,zlib,rtmpt_protocol
mp2_at_decoder=mpegaudioheader
fft=fft
flashsv2_encoder=zlib,flashsv2_encoder
mjpegb_decoder=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,mjpegb_decoder
apng_encoder=zlib,llvidencdsp,apng_encoder
tpeldsp=tpeldsp
mpeg4_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,mpeg4video_parser,mpeg4_decoder
showspectrum_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,showspectrum_filter
x86=x86
snow_encoder=dwt,h264qpel,hpeldsp,me_cmp,mpegvideoenc,pixblockdsp,rangecoder,snow_encoder
videodsp=videodsp
tonemap_opencl_filter=const_nan
elbg_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,elbg_filter
aptx_encoder=audio_frame_queue,aptx_encoder
wmalossless_decoder=llauddsp,wmalossless_decoder
dds_decoder=texturedsp,dds_decoder
shorten_decoder=bswapdsp,shorten_decoder
vc1dsp=h264chroma,qpeldsp,startcode,vc1dsp
afftdn_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,afftdn_filter
cbs_h265=cbs,golomb,cbs_h265
bswapdsp=bswapdsp
texturedsp=texturedsp
ffv1_decoder=rangecoder,ffv1_decoder
amovie_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib,amovie_filter
webm_dash_manifest_demuxer=matroska_demuxer,iso_media,riffdec,lzo,zlib,webm_dash_manifest_demuxer
srgc_decoder=zlib,srgc_decoder
find_rect_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
zlib_decoder=zlib,zlib_decoder
g729_decoder=audiodsp,g729_decoder
ape_decoder=bswapdsp,llauddsp,ape_decoder
dirac_decoder=dirac_parse,golomb,dwt,videodsp,mpegvideoenc,me_cmp,pixblockdsp,dirac_decoder
vp6_decoder=h264chroma,hpeldsp,huffman,videodsp,vp3dsp,vp56dsp,vp6_decoder
mpeg1_videotoolbox_hwaccel=mpeg1video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
avfilter=avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,avfilter
bmp_decoder=bmp_decoder
mlp_encoder=lpc,mlp_encoder
hls_muxer=mpegts_muxer,adts_muxer,latm_muxer,hls_muxer
dvvideo_decoder=dvprofile,idctdsp,dvvideo_decoder
hevc_vaapi_encoder=cbs_h265,cbs,golomb
mmst_protocol=network,mmst_protocol
h263_vaapi_hwaccel=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp
sem_timedwait=sem_timedwait
firequalizer_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,rdft,fft,firequalizer_filter
h264_dxva2_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
h264_metadata_bsf=const_nan,cbs_h264,cbs,golomb,h264_metadata_bsf
msa1_decoder=mss34dsp,msa1_decoder
spx_muxer=ogg_muxer,spx_muxer
truemotion2_decoder=bswapdsp,truemotion2_decoder
afftfilt_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,afftfilt_filter
udplite_protocol=network,udplite_protocol
vp9_nvdec_hwaccel=vp9_decoder,videodsp,vp9_parser,vp9_superframe_split_bsf
amv_encoder=jpegtables,mpegvideoenc,me_cmp,pixblockdsp,amv_encoder
vp8_decoder=h264pred,videodsp,vp8dsp,vp8_decoder
hevc_rkmpp_decoder=hevc_mp4toannexb_bsf
udp_protocol=network,udp_protocol
linux_fb_h=linux_fb_h
audiodsp=audiodsp
png_decoder=zlib,png_decoder
fftdnoiz_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,fftdnoiz_filter
bm3d_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,dct,rdft,fft,bm3d_filter
vp9_d3d11va2_hwaccel=vp9_decoder,videodsp,vp9_parser,vp9_superframe_split_bsf
aac_encoder=audio_frame_queue,iirfilter,lpc,mdct,sinewin,aac_encoder
mpeg2_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,mpeg2_v4l2_m2m,mpeg2_v4l2m2m_decoder
mmsh_protocol=http_protocol,tcp_protocol,network,zlib,mmsh_protocol
trace_headers_bsf=cbs,trace_headers_bsf
avformat=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,network,zlib,avformat
huffyuvdsp=huffyuvdsp
dca_parser=dca_parser
uspp_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
opus_muxer=ogg_muxer,opus_muxer
rangecoder=rangecoder
wmav1_decoder=mdct,sinewin,wma_freqs,wmav1_decoder
twinvq_decoder=mdct,lsp,sinewin,twinvq_decoder
fdctdsp=fdctdsp
mpeg2_vaapi_encoder=cbs_mpeg2,cbs
ipod_muxer=mov_muxer,iso_media,riffenc,rtpenc_chain,ipod_muxer
dxa_demuxer=riffdec,dxa_demuxer
mpeg2_xvmc_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
rv20_decoder=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,rv20_decoder
decklink=libdl
webm_muxer=iso_media,riffenc,webm_muxer
cavs_decoder=blockdsp,golomb,h264chroma,idctdsp,qpeldsp,videodsp,cavs_decoder
mpeg2_nvdec_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
libdl=libdl
omx=libdl,pthreads
rtsp_muxer=rtp_muxer,golomb,http_protocol,tcp_protocol,network,zlib,rtp_protocol,udp_protocol,rtpenc_chain,rtsp_muxer
spp_filter=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,fft,idctdsp,fdctdsp,me_cmp,pixblockdsp
dtshd_demuxer=dca_parser,dtshd_demuxer
remuxing_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf,avformat,network,zlib
vp8_parser=vp8_parser
dolby_e_decoder=mdct,dolby_e_decoder
mpegaudio=mpegaudio
opus_decoder=swresample,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,mdct15,opus_decoder
rtsp_demuxer=http_protocol,tcp_protocol,network,zlib,rtpdec,asf_demuxer,riffdec,jpegtables,mov_demuxer,iso_media,mpegts_demuxer,rm_demuxer,rtp_protocol,udp_protocol,rtsp_demuxer
amf=libdl
libvorbisenc=libvorbisenc
mpeg4_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,mpeg4_v4l2_m2m,mpeg4_v4l2m2m_decoder
h264_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,h264_v4l2_m2m,h264_mp4toannexb_bsf,h264_v4l2m2m_decoder
flashsv_encoder=zlib,flashsv_encoder
dvprofile=dvprofile
dvvideo_encoder=dvprofile,fdctdsp,me_cmp,pixblockdsp,dvvideo_encoder
mdec_decoder=blockdsp,idctdsp,mpegvideo,hpeldsp,me_cmp,mdec_decoder
ffvhuff_encoder=huffyuv_encoder,bswapdsp,huffman,huffyuvencdsp,llvidencdsp,ffvhuff_encoder
nuv_decoder=idctdsp,lzo,nuv_decoder
mpegvideo=blockdsp,hpeldsp,idctdsp,me_cmp,mpegvideo
vp9_d3d11va_hwaccel=vp9_decoder,videodsp,vp9_parser,vp9_superframe_split_bsf
msmpeg4v2_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,msmpeg4v2_encoder
vc1_d3d11va_hwaccel=vc1_decoder,blockdsp,h263_decoder,h263_parser,h263dsp,mpegvideo,hpeldsp,idctdsp,me_cmp,qpeldsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode
aandcttables=aandcttables
mpegvideoenc=me_cmp,pixblockdsp,mpegvideoenc
h263_parser=h263_parser
h264_videotoolbox_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
nvenc=libdl
h264_vdpau_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
flv_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,flv_encoder
spdif_muxer=adts_header,spdif_muxer
tiff_encoder=zlib,tiff_encoder
speedhq_decoder=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,speedhq_decoder
mlp_parser=mlp_parser
wmv2_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,wmv2dsp,wmv2_encoder
rtp_muxer=golomb,rtp_muxer
h264_mp4toannexb_bsf=h264_mp4toannexb_bsf
blockdsp=blockdsp
tonemap_filter=const_nan,tonemap_filter
webp_decoder=vp8_decoder,h264pred,videodsp,vp8dsp,exif,webp_decoder
dxa_decoder=zlib,dxa_decoder
sinewin=sinewin
tiff_decoder=zlib,tiff_decoder
vp9_decoder=videodsp,vp9_parser,vp9_superframe_split_bsf,vp9_decoder
dv_muxer=dvprofile,dv_muxer
ljpeg_encoder=idctdsp,jpegtables,mpegvideoenc,me_cmp,pixblockdsp,ljpeg_encoder
mlp_decoder=mlp_parser,mlp_decoder
ac3_decoder=ac3_parser,ac3dsp,bswapdsp,fmtconvert,mdct,ac3_decoder
libvorbis=libvorbis
wmav2_encoder=mdct,sinewin,wma_freqs,wmav2_encoder
tcp_protocol=network,tcp_protocol
dirac_parser=dirac_parser
apng_decoder=zlib,apng_decoder
adts_muxer=adts_muxer
truehd_encoder=lpc,truehd_encoder
libopenh264_decoder=h264_mp4toannexb_bsf
rv34dsp=rv34dsp
filter_audio_example=avfilter,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia
hevc_dxva2_hwaccel=hevc_decoder,bswapdsp,cabac,golomb,hevcparse,videodsp
libjack=libjack
mjpeg_vaapi_hwaccel=mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables
mpeg2_vdpau_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
linux_videodev2_h=linux_videodev2_h
pixblockdsp=pixblockdsp
null_bsf=null_bsf
ogv_muxer=ogg_muxer,ogv_muxer
mts2_decoder=mss34dsp,mts2_decoder
h264_d3d11va2_hwaccel=h264_decoder,cabac,golomb,h264chroma,h264dsp,h264parse,h264pred,h264qpel,videodsp,error_resilience,me_cmp
libopencore_amrnb_encoder=audio_frame_queue
rtmpe_protocol=zlib
vp9_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait
ladspa_filter=libdl
iac_decoder=imc_decoder,bswapdsp,fft,mdct,sinewin,iac_decoder
tdsc_decoder=zlib,mjpeg_decoder,blockdsp,hpeldsp,exif,idctdsp,jpegtables,tdsc_decoder
vp56dsp=vp56dsp
mpegaudiodsp=dct,rdft,fft,mpegaudiodsp
lsp=lsp
mpdecimate_filter=pixelutils
libmp3lame_encoder=audio_frame_queue
mpegvideo_parser=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,mpegvideo_parser
const_nan=const_nan
riffdec=riffdec
on2avc_decoder=mdct,on2avc_decoder
asf_demuxer=riffdec,asf_demuxer
alac_at_encoder=audio_frame_queue
truespeech_decoder=bswapdsp,truespeech_decoder
comfortnoise_encoder=lpc,comfortnoise_encoder
dts_demuxer=dca_parser,dts_demuxer
mss2_decoder=mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp,vc1_decoder,h263_decoder,h263_parser,h263dsp,h264qpel,intrax8,vc1dsp,h264chroma,startcode,mss2_decoder
rdft=fft,rdft
cscd_decoder=lzo,zlib,cscd_decoder
mwsc_decoder=zlib,mwsc_decoder
nellymoser_decoder=mdct,sinewin,nellymoser_decoder
v4l2_indev=linux_videodev2_h,v4l2_indev
encode_video_example=avcodec,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia,null_bsf
wmapro_decoder=mdct,sinewin,wma_freqs,wmapro_decoder
sys_un_h=sys_un_h
sab_filter=swscale,avutil,clock_gettime,libm,corefoundation,corevideo,coremedia
h264_cuvid_decoder=h264_mp4toannexb_bsf
binkaudio_rdft_decoder=mdct,rdft,fft,sinewin,wma_freqs,binkaudio_rdft_decoder
mpeg4_encoder=h263_encoder,h263dsp,mpegvideoenc,me_cmp,pixblockdsp,mpeg4_encoder
mpeg2_vaapi_hwaccel=mpeg2video_decoder,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp
hevc_v4l2m2m_decoder=v4l2_m2m,linux_videodev2_h,sem_timedwait,hevc_mp4toannexb_bsf
hevc_videotoolbox_encoder=pthreads
zmbv_encoder=zlib,zmbv_encoder
h263_videotoolbox_hwaccel=h263_decoder,h263_parser,h263dsp,mpegvideo,blockdsp,hpeldsp,idctdsp,me_cmp,qpeldsp

--- stderr ---


WARNING: Project targeting '>= 0.49.0' but tried to use feature introduced in '0.50.0': install arg in configure_file
Configuring version.h using configuration
Configuring avconfig.h using configuration
Configuring libavutil.ver using configuration
Program version.py found: YES (/usr/bin/python3 /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/libavutil/version.py)
Configuring version.h using configuration
Configuring libpostproc.ver using configuration
Configuring version.h using configuration
Configuring libswresample.ver using configuration
Configuring version.h using configuration
Configuring libswscale.ver using configuration
Configuring version.h using configuration
Configuring libavcodec.ver using configuration
Configuring version.h using configuration
Configuring libavformat.ver using configuration
Configuring version.h using configuration
Configuring libavfilter.ver using configuration
Configuring version.h using configuration
Configuring libavdevice.ver using configuration
Configuring version.h using configuration
Configuring libavresample.ver using configuration
Program print_things.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py)
Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavcodec/codec_list.c --struct-name=AVCodec --name=codec_list a64multi_encoder a64multi5_encoder alias_pix_encoder amv_encoder apng_encoder asv1_encoder asv2_encoder avrp_encoder avui_encoder ayuv_encoder bmp_encoder cinepak_encoder cljr_encoder comfortnoise_encoder dnxhd_encoder dpx_encoder dvvideo_encoder ffv1_encoder ffvhuff_encoder fits_encoder flashsv_encoder flashsv2_encoder flv_encoder gif_encoder h261_encoder h263_encoder h263p_encoder huffyuv_encoder jpeg2000_encoder jpegls_encoder ljpeg_encoder magicyuv_encoder mjpeg_encoder mpeg1video_encoder mpeg2video_encoder mpeg4_encoder msmpeg4v2_encoder msmpeg4v3_encoder msvideo1_encoder pam_encoder pbm_encoder pcx_encoder pgm_encoder pgmyuv_encoder png_encoder ppm_encoder prores_encoder prores_aw_encoder prores_ks_encoder qtrle_encoder r10k_encoder r210_encoder rawvideo_encoder roq_encoder rv10_encoder rv20_encoder s302m_encoder sgi_encoder snow_encoder sunrast_encoder svq1_encoder targa_encoder tiff_encoder utvideo_encoder v210_encoder v308_encoder v408_encoder v410_encoder vc2_encoder wrapped_avframe_encoder wmv1_encoder wmv2_encoder xbm_encoder xface_encoder xwd_encoder y41p_encoder yuv4_encoder zlib_encoder zmbv_encoder aac_encoder ac3_encoder ac3_fixed_encoder alac_encoder aptx_encoder aptx_hd_encoder dca_encoder eac3_encoder flac_encoder g723_1_encoder mlp_encoder mp2_encoder mp2fixed_encoder nellymoser_encoder opus_encoder ra_144_encoder sbc_encoder sonic_encoder sonic_ls_encoder truehd_encoder tta_encoder vorbis_encoder wavpack_encoder wmav1_encoder wmav2_encoder pcm_alaw_encoder pcm_f32be_encoder pcm_f32le_encoder pcm_f64be_encoder pcm_f64le_encoder pcm_mulaw_encoder pcm_s8_encoder pcm_s8_planar_encoder pcm_s16be_encoder pcm_s16be_planar_encoder pcm_s16le_encoder pcm_s16le_planar_encoder pcm_s24be_encoder pcm_s24daud_encoder pcm_s24le_encoder pcm_s24le_planar_encoder pcm_s32be_encoder pcm_s32le_encoder pcm_s32le_planar_encoder pcm_s64be_encoder pcm_s64le_encoder pcm_u8_encoder pcm_u16be_encoder pcm_u16le_encoder pcm_u24be_encoder pcm_u24le_encoder pcm_u32be_encoder pcm_u32le_encoder pcm_vidc_encoder roq_dpcm_encoder adpcm_adx_encoder adpcm_g722_encoder adpcm_g726_encoder adpcm_g726le_encoder adpcm_ima_qt_encoder adpcm_ima_wav_encoder adpcm_ms_encoder adpcm_swf_encoder adpcm_yamaha_encoder ssa_encoder ass_encoder dvbsub_encoder dvdsub_encoder movtext_encoder srt_encoder subrip_encoder text_encoder webvtt_encoder xsub_encoder libvorbis_encoder h263_v4l2m2m_encoder h264_v4l2m2m_encoder mpeg4_v4l2m2m_encoder vp8_v4l2m2m_encoder aasc_decoder aic_decoder alias_pix_decoder amv_decoder anm_decoder ansi_decoder apng_decoder asv1_decoder asv2_decoder aura_decoder aura2_decoder avrp_decoder avrn_decoder avs_decoder avui_decoder ayuv_decoder bethsoftvid_decoder bfi_decoder bink_decoder bitpacked_decoder bmp_decoder bmv_video_decoder brender_pix_decoder c93_decoder cavs_decoder cdgraphics_decoder cdxl_decoder cfhd_decoder cinepak_decoder clearvideo_decoder cljr_decoder cllc_decoder comfortnoise_decoder cpia_decoder cscd_decoder cyuv_decoder dds_decoder dfa_decoder dirac_decoder dnxhd_decoder dpx_decoder dsicinvideo_decoder dvaudio_decoder dvvideo_decoder dxa_decoder dxtory_decoder dxv_decoder eacmv_decoder eamad_decoder eatgq_decoder eatgv_decoder eatqi_decoder eightbps_decoder eightsvx_exp_decoder eightsvx_fib_decoder escape124_decoder escape130_decoder exr_decoder ffv1_decoder ffvhuff_decoder fic_decoder fits_decoder flashsv_decoder flashsv2_decoder flic_decoder flv_decoder fmvc_decoder fourxm_decoder fraps_decoder frwu_decoder g2m_decoder gdv_decoder gif_decoder h261_decoder h263_decoder h263i_decoder h263p_decoder h263_v4l2m2m_decoder h264_decoder h264_v4l2m2m_decoder hap_decoder hevc_decoder hnm4_video_decoder hq_hqa_decoder hqx_decoder huffyuv_decoder idcin_decoder iff_ilbm_decoder imm4_decoder indeo2_decoder indeo3_decoder indeo4_decoder indeo5_decoder interplay_video_decoder jpeg2000_decoder jpegls_decoder jv_decoder kgv1_decoder kmvc_decoder lagarith_decoder loco_decoder m101_decoder magicyuv_decoder mdec_decoder mimic_decoder mjpeg_decoder mjpegb_decoder mmvideo_decoder motionpixels_decoder mpeg1video_decoder mpeg2video_decoder mpeg4_decoder mpeg4_v4l2m2m_decoder mpegvideo_decoder mpeg1_v4l2m2m_decoder mpeg2_v4l2m2m_decoder msa1_decoder mscc_decoder msmpeg4v1_decoder msmpeg4v2_decoder msmpeg4v3_decoder msrle_decoder mss1_decoder mss2_decoder msvideo1_decoder mszh_decoder mts2_decoder mvc1_decoder mvc2_decoder mwsc_decoder mxpeg_decoder nuv_decoder paf_video_decoder pam_decoder pbm_decoder pcx_decoder pgm_decoder pgmyuv_decoder pictor_decoder pixlet_decoder png_decoder ppm_decoder prores_decoder prosumer_decoder psd_decoder ptx_decoder qdraw_decoder qpeg_decoder qtrle_decoder r10k_decoder r210_decoder rasc_decoder rawvideo_decoder rl2_decoder roq_decoder rpza_decoder rscc_decoder rv10_decoder rv20_decoder rv30_decoder rv40_decoder s302m_decoder sanm_decoder scpr_decoder screenpresso_decoder sdx2_dpcm_decoder sgi_decoder sgirle_decoder sheervideo_decoder smacker_decoder smc_decoder smvjpeg_decoder snow_decoder sp5x_decoder speedhq_decoder srgc_decoder sunrast_decoder svq1_decoder svq3_decoder targa_decoder targa_y216_decoder tdsc_decoder theora_decoder thp_decoder tiertexseqvideo_decoder tiff_decoder tmv_decoder truemotion1_decoder truemotion2_decoder truemotion2rt_decoder tscc_decoder tscc2_decoder txd_decoder ulti_decoder utvideo_decoder v210_decoder v210x_decoder v308_decoder v408_decoder v410_decoder vb_decoder vble_decoder vc1_decoder vc1image_decoder vc1_v4l2m2m_decoder vcr1_decoder vmdvideo_decoder vmnc_decoder vp3_decoder vp5_decoder vp6_decoder vp6a_decoder vp6f_decoder vp7_decoder vp8_decoder vp8_v4l2m2m_decoder vp9_decoder vqa_decoder webp_decoder wcmv_decoder wrapped_avframe_decoder wmv1_decoder wmv2_decoder wmv3_decoder wmv3image_decoder wnv1_decoder xan_wc3_decoder xan_wc4_decoder xbm_decoder xface_decoder xl_decoder xpm_decoder xwd_decoder y41p_decoder ylc_decoder yop_decoder yuv4_decoder zero12v_decoder zerocodec_decoder zlib_decoder zmbv_decoder aac_decoder aac_fixed_decoder aac_latm_decoder ac3_decoder ac3_fixed_decoder alac_decoder als_decoder amrnb_decoder amrwb_decoder ape_decoder aptx_decoder aptx_hd_decoder atrac1_decoder atrac3_decoder atrac3al_decoder atrac3p_decoder atrac3pal_decoder atrac9_decoder binkaudio_dct_decoder binkaudio_rdft_decoder bmv_audio_decoder cook_decoder dca_decoder dolby_e_decoder dsd_lsbf_decoder dsd_msbf_decoder dsd_lsbf_planar_decoder dsd_msbf_planar_decoder dsicinaudio_decoder dss_sp_decoder dst_decoder eac3_decoder evrc_decoder ffwavesynth_decoder flac_decoder g723_1_decoder g729_decoder gsm_decoder gsm_ms_decoder iac_decoder ilbc_decoder imc_decoder interplay_acm_decoder mace3_decoder mace6_decoder metasound_decoder mlp_decoder mp1_decoder mp1float_decoder mp2_decoder mp2float_decoder mp3float_decoder mp3_decoder mp3adufloat_decoder mp3adu_decoder mp3on4float_decoder mp3on4_decoder mpc7_decoder mpc8_decoder nellymoser_decoder on2avc_decoder opus_decoder paf_audio_decoder qcelp_decoder qdm2_decoder qdmc_decoder ra_144_decoder ra_288_decoder ralf_decoder sbc_decoder shorten_decoder sipr_decoder smackaud_decoder sonic_decoder tak_decoder truehd_decoder truespeech_decoder tta_decoder twinvq_decoder vmdaudio_decoder vorbis_decoder wavpack_decoder wmalossless_decoder wmapro_decoder wmav1_decoder wmav2_decoder wmavoice_decoder ws_snd1_decoder xma1_decoder xma2_decoder pcm_alaw_decoder pcm_bluray_decoder pcm_dvd_decoder pcm_f16le_decoder pcm_f24le_decoder pcm_f32be_decoder pcm_f32le_decoder pcm_f64be_decoder pcm_f64le_decoder pcm_lxf_decoder pcm_mulaw_decoder pcm_s8_decoder pcm_s8_planar_decoder pcm_s16be_decoder pcm_s16be_planar_decoder pcm_s16le_decoder pcm_s16le_planar_decoder pcm_s24be_decoder pcm_s24daud_decoder pcm_s24le_decoder pcm_s24le_planar_decoder pcm_s32be_decoder pcm_s32le_decoder pcm_s32le_planar_decoder pcm_s64be_decoder pcm_s64le_decoder pcm_u8_decoder pcm_u16be_decoder pcm_u16le_decoder pcm_u24be_decoder pcm_u24le_decoder pcm_u32be_decoder pcm_u32le_decoder pcm_vidc_decoder pcm_zork_decoder gremlin_dpcm_decoder interplay_dpcm_decoder roq_dpcm_decoder sol_dpcm_decoder xan_dpcm_decoder adpcm_4xm_decoder adpcm_adx_decoder adpcm_afc_decoder adpcm_aica_decoder adpcm_ct_decoder adpcm_dtk_decoder adpcm_ea_decoder adpcm_ea_maxis_xa_decoder adpcm_ea_r1_decoder adpcm_ea_r2_decoder adpcm_ea_r3_decoder adpcm_ea_xas_decoder adpcm_g722_decoder adpcm_g726_decoder adpcm_g726le_decoder adpcm_ima_amv_decoder adpcm_ima_apc_decoder adpcm_ima_dat4_decoder adpcm_ima_dk3_decoder adpcm_ima_dk4_decoder adpcm_ima_ea_eacs_decoder adpcm_ima_ea_sead_decoder adpcm_ima_iss_decoder adpcm_ima_oki_decoder adpcm_ima_qt_decoder adpcm_ima_rad_decoder adpcm_ima_smjpeg_decoder adpcm_ima_wav_decoder adpcm_ima_ws_decoder adpcm_ms_decoder adpcm_mtaf_decoder adpcm_psx_decoder adpcm_sbpro_2_decoder adpcm_sbpro_3_decoder adpcm_sbpro_4_decoder adpcm_swf_decoder adpcm_thp_decoder adpcm_thp_le_decoder adpcm_vima_decoder adpcm_xa_decoder adpcm_yamaha_decoder ssa_decoder ass_decoder ccaption_decoder dvbsub_decoder dvdsub_decoder jacosub_decoder microdvd_decoder movtext_decoder mpl2_decoder pgssub_decoder pjs_decoder realtext_decoder sami_decoder srt_decoder stl_decoder subrip_decoder subviewer_decoder subviewer1_decoder text_decoder vplayer_decoder webvtt_decoder xsub_decoder libvorbis_decoder bintext_decoder xbin_decoder idf_decoder
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavcodec/parser_list.c --struct-name=AVCodecParser --name=parser_list aac_parser aac_latm_parser ac3_parser adx_parser av1_parser avs2_parser bmp_parser cavsvideo_parser cook_parser dca_parser dirac_parser dnxhd_parser dpx_parser dvaudio_parser dvbsub_parser dvdsub_parser dvd_nav_parser flac_parser g729_parser gsm_parser h261_parser h263_parser h264_parser hevc_parser mjpeg_parser mlp_parser mpeg4video_parser mpegaudio_parser mpegvideo_parser opus_parser png_parser pnm_parser rv30_parser rv40_parser sbc_parser sipr_parser tak_parser vc1_parser vorbis_parser vp3_parser vp8_parser vp9_parser xma_parser
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavcodec/bsf_list.c --struct-name=AVBitStreamFilter --name=bitstream_filters aac_adtstoasc_bsf av1_metadata_bsf chomp_bsf dump_extradata_bsf dca_core_bsf eac3_core_bsf extract_extradata_bsf filter_units_bsf h264_metadata_bsf h264_mp4toannexb_bsf h264_redundant_pps_bsf hapqa_extract_bsf hevc_metadata_bsf hevc_mp4toannexb_bsf imx_dump_header_bsf mjpeg2jpeg_bsf mjpega_dump_header_bsf mp3_header_decompress_bsf mpeg2_metadata_bsf mpeg4_unpack_bframes_bsf mov2textsub_bsf noise_bsf null_bsf remove_extradata_bsf text2movsub_bsf trace_headers_bsf vp9_metadata_bsf vp9_raw_reorder_bsf vp9_superframe_bsf vp9_superframe_split_bsf
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavformat/muxer_list.c --struct-name=AVOutputFormat --name=muxer_list a64_muxer ac3_muxer adts_muxer adx_muxer aiff_muxer amr_muxer apng_muxer aptx_muxer aptx_hd_muxer asf_muxer ass_muxer ast_muxer asf_stream_muxer au_muxer avi_muxer avm2_muxer avs2_muxer bit_muxer caf_muxer cavsvideo_muxer codec2_muxer codec2raw_muxer crc_muxer dash_muxer data_muxer daud_muxer dirac_muxer dnxhd_muxer dts_muxer dv_muxer eac3_muxer f4v_muxer ffmetadata_muxer fifo_muxer fifo_test_muxer filmstrip_muxer fits_muxer flac_muxer flv_muxer framecrc_muxer framehash_muxer framemd5_muxer g722_muxer g723_1_muxer g726_muxer g726le_muxer gif_muxer gsm_muxer gxf_muxer h261_muxer h263_muxer h264_muxer hash_muxer hds_muxer hevc_muxer hls_muxer ico_muxer ilbc_muxer image2_muxer image2pipe_muxer ipod_muxer ircam_muxer ismv_muxer ivf_muxer jacosub_muxer latm_muxer lrc_muxer m4v_muxer md5_muxer matroska_muxer matroska_audio_muxer microdvd_muxer mjpeg_muxer mlp_muxer mmf_muxer mov_muxer mp2_muxer mp3_muxer mp4_muxer mpeg1system_muxer mpeg1vcd_muxer mpeg1video_muxer mpeg2dvd_muxer mpeg2svcd_muxer mpeg2video_muxer mpeg2vob_muxer mpegts_muxer mpjpeg_muxer mxf_muxer mxf_d10_muxer mxf_opatom_muxer null_muxer nut_muxer oga_muxer ogg_muxer ogv_muxer oma_muxer opus_muxer pcm_alaw_muxer pcm_mulaw_muxer pcm_vidc_muxer pcm_f64be_muxer pcm_f64le_muxer pcm_f32be_muxer pcm_f32le_muxer pcm_s32be_muxer pcm_s32le_muxer pcm_s24be_muxer pcm_s24le_muxer pcm_s16be_muxer pcm_s16le_muxer pcm_s8_muxer pcm_u32be_muxer pcm_u32le_muxer pcm_u24be_muxer pcm_u24le_muxer pcm_u16be_muxer pcm_u16le_muxer pcm_u8_muxer psp_muxer rawvideo_muxer rm_muxer roq_muxer rso_muxer rtp_muxer rtp_mpegts_muxer rtsp_muxer sap_muxer sbc_muxer scc_muxer segafilm_muxer segment_muxer stream_segment_muxer singlejpeg_muxer smjpeg_muxer smoothstreaming_muxer sox_muxer spx_muxer spdif_muxer srt_muxer sup_muxer swf_muxer tee_muxer tg2_muxer tgp_muxer mkvtimestamp_v2_muxer truehd_muxer tta_muxer uncodedframecrc_muxer vc1_muxer vc1t_muxer voc_muxer w64_muxer wav_muxer webm_muxer webm_dash_manifest_muxer webm_chunk_muxer webp_muxer webvtt_muxer wtv_muxer wv_muxer yuv4mpegpipe_muxer
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavformat/demuxer_list.c --struct-name=AVInputFormat --name=demuxer_list aa_demuxer aac_demuxer ac3_demuxer acm_demuxer act_demuxer adf_demuxer adp_demuxer ads_demuxer adx_demuxer aea_demuxer afc_demuxer aiff_demuxer aix_demuxer amr_demuxer amrnb_demuxer amrwb_demuxer anm_demuxer apc_demuxer ape_demuxer apng_demuxer aptx_demuxer aptx_hd_demuxer aqtitle_demuxer asf_demuxer asf_o_demuxer ass_demuxer ast_demuxer au_demuxer avi_demuxer avr_demuxer avs_demuxer avs2_demuxer bethsoftvid_demuxer bfi_demuxer bintext_demuxer bink_demuxer bit_demuxer bmv_demuxer bfstm_demuxer brstm_demuxer boa_demuxer c93_demuxer caf_demuxer cavsvideo_demuxer cdg_demuxer cdxl_demuxer cine_demuxer codec2_demuxer codec2raw_demuxer concat_demuxer dash_demuxer data_demuxer daud_demuxer dcstr_demuxer dfa_demuxer dirac_demuxer dnxhd_demuxer dsf_demuxer dsicin_demuxer dss_demuxer dts_demuxer dtshd_demuxer dv_demuxer dvbsub_demuxer dvbtxt_demuxer dxa_demuxer ea_demuxer ea_cdata_demuxer eac3_demuxer epaf_demuxer ffmetadata_demuxer filmstrip_demuxer fits_demuxer flac_demuxer flic_demuxer flv_demuxer live_flv_demuxer fourxm_demuxer frm_demuxer fsb_demuxer g722_demuxer g723_1_demuxer g726_demuxer g726le_demuxer g729_demuxer gdv_demuxer genh_demuxer gif_demuxer gsm_demuxer gxf_demuxer h261_demuxer h263_demuxer h264_demuxer hevc_demuxer hls_demuxer hnm_demuxer ico_demuxer idcin_demuxer idf_demuxer iff_demuxer ilbc_demuxer image2_demuxer image2pipe_demuxer image2_alias_pix_demuxer image2_brender_pix_demuxer ingenient_demuxer ipmovie_demuxer ircam_demuxer iss_demuxer iv8_demuxer ivf_demuxer ivr_demuxer jacosub_demuxer jv_demuxer lmlm4_demuxer loas_demuxer lrc_demuxer lvf_demuxer lxf_demuxer m4v_demuxer matroska_demuxer mgsts_demuxer microdvd_demuxer mjpeg_demuxer mjpeg_2000_demuxer mlp_demuxer mlv_demuxer mm_demuxer mmf_demuxer mov_demuxer mp3_demuxer mpc_demuxer mpc8_demuxer mpegps_demuxer mpegts_demuxer mpegtsraw_demuxer mpegvideo_demuxer mpjpeg_demuxer mpl2_demuxer mpsub_demuxer msf_demuxer msnwc_tcp_demuxer mtaf_demuxer mtv_demuxer musx_demuxer mv_demuxer mvi_demuxer mxf_demuxer mxg_demuxer nc_demuxer nistsphere_demuxer nsp_demuxer nsv_demuxer nut_demuxer nuv_demuxer ogg_demuxer oma_demuxer paf_demuxer pcm_alaw_demuxer pcm_mulaw_demuxer pcm_vidc_demuxer pcm_f64be_demuxer pcm_f64le_demuxer pcm_f32be_demuxer pcm_f32le_demuxer pcm_s32be_demuxer pcm_s32le_demuxer pcm_s24be_demuxer pcm_s24le_demuxer pcm_s16be_demuxer pcm_s16le_demuxer pcm_s8_demuxer pcm_u32be_demuxer pcm_u32le_demuxer pcm_u24be_demuxer pcm_u24le_demuxer pcm_u16be_demuxer pcm_u16le_demuxer pcm_u8_demuxer pjs_demuxer pmp_demuxer pva_demuxer pvf_demuxer qcp_demuxer r3d_demuxer rawvideo_demuxer realtext_demuxer redspark_demuxer rl2_demuxer rm_demuxer roq_demuxer rpl_demuxer rsd_demuxer rso_demuxer rtp_demuxer rtsp_demuxer s337m_demuxer sami_demuxer sap_demuxer sbc_demuxer sbg_demuxer scc_demuxer sdp_demuxer sdr2_demuxer sds_demuxer sdx_demuxer segafilm_demuxer ser_demuxer shorten_demuxer siff_demuxer sln_demuxer smacker_demuxer smjpeg_demuxer smush_demuxer sol_demuxer sox_demuxer spdif_demuxer srt_demuxer str_demuxer stl_demuxer subviewer1_demuxer subviewer_demuxer sup_demuxer svag_demuxer swf_demuxer tak_demuxer tedcaptions_demuxer thp_demuxer threedostr_demuxer tiertexseq_demuxer tmv_demuxer truehd_demuxer tta_demuxer txd_demuxer tty_demuxer ty_demuxer v210_demuxer v210x_demuxer vag_demuxer vc1_demuxer vc1t_demuxer vivo_demuxer vmd_demuxer vobsub_demuxer voc_demuxer vpk_demuxer vplayer_demuxer vqf_demuxer w64_demuxer wav_demuxer wc3_demuxer webm_dash_manifest_demuxer webvtt_demuxer wsaud_demuxer wsd_demuxer wsvqa_demuxer wtv_demuxer wve_demuxer wv_demuxer xa_demuxer xbin_demuxer xmv_demuxer xvag_demuxer xwma_demuxer yop_demuxer yuv4mpegpipe_demuxer image_bmp_pipe_demuxer image_dds_pipe_demuxer image_dpx_pipe_demuxer image_exr_pipe_demuxer image_j2k_pipe_demuxer image_jpeg_pipe_demuxer image_jpegls_pipe_demuxer image_pam_pipe_demuxer image_pbm_pipe_demuxer image_pcx_pipe_demuxer image_pgmyuv_pipe_demuxer image_pgm_pipe_demuxer image_pictor_pipe_demuxer image_png_pipe_demuxer image_ppm_pipe_demuxer image_psd_pipe_demuxer image_qdraw_pipe_demuxer image_sgi_pipe_demuxer image_svg_pipe_demuxer image_sunrast_pipe_demuxer image_tiff_pipe_demuxer image_webp_pipe_demuxer image_xpm_pipe_demuxer image_xwd_pipe_demuxer
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavformat/protocol_list.c --struct-name=URLProtocol --name=url_protocols async_protocol cache_protocol concat_protocol crypto_protocol data_protocol ffrtmphttp_protocol file_protocol ftp_protocol gopher_protocol hls_protocol http_protocol httpproxy_protocol icecast_protocol mmsh_protocol mmst_protocol md5_protocol pipe_protocol prompeg_protocol rtmp_protocol rtmpt_protocol rtp_protocol srtp_protocol subfile_protocol tee_protocol tcp_protocol udp_protocol udplite_protocol unix_protocol
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavdevice/outdev_list.c --struct-name=AVOutputFormat --name=outdev_list alsa_muxer fbdev_muxer oss_muxer v4l2_muxer
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavdevice/indev_list.c --struct-name=AVInputFormat --name=indev_list alsa_demuxer fbdev_demuxer jack_demuxer lavfi_demuxer oss_demuxer v4l2_demuxer xcbgrab_demuxer
--- stdout ---

--- stderr ---


Running command: /home/makoto/Work/src/gstreamer/gst-build-master/subprojects/FFmpeg/print_things.py --filename=/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavfilter/filter_list.c --struct-name=AVFilter --name=filter_list af_abench af_acompressor af_acontrast af_acopy af_acue af_acrossfade af_acrossover af_acrusher af_adeclick af_adeclip af_adelay af_aderivative af_aecho af_aemphasis af_aeval af_afade af_afftdn af_afftfilt af_afir af_aformat af_agate af_aiir af_aintegral af_ainterleave af_alimiter af_allpass af_aloop af_amerge af_ametadata af_amix af_amultiply af_anequalizer af_anull af_apad af_aperms af_aphaser af_apulsator af_arealtime af_aresample af_areverse af_aselect af_asendcmd af_asetnsamples af_asetpts af_asetrate af_asettb af_ashowinfo af_asidedata af_asplit af_astats af_astreamselect af_atempo af_atrim af_bandpass af_bandreject af_bass af_biquad af_channelmap af_channelsplit af_chorus af_compand af_compensationdelay af_crossfeed af_crystalizer af_dcshift af_drmeter af_dynaudnorm af_earwax af_ebur128 af_equalizer af_extrastereo af_firequalizer af_flanger af_haas af_hdcd af_headphone af_highpass af_highshelf af_join af_loudnorm af_lowpass af_lowshelf af_mcompand af_pan af_replaygain af_resample af_sidechaincompress af_sidechaingate af_silencedetect af_silenceremove af_stereotools af_stereowiden af_superequalizer af_surround af_treble af_tremolo af_vibrato af_volume af_volumedetect asrc_aevalsrc asrc_anoisesrc asrc_anullsrc asrc_hilbert asrc_sinc asrc_sine asink_anullsink vf_alphaextract vf_alphamerge vf_amplify vf_atadenoise vf_avgblur vf_bbox vf_bench vf_bitplanenoise vf_blackdetect vf_blend vf_bm3d vf_bwdif vf_chromahold vf_chromakey vf_ciescope vf_codecview vf_colorbalance vf_colorchannelmixer vf_colorkey vf_colorlevels vf_colorspace vf_convolution vf_convolve vf_copy vf_crop vf_cue vf_curves vf_datascope vf_dctdnoiz vf_deband vf_deblock vf_decimate vf_deconvolve vf_deflate vf_deflicker vf_dejudder vf_deshake vf_despill vf_detelecine vf_dilation vf_displace vf_doubleweave vf_drawbox vf_drawgraph vf_drawgrid vf_edgedetect vf_elbg vf_entropy vf_erosion vf_extractplanes vf_fade vf_fftdnoiz vf_fftfilt vf_field vf_fieldhint vf_fieldmatch vf_fieldorder vf_fillborders vf_floodfill vf_format vf_fps vf_framepack vf_framerate vf_framestep vf_gblur vf_gradfun vf_graphmonitor vf_greyedge vf_haldclut vf_hflip vf_histogram vf_hqx vf_hstack vf_hue vf_hwdownload vf_hwmap vf_hwupload vf_hysteresis vf_idet vf_il vf_inflate vf_interleave vf_lenscorrection vf_limiter vf_loop vf_lumakey vf_lut vf_lut1d vf_lut2 vf_lut3d vf_lutrgb vf_lutyuv vf_maskedclamp vf_maskedmerge vf_mergeplanes vf_mestimate vf_metadata vf_midequalizer vf_minterpolate vf_mix vf_negate vf_nlmeans vf_noformat vf_noise vf_normalize vf_null vf_oscilloscope vf_overlay vf_pad vf_palettegen vf_paletteuse vf_perms vf_pixdesctest vf_pixscope vf_premultiply vf_prewitt vf_pseudocolor vf_psnr vf_qp vf_random vf_readeia608 vf_readvitc vf_realtime vf_remap vf_removegrain vf_removelogo vf_reverse vf_roberts vf_rotate vf_scale vf_scale2ref vf_select vf_selectivecolor vf_sendcmd vf_separatefields vf_setdar vf_setfield vf_setparams vf_setpts vf_setrange vf_setsar vf_settb vf_showinfo vf_showpalette vf_shuffleframes vf_shuffleplanes vf_sidedata vf_signalstats vf_sobel vf_split vf_sr vf_ssim vf_streamselect vf_swaprect vf_swapuv vf_tblend vf_telecine vf_threshold vf_thumbnail vf_tile vf_tlut2 vf_tmix vf_tonemap vf_transpose vf_trim vf_unpremultiply vf_unsharp vf_vectorscope vf_vflip vf_vfrdet vf_vibrance vf_vignette vf_vmafmotion vf_vstack vf_w3fdif vf_waveform vf_weave vf_xbr vf_xstack vf_yadif vf_zoompan vsrc_allrgb vsrc_allyuv vsrc_cellauto vsrc_color vsrc_haldclutsrc vsrc_life vsrc_mandelbrot vsrc_nullsrc vsrc_pal75bars vsrc_pal100bars vsrc_rgbtestsrc vsrc_smptebars vsrc_smptehdbars vsrc_testsrc vsrc_testsrc2 vsrc_yuvtestsrc vsink_nullsink avf_abitscope avf_adrawgraph avf_agraphmonitor avf_ahistogram avf_aphasemeter avf_avectorscope avf_concat avf_showcqt avf_showfreqs avf_showspectrum avf_showspectrumpic avf_showvolume avf_showwaves avf_showwavespic vaf_spectrumsynth avsrc_amovie avsrc_movie af_afifo vf_fifo asrc_abuffer vsrc_buffer asink_abuffer vsink_buffer
--- stdout ---

--- stderr ---


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

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

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavutil/libavutil.ver: YES 
Adding test "avutil_adler32"
Adding test "avutil_aes"
Adding test "avutil_aes_ctr"
Adding test "avutil_audio_fifo"
Adding test "avutil_avstring"
Adding test "avutil_base64"
Adding test "avutil_blowfish"
Adding test "avutil_bprint"
Adding test "avutil_cast5"
Adding test "avutil_camellia"
Adding test "avutil_color_utils"
Adding test "avutil_cpu"
Adding test "avutil_crc"
Adding test "avutil_des"
Adding test "avutil_dict"
Adding test "avutil_display"
Adding test "avutil_encryption_info"
Adding test "avutil_error"
Adding test "avutil_eval"
Adding test "avutil_file"
Adding test "avutil_fifo"
Adding test "avutil_hash"
Adding test "avutil_hmac"
Adding test "avutil_hwdevice"
Adding test "avutil_integer"
Adding test "avutil_imgutils"
Adding test "avutil_lfg"
Adding test "avutil_lls"
Adding test "avutil_log"
Adding test "avutil_md5"
Adding test "avutil_murmur3"
Adding test "avutil_opt"
Adding test "avutil_pca"
Adding test "avutil_parseutils"
Adding test "avutil_pixdesc"
Adding test "avutil_pixelutils"
Adding test "avutil_pixfmt_best"
Adding test "avutil_random_seed"
Adding test "avutil_rational"
Adding test "avutil_ripemd"
Adding test "avutil_sha"
Adding test "avutil_sha512"
Adding test "avutil_softfloat"
Adding test "avutil_tree"
Adding test "avutil_twofish"
Adding test "avutil_xtea"
Adding test "avutil_tea"
Adding test "avutil_cpu_init"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyogx_i_l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyogx_i_l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyogx_i_l/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libpostproc/libpostproc.ver 

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

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libswresample/libswresample.ver: YES 
Adding test "swresample_swresample"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkp_aj4j8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkp_aj4j8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkp_aj4j8/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libswscale/libswscale.ver 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libswscale/libswscale.ver: YES 
Adding test "swscale_colorspace"
Adding test "swscale_pixdesc_query"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6i042nft
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6i042nft/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6i042nft/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavcodec/libavcodec.ver 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavcodec/libavcodec.ver: YES 
Adding test "avcodec_avpacket"
Adding test "avcodec_codec_desc"
Adding test "avcodec_htmlsubtitles"
Adding test "avcodec_imgconvert"
Adding test "avcodec_jpeg2000dwt"
Adding test "avcodec_mathops"
Adding test "avcodec_options"
Adding test "avcodec_mjpegenc_huffman"
Adding test "avcodec_utils"
Adding test "avcodec_celp_math"
Adding test "avcodec_snowenc"
Adding test "avcodec_fft"
Adding test "avcodec_fft-fixed"
Adding test "avcodec_fft-fixed32"
Adding test "avcodec_avfft"
Adding test "avcodec_cabac"
Adding test "avcodec_rangecoder"
Adding test "avcodec_golomb"
Adding test "avcodec_h264_levels"
Adding test "avcodec_dct"
Adding test "avcodec_mpeg12framerate"
Adding test "avcodec_iirfilter"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkrxn1y4f
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkrxn1y4f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkrxn1y4f/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavformat/libavformat.ver 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavformat/libavformat.ver: YES 
Adding test "avformat_url"
Adding test "avformat_srtp"
Adding test "avformat_noproxy"
Adding test "avformat_movenc"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpha5s3vsr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpha5s3vsr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpha5s3vsr/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavresample/libavresample.ver 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavresample/libavresample.ver: YES 
Adding test "avresample_avresample"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprnrfeg8r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprnrfeg8r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprnrfeg8r/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavfilter/libavfilter.ver 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavfilter/libavfilter.ver: YES 
Adding test "avfilter_drawutils"
Adding test "avfilter_formats"
Adding test "avfilter_integral"
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwf1b804v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwf1b804v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwf1b804v/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavdevice/libavdevice.ver 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--version-script,/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/FFmpeg/libavdevice/libavdevice.ver: YES 
Adding test "avdevice_timefilter"
Message: License: LGPL version 2.1 or later
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bg6foq7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bg6foq7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5bg6foq7/output.obj -pipe -c -D_FILE_OFFSET_BITS=64 -O0 

Code:
 void foo(char * restrict p);
Compiler stdout:
 
Compiler stderr:
 
Configuring config.h using configuration
Configuring config.asm using configuration
Build targets in project: 946
WARNING: Project specifies a minimum meson_version '>= 0.49.0' but uses features which were added in newer versions:
 * 0.50.0: {'install arg in configure_file'}
Subproject FFmpeg finished.

Dependency libavfilter from subproject subprojects/FFmpeg found: YES 7.40.101
Dependency libavformat from subproject subprojects/FFmpeg found: YES 58.20.100
Dependency libavcodec from subproject subprojects/FFmpeg found: YES 58.35.100
Dependency libavutil from subproject subprojects/FFmpeg found: YES 56.22.100
Using cached compile:
Cached 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)
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-video-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-pbutils-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4lj9cl7v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4lj9cl7v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4lj9cl7v/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/tmp77mzvmuv
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp77mzvmuv/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp77mzvmuv/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--exclude-libs=ALL 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 
Compiler for C supports link arguments -Wl,--exclude-libs=ALL: YES 
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmcbaocst
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmcbaocst/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmcbaocst/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: GStreamer debug system is enabled
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08dxgwp6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08dxgwp6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08dxgwp6/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/tmpzbjbz1g8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbjbz1g8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzbjbz1g8/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/tmp3bj_j7rk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bj_j7rk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3bj_j7rk/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/tmp51a911ey
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp51a911ey/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp51a911ey/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/tmpsgdhlm8q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgdhlm8q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsgdhlm8q/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/tmp5uqc46ym
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5uqc46ym/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5uqc46ym/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/tmpkczshlsj
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkczshlsj/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkczshlsj/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/tmp4l5336yl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4l5336yl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4l5336yl/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/tmpj7bxemv7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7bxemv7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj7bxemv7/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/tmpcaxxza8p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcaxxza8p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcaxxza8p/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/tmpv7krkpsd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv7krkpsd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpv7krkpsd/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/tmpfes4vbcf
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfes4vbcf/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfes4vbcf/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/tmpez0xuww1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpez0xuww1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpez0xuww1/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/tmp7y9as0ca
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7y9as0ca/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7y9as0ca/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/tmptlj9lu1l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptlj9lu1l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptlj9lu1l/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/tmprhq0fz_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/tmprhq0fz_f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprhq0fz_f/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/tmp3al9bhel
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3al9bhel/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3al9bhel/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 
Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Configuring config.h using configuration
Program python3 found: YES (/usr/bin/python3)
Running command: /usr/bin/python3 -c import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")
--- stdout ---

--- stderr ---


Build targets in project: 948
Subproject gst-libav finished.

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

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

--- 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-libav' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-libav'



Executing subproject gst-rtsp-server method meson 

Project name: gst-rtsp-server
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/tmp5ulkj1i6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5ulkj1i6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5ulkj1i6/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/tmp211ms52s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp211ms52s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp211ms52s/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/tmpw9fmc64r
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw9fmc64r/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw9fmc64r/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/tmpw1vpwx6p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1vpwx6p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpw1vpwx6p/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/tmpo4wnbkcr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4wnbkcr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo4wnbkcr/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/tmp6lsea_5p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lsea_5p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6lsea_5p/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/tmp99ze564s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp99ze564s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp99ze564s/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/tmprd_4uw7i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprd_4uw7i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprd_4uw7i/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/tmpecwdtwf7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpecwdtwf7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpecwdtwf7/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/tmp0jif9zog
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0jif9zog/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0jif9zog/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/tmpx66yiail
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx66yiail/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpx66yiail/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/tmpk67l88ed
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk67l88ed/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk67l88ed/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/tmpbfaowe3e
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfaowe3e/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbfaowe3e/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/tmphp6picn1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphp6picn1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphp6picn1/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/tmp46b0ox0f
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp46b0ox0f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp46b0ox0f/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/tmpb7h1b6qq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb7h1b6qq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpb7h1b6qq/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/tmpzena23eq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzena23eq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzena23eq/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/tmp3aoduali
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3aoduali/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3aoduali/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/tmpr3xypg1c
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr3xypg1c/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr3xypg1c/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/tmp5r05drt8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5r05drt8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5r05drt8/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 
Dependency glib-2.0 found: YES 2.50.3 (cached)
Dependency gstreamer-1.0 from subproject subprojects/gstreamer 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-rtp-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-app-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-check-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Message: GStreamer debug system is enabled
Program g-ir-scanner found: NO
Adding test "gst_addresspool"
Adding test "gst_client"
Adding test "gst_mountpoints"
Adding test "gst_mediafactory"
Adding test "gst_media"
Adding test "gst_permissions"
Adding test "gst_rtspserver"
Adding test "gst_sessionmedia"
Adding test "gst_sessionpool"
Adding test "gst_stream"
Adding test "gst_threadpool"
Adding test "gst_token"
Adding test "gst_onvif"
Adding test "gst_rtspclientsink"
Adding test "test-cleanup"
Adding test "test-reuse"
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libcgroup' 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 libcgroup` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libcgroup found: NO (tried pkgconfig and cmake)
Configuring gstreamer-rtsp-server-1.0.pc using configuration
Configuring gstreamer-rtsp-server-1.0-uninstalled.pc using configuration
Program hotdoc found: NO
Message: Hotdoc not found, not building the documentation
Configuring config.h using configuration
Build targets in project: 987
Subproject gst-rtsp-server finished.

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

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

--- 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-rtsp-server' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-rtsp-server'



Executing subproject gst-devtools method meson 

Project name: gst-devtools
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/tmppuz87pao
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppuz87pao/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppuz87pao/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/tmp_s8fwdnx
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_s8fwdnx/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_s8fwdnx/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 
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-pbutils-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-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
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.57.2'
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/tmpe01y5bab
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe01y5bab/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe01y5bab/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/tmpku5yfs76
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpku5yfs76/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpku5yfs76/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/tmps28w6fn2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps28w6fn2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmps28w6fn2/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/tmphdpr_f5z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphdpr_f5z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphdpr_f5z/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/tmp8rfdwilc
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8rfdwilc/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8rfdwilc/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/tmpa7zy337y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa7zy337y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa7zy337y/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/tmpfkc2f48h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfkc2f48h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpfkc2f48h/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/tmpvizn1g1h
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvizn1g1h/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvizn1g1h/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/tmpd70a3hef
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd70a3hef/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpd70a3hef/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/tmpz964dnwz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz964dnwz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpz964dnwz/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/tmpjca6riny
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjca6riny/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjca6riny/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/tmprx5vef3o
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprx5vef3o/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprx5vef3o/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/tmpy9ucwub6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy9ucwub6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy9ucwub6/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/tmpa0k0s40s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0k0s40s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa0k0s40s/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/tmpp9x229ob
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9x229ob/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpp9x229ob/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/tmp52xwamez
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp52xwamez/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp52xwamez/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/tmpyvf1555a
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyvf1555a/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyvf1555a/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/tmp6cd3c2ok
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6cd3c2ok/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6cd3c2ok/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/tmp736k58v0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp736k58v0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp736k58v0/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/tmp7djvicw4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7djvicw4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7djvicw4/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/tmpxq2bfo_p
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxq2bfo_p/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxq2bfo_p/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/tmpg498k8fq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg498k8fq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg498k8fq/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/tmpg498k8fq/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg498k8fq/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/tmpg498k8fq/testfile.c:17:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg498k8fq/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/tmpg498k8fq/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/tmpg498k8fq/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/tmpg498k8fq/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/tmpg498k8fq/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/tmpg498k8fq/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg498k8fq/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/tmpg498k8fq/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/tmpnp3mgdzo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnp3mgdzo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnp3mgdzo/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/tmpnp3mgdzo/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnp3mgdzo/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/tmpnp3mgdzo/testfile.c:15:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmpnp3mgdzo/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnp3mgdzo/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/tmpnp3mgdzo/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/tmp4sntu911
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4sntu911/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4sntu911/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/tmp4sntu911/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4sntu911/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/tmp4sntu911/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4sntu911/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4sntu911/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/tmp4sntu911/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/tmp4sntu911/testfile.c:11:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4sntu911/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/tmp4sntu911/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/tmp4sntu911/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/tmpj3xsbt8y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj3xsbt8y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpj3xsbt8y/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/tmpji90qxu4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpji90qxu4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpji90qxu4/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/tmpjtzwdels
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjtzwdels/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjtzwdels/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/tmpg9ircn5z
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9ircn5z/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9ircn5z/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/tmpg9h76qut
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9h76qut/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpg9h76qut/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/tmpzqzf834k
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzqzf834k/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzqzf834k/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/tmp4lwjz7u3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4lwjz7u3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp4lwjz7u3/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/tmpvutk26tl
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvutk26tl/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvutk26tl/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/tmpatxyfkby
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpatxyfkby/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpatxyfkby/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/tmpzklhwcoq
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzklhwcoq/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzklhwcoq/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/tmpy3g6jnmb
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3g6jnmb/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpy3g6jnmb/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/tmpkf7xwj9v
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkf7xwj9v/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpkf7xwj9v/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/tmpre6eljua
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpre6eljua/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpre6eljua/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/tmpcltsbp5q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcltsbp5q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcltsbp5q/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/tmp0djcfk9y
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0djcfk9y/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0djcfk9y/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/tmp2oajfgjt
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2oajfgjt/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2oajfgjt/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/tmpvup_out0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvup_out0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvup_out0/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/tmpvup_out0/testfile.c: In function 'f':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvup_out0/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/tmpvup_out0/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/tmp0n4j9s2q
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0n4j9s2q/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0n4j9s2q/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/tmp_ujhefrk
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_ujhefrk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ujhefrk/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/tmpnxfi2xvu
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnxfi2xvu/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpnxfi2xvu/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/tmprby7ky0d
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprby7ky0d/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmprby7ky0d/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/tmph6f_i5us
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6f_i5us/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph6f_i5us/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/tmp6a2_0bl0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6a2_0bl0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6a2_0bl0/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/tmpvfuigje2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfuigje2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvfuigje2/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/tmp37xmwo7i
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp37xmwo7i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp37xmwo7i/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/tmpzkqb9_y9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzkqb9_y9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpzkqb9_y9/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/tmpr9tbszua
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr9tbszua/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpr9tbszua/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/tmpsesbu8mz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsesbu8mz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsesbu8mz/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/tmp18impife
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18impife/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18impife/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/tmpf5drltoa
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf5drltoa/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf5drltoa/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 gst-devtools is buildable: NO (disabling)

Executing subproject gst-integration-testsuites method meson 

Project name: gst-integration-testsuites
Project version: 1.17.2.1
Build targets in project: 987
Subproject gst-integration-testsuites finished.

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

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

--- 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-integration-testsuites' -> '/home/makoto/Work/src/gstreamer/gst-build-master/gst-integration-testsuites'



Executing subproject gst-editing-services method meson 

Project name: gst-editing-services
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
Library m found: YES
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ypq7d2i
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_ypq7d2i/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_ypq7d2i/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/tmphkb140ia
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphkb140ia/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphkb140ia/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/tmptxy3pyi6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptxy3pyi6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptxy3pyi6/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 
Dependency gstreamer-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-video-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-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 gst-validate-1.0 from subproject subprojects/gst-devtools found: NO
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.57.2'
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/tmpqx8yxj69
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqx8yxj69/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqx8yxj69/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/tmph13kpr1s
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph13kpr1s/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph13kpr1s/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/tmpwvocko85
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwvocko85/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpwvocko85/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/tmpqkzjfzfp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqkzjfzfp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqkzjfzfp/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/tmp9odb81we
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9odb81we/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9odb81we/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/tmp_rb7ybg_
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_rb7ybg_/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_rb7ybg_/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/tmp7kncpov6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7kncpov6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7kncpov6/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/tmpo1ht7hve
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo1ht7hve/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpo1ht7hve/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/tmp34qgjk6l
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp34qgjk6l/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp34qgjk6l/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/tmp18ak46zn
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18ak46zn/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp18ak46zn/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/tmp9x5ud_v3
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9x5ud_v3/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9x5ud_v3/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/tmp0y64h_i6
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0y64h_i6/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp0y64h_i6/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/tmpbvkkefj5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbvkkefj5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpbvkkefj5/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/tmp8xz4itgm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8xz4itgm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp8xz4itgm/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/tmpsigmaxa7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsigmaxa7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpsigmaxa7/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/tmpup2giuga
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpup2giuga/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpup2giuga/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/tmp5mcwkwoy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5mcwkwoy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp5mcwkwoy/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/tmp6df9pnu9
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6df9pnu9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6df9pnu9/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/tmpmgha03uw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmgha03uw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpmgha03uw/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/tmpe55z8j_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/tmpe55z8j_9/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe55z8j_9/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/tmph3cxx_dz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph3cxx_dz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmph3cxx_dz/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/tmpgbxq3tsy
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgbxq3tsy/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgbxq3tsy/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/tmpgbxq3tsy/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgbxq3tsy/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/tmpgbxq3tsy/testfile.c:17:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgbxq3tsy/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/tmpgbxq3tsy/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/tmpgbxq3tsy/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/tmpgbxq3tsy/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/tmpgbxq3tsy/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/tmpgbxq3tsy/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpgbxq3tsy/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/tmpgbxq3tsy/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/tmp6m_3gfpw
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m_3gfpw/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m_3gfpw/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/tmp6m_3gfpw/testfile.c: In function 'doit':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m_3gfpw/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/tmp6m_3gfpw/testfile.c:15:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp6m_3gfpw/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6m_3gfpw/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/tmp6m_3gfpw/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/tmp9gd3ouan
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9gd3ouan/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9gd3ouan/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/tmp9gd3ouan/testfile.c: In function 'main':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9gd3ouan/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/tmp9gd3ouan/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9gd3ouan/testfile.c:9:20: warning: unknown escape sequence: '\$'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9gd3ouan/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/tmp9gd3ouan/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/tmp9gd3ouan/testfile.c:11:5: warning: incompatible implicit declaration of built-in function 'exit'
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp9gd3ouan/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/tmp9gd3ouan/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/tmp9gd3ouan/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/tmpq0yg0qr7
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq0yg0qr7/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq0yg0qr7/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/tmpa369edy1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa369edy1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpa369edy1/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/tmp2ubuclh4
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ubuclh4/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp2ubuclh4/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/tmpf0pna2sk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf0pna2sk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpf0pna2sk/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/tmphjjn0yxg
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphjjn0yxg/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphjjn0yxg/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/tmp82l7y_in
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp82l7y_in/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp82l7y_in/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/tmpq4aq9prs
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq4aq9prs/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpq4aq9prs/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/tmplyj8u7as
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplyj8u7as/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmplyj8u7as/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/tmptez_pc4g
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptez_pc4g/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmptez_pc4g/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/tmpl09dijay
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl09dijay/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpl09dijay/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/tmpcboefz0f
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcboefz0f/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpcboefz0f/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/tmpurtn0tho
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpurtn0tho/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpurtn0tho/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/tmpe0lzr941
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe0lzr941/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpe0lzr941/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/tmpivx8385x
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpivx8385x/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpivx8385x/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/tmppu4cdblk
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppu4cdblk/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmppu4cdblk/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/tmphrdgv1cr
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphrdgv1cr/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmphrdgv1cr/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/tmp7t_xepph
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7t_xepph/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7t_xepph/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/tmp7t_xepph/testfile.c: In function 'f':
/home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7t_xepph/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/tmp7t_xepph/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/tmp7hueufmm
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hueufmm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp7hueufmm/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/tmp08wt95g1
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08wt95g1/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp08wt95g1/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/tmpjhjav5e8
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjhjav5e8/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpjhjav5e8/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/tmp3wsjzpme
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3wsjzpme/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp3wsjzpme/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/tmpk8xzq2sp
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk8xzq2sp/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpk8xzq2sp/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/tmp6p3fg_xd
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6p3fg_xd/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp6p3fg_xd/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/tmpyyo1ie_0
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyyo1ie_0/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpyyo1ie_0/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/tmpqdv4imtz
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqdv4imtz/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqdv4imtz/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/tmpvjc7dfn2
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvjc7dfn2/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpvjc7dfn2/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/tmp_11nuphm
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_11nuphm/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmp_11nuphm/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/tmpddxe_s27
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpddxe_s27/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpddxe_s27/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/tmpu40hlnt5
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu40hlnt5/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpu40hlnt5/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/tmpqe6pa9yo
Command line:  cc -I/usr/src/linux-headers-4.19.0-hoge/include /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqe6pa9yo/testfile.c -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpqe6pa9yo/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 gst-editing-services is buildable: NO (disabling)
Subproject gstreamer-vaapi : skipped: feature vaapi disabled
Subproject gst-omx : skipped: feature omx disabled
Subproject gstreamer-sharp : skipped: feature sharp disabled

Executing subproject pygobject method meson 

Project name: pygobject
Project version: 3.37.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
Program python3 found: YES (/usr/bin/python3)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'python-3.5m' 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 python-3.5m` -> 0
3.5
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config --cflags python-3.5m` -> 0
-I/usr/include/python3.5m -I/usr/include/x86_64-linux-gnu/python3.5m
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config python-3.5m --libs` -> 0
-lpython3.5m
PKG_CONFIG_PATH: :/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig/:/usr/lib/pkgconfig
Called `/usr/bin/pkg-config python-3.5m --libs` -> 0
-lpython3.5m
Running compile:
Working directory:  /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxu50msop
Command line:  c++ /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxu50msop/testfile.mm -o /home/makoto/Work/src/gstreamer/gst-build-master/build/meson-private/tmpxu50msop/output.exe -pipe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--start-group -lpython3.5m -Wl,--end-group -Wl,--allow-shlib-undefined 

Code:
 int main(void) { return 0; }
Compiler stdout:
 
Compiler stderr:
 c++: error trying to exec 'cc1objplus': execvp: No such file or directory

Found "python-3.5m" via pkgconfig lookup in LIBPC (/usr/lib/x86_64-linux-gnu/pkgconfig)
Dependency python found: YES (pkgconfig)
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'gobject-introspection-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 gobject-introspection-1.0` -> 1

CMake binary for MachineChoice.HOST is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency gobject-introspection-1.0 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency gobject-introspection-1.0
subprojects/pygobject/meson.build:29: WARNING: Dependency gobject-introspection not found but it is available in a sub-subproject.
To use it in the current project, promote it by going in the project source
root and issuing the following command: 
meson wrap promote subprojects/pygobject/subprojects/gobject-introspection.wrap

subprojects/pygobject/meson.build:29:0: Exception: Subproject directory not found and gobject-introspection.wrap file not found

Subproject pygobject is buildable: NO (disabling)

Executing subproject gst-python method meson 

Project name: gst-python
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
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 gmodule-2.0 found: YES 2.50.3 (cached)

subprojects/gst-python/meson.build:23:0: Exception: Could not find dependency pygobject_dep in subproject pygobject

Subproject gst-python is buildable: NO (disabling)

Executing subproject gst-examples method meson 

Project name: gst-examples
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
Library m found: YES
Dependency glib-2.0 found: YES 2.50.3 (cached)
Dependency gio-2.0 found: YES 2.50.3 (cached)
Dependency gobject-2.0 found: YES 2.50.3 (cached)
Dependency gmodule-2.0 found: YES 2.50.3 (cached)
Dependency gstreamer-1.0 from subproject subprojects/gstreamer found: YES 1.17.2.1
Dependency gstreamer-player-1.0 from subproject subprojects/gst-plugins-bad 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-webrtc-1.0 from subproject subprojects/gst-plugins-bad found: YES 1.17.2.1
Dependency gstreamer-webrtc-1.0 from subproject subprojects/gst-plugins-bad found: YES 1.17.2.1
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)
Dependency x11 found: YES 1.6.4 (cached)
Dependency gstreamer-sdp-1.0 from subproject subprojects/gst-plugins-base found: YES 1.17.2.1

subprojects/gst-examples/webrtc/meson.build:5:0: Exception: Could not find dependency libsoup_dep in subproject libsoup

Subproject gst-examples is buildable: NO (disabling)
Subproject gst-plugins-rs : skipped: feature rs disabled
Program hotdoc found: NO
Message: Not building documentation as hotdoc was not found
Configuring GstDocumentedSubprojects with command
Running command: /usr/bin/python3 -c 
import os
import sys

assert len(sys.argv) >= 3
fname = sys.argv[1]
contents = sys.argv[2]

with open(fname, 'w') as f:
    f.write(contents)
 /home/makoto/Work/src/gstreamer/gst-build-master/build/GstDocumentedSubprojects 
--- stdout ---

--- stderr ---


Program scripts/generate_plugins_path.py found: YES (/usr/bin/python3 /home/makoto/Work/src/gstreamer/gst-build-master/scripts/generate_plugins_path.py)
Configuring GstPluginsPath.json with command
Running command: /usr/bin/python3 /home/makoto/Work/src/gstreamer/gst-build-master/scripts/generate_plugins_path.py /home/makoto/Work/src/gstreamer/gst-build-master/build/GstPluginsPath.json /home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gstreamer/plugins/elements/libgstcoreelements.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gstreamer/plugins/tracers/libgstcoretracers.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/adder/libgstadder.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/app/libgstapp.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/audioconvert/libgstaudioconvert.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/audiomixer/libgstaudiomixer.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/audiorate/libgstaudiorate.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/audioresample/libgstaudioresample.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/audiotestsrc/libgstaudiotestsrc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/compositor/libgstcompositor.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/encoding/libgstencoding.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/gio/libgstgio.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/overlaycomposition/libgstoverlaycomposition.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/pbtypes/libgstpbtypes.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/playback/libgstplayback.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/rawparse/libgstrawparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/subparse/libgstsubparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/tcp/libgsttcp.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/typefind/libgsttypefindfunctions.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/videoconvert/libgstvideoconvert.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/videorate/libgstvideorate.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/videoscale/libgstvideoscale.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/videotestsrc/libgstvideotestsrc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/gst/volume/libgstvolume.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/ext/alsa/libgstalsa.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/ext/ogg/libgstogg.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/ext/vorbis/libgstvorbis.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-base/sys/ximage/libgstximagesink.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/alpha/libgstalpha.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/alpha/libgstalphacolor.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/apetag/libgstapetag.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/audiofx/libgstaudiofx.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/audioparsers/libgstaudioparsers.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/auparse/libgstauparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/autodetect/libgstautodetect.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/avi/libgstavi.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/cutter/libgstcutter.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/debugutils/libgstnavigationtest.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/debugutils/libgstdebug.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/deinterlace/libgstdeinterlace.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/dtmf/libgstdtmf.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/effectv/libgsteffectv.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/equalizer/libgstequalizer.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/flv/libgstflv.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/flx/libgstflxdec.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/goom/libgstgoom.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/goom2k1/libgstgoom2k1.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/icydemux/libgsticydemux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/id3demux/libgstid3demux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/imagefreeze/libgstimagefreeze.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/interleave/libgstinterleave.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/isomp4/libgstisomp4.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/law/libgstalaw.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/law/libgstmulaw.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/level/libgstlevel.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/matroska/libgstmatroska.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/monoscope/libgstmonoscope.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/multifile/libgstmultifile.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/multipart/libgstmultipart.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/replaygain/libgstreplaygain.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/rtp/libgstrtp.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/rtpmanager/libgstrtpmanager.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/rtsp/libgstrtsp.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/shapewipe/libgstshapewipe.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/smpte/libgstsmpte.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/spectrum/libgstspectrum.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/udp/libgstudp.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/videobox/libgstvideobox.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/videocrop/libgstvideocrop.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/videofilter/libgstvideofilter.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/videomixer/libgstvideomixer.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/wavenc/libgstwavenc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/wavparse/libgstwavparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/gst/y4m/libgsty4menc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/sys/oss/libgstossaudio.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/sys/oss4/libgstoss4.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/sys/v4l2/libgstvideo4linux2.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/sys/ximage/libgstximagesrc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/ext/flac/libgstflac.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-good/ext/jack/libgstjack.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/accurip/libgstaccurip.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/adpcmdec/libgstadpcmdec.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/adpcmenc/libgstadpcmenc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/aiff/libgstaiff.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/asfmux/libgstasfmux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/audiobuffersplit/libgstaudiobuffersplit.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/audiofxbad/libgstaudiofxbad.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/audiomixmatrix/libgstaudiomixmatrix.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/audiolatency/libgstaudiolatency.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/audiovisualizers/libgstaudiovisualizers.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/autoconvert/libgstautoconvert.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/bayer/libgstbayer.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/camerabin2/libgstcamerabin.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/coloreffects/libgstcoloreffects.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/debugutils/libgstdebugutilsbad.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/dvbsubenc/libgstdvbsubenc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/dvbsuboverlay/libgstdvbsuboverlay.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/dvdspu/libgstdvdspu.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/faceoverlay/libgstfaceoverlay.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/festival/libgstfestival.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/fieldanalysis/libgstfieldanalysis.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/freeverb/libgstfreeverb.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/frei0r/libgstfrei0r.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/gaudieffects/libgstgaudieffects.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/gdp/libgstgdp.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/geometrictransform/libgstgeometrictransform.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/id3tag/libgstid3tag.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/inter/libgstinter.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/interlace/libgstinterlace.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/ivfparse/libgstivfparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/ivtc/libgstivtc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/jp2kdecimator/libgstjp2kdecimator.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/jpegformat/libgstjpegformat.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/librfb/libgstrfbsrc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/midi/libgstmidi.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/mpegdemux/libgstmpegpsdemux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/mpegpsmux/libgstmpegpsmux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/mpegtsdemux/libgstmpegtsdemux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/mpegtsmux/libgstmpegtsmux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/mxf/libgstmxf.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/netsim/libgstnetsim.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/onvif/libgstrtponvif.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/pcapparse/libgstpcapparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/pnm/libgstpnm.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/proxy/libgstproxy.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/rawparse/libgstlegacyrawparse.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/removesilence/libgstremovesilence.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/rist/libgstrist.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/rtmp2/libgstrtmp2.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/rtp/libgstrtpmanagerbad.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/sdp/libgstsdpelem.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/segmentclip/libgstsegmentclip.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/siren/libgstsiren.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/smooth/libgstsmooth.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/speed/libgstspeed.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/subenc/libgstsubenc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/switchbin/libgstswitchbin.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/timecode/libgsttimecode.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/transcode/libgsttranscode.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/videofilters/libgstvideofiltersbad.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/videoframe_audiolevel/libgstvideoframe_audiolevel.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/videoparsers/libgstvideoparsersbad.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/videosignal/libgstvideosignal.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/vmnc/libgstvmnc.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/gst/y4m/libgsty4mdec.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/sys/decklink/libgstdecklink.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/sys/dvb/libgstdvb.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/sys/fbdev/libgstfbdevsink.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/sys/ipcpipeline/libgstipcpipeline.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/sys/nvcodec/libgstnvcodec.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/sys/shm/libgstshm.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/ext/dash/libgstdash.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/ext/dtls/libgstdtls.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/ext/hls/libgsthls.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/ext/mdns/libgstmicrodns.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/ext/smoothstreaming/libgstsmoothstreaming.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-bad/ext/sndfile/libgstsndfile.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-ugly/gst/asfdemux/libgstasf.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-ugly/gst/dvdlpcmdec/libgstdvdlpcmdec.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-ugly/gst/dvdsub/libgstdvdsub.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-ugly/gst/realmedia/libgstrealmedia.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-ugly/gst/xingmux/libgstxingmux.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-plugins-ugly/ext/x264/libgstx264.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-libav/ext/libav/libgstlibav.so:/home/makoto/Work/src/gstreamer/gst-build-master/build/subprojects/gst-rtsp-server/gst/rtsp-sink/libgstrtspclientsink.so
--- stdout ---

--- stderr ---


Message: Building subprojects: gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, gst-rtsp-server, gst-integration-testsuites
Program gst-env.py found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/gst-env.py)
Program git-update found: YES (/home/makoto/Work/src/gstreamer/gst-build-master/git-update)
Build targets in project: 993

All GStreamer modules 1.17.2.1

  Subprojects
                          x264: YES
                           orc: YES
                       libnice: NO
                       libsoup: NO
               gst-rtsp-server: YES
                    gl-headers: YES
                        libdrm: NO
               gst-plugins-bad: YES
                      openh264: NO
                gst-plugins-rs: Feature 'rs' disabled
                     gstreamer: YES
                     gst-libav: YES
                      tinyalsa: NO
               gstreamer-vaapi: Feature 'vaapi' disabled
                          avtp: YES
                       gst-omx: Feature 'omx' disabled
    gst-integration-testsuites: YES
                  gst-devtools: NO
                        FFmpeg: YES
          gst-editing-services: NO
               gstreamer-sharp: Feature 'sharp' disabled
                   libmicrodns: YES
                     pygobject: NO
                    libopenjp2: NO
              gst-plugins-good: YES
                    gst-python: NO
                         dssim: NO
                  gst-examples: NO
              gst-plugins-base: YES
              gst-plugins-ugly: YES

Found ninja-1.7.2 at /usr/bin/ninja


More information about the gstreamer-devel mailing list