Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Build started at 2026-05-27T21:16:35.481992
- Main binary: /usr/bin/python
- Build Options: -Dbuildtype=release -Dprefix=/usr -Dcuda_ccbindir=/usr/bin/g++-15 -Denable_vapoursynth=false
- Python system: Linux
- The Meson build system
- Version: 1.11.1
- Source dir: /home/minikea/dev/NVEnc
- Build dir: /home/minikea/dev/NVEnc/build
- Build type: native build
- Running command: /usr/bin/git describe --tags --abbrev=0
- --- stdout ---
- 9.16
- --- stderr ---
- WARNING: Project targets '>=0.61.0' but uses feature introduced in '1.1': meson.options file. Use meson_options.txt instead
- Project name: nvencc
- Project version: 9.16
- -----------
- Detecting compiler via: `g++-15 --version` -> 0
- stdout:
- g++-15 (GCC) 15.2.1 20260506
- Copyright (C) 2025 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.
- -----------
- Running command: -cpp -x c++ -E -dM -
- -----
- -----------
- Detecting linker via: `g++-15 -Wl,--version` -> 0
- stdout:
- GNU ld (GNU Binutils) 2.46.0
- Copyright (C) 2026 Free Software Foundation, Inc.
- This program is free software; you may redistribute it under the terms of
- the GNU General Public License version 3 or (at your option) a later version.
- This program has absolutely no warranty.
- -----------
- stderr:
- collect2 version 15.2.1 20260506
- /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNGUet8.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
- -----------
- Sanity check compiler command line: g++-15 -D_FILE_OFFSET_BITS=64 -o sanity_check_for_cpp.exe sanity_check_for_cpp.cpp -D_FILE_OFFSET_BITS=64
- Sanity check compile stdout:
- -----
- Sanity check compile stderr:
- -----
- Sanity check built target output for host machine cpp compiler
- -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe
- -----------
- Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe` -> 0
- -- stdout:
- -- stderr:
- -- returncode: 0
- C++ compiler for the host machine: g++-15 (gcc 15.2.1 "g++-15 (GCC) 15.2.1 20260506")
- C++ linker for the host machine: g++-15 ld.bfd 2.46.0
- -----------
- Detecting archiver via: `gcc-ar --version` -> 0
- stdout:
- GNU ar (GNU Binutils) 2.46.0
- Copyright (C) 2026 Free Software Foundation, Inc.
- This program is free software; you may redistribute it under the terms of
- the GNU General Public License version 3 or (at your option) any later version.
- This program has absolutely no warranty.
- -----------
- -----------
- Detecting compiler via: `nvcc --version` -> 0
- stdout:
- nvcc: NVIDIA (R) Cuda compiler driver
- Copyright (c) 2005-2026 NVIDIA Corporation
- Built on Thu_Mar_19_11:12:51_PM_PDT_2026
- Cuda compilation tools, release 13.2, V13.2.78
- Build cuda_13.2.r13.2/compiler.37668154_0
- -----------
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmphsn29c3l
- Code:
- #include <cuda_runtime.h>
- #include <stdio.h>
- __global__ void kernel (void) {}
- int main(void){
- struct cudaDeviceProp prop;
- int count, i;
- cudaError_t ret = cudaGetDeviceCount(&count);
- if(ret != cudaSuccess){
- fprintf(stderr, "%d\n", (int)ret);
- }else{
- for(i=0;i<count;i++){
- if(cudaGetDeviceProperties(&prop, i) == cudaSuccess){
- fprintf(stdout, "%d.%d\n", prop.major, prop.minor);
- }
- }
- }
- fflush(stderr);
- fflush(stdout);
- return 0;
- }
- -----------
- Command line: `nvcc /home/minikea/dev/NVEnc/build/meson-private/tmphsn29c3l/testfile.cu -o /home/minikea/dev/NVEnc/build/meson-private/tmphsn29c3l/output.exe -O0` -> 0
- Program stdout:
- 12.0
- 12.0
- Program stderr:
- Sanity check compiler command line: nvcc -w -cudart static sanity_check_for_cuda.cu -ccbin=/usr/bin/g++-15 -o sanity_check_for_cuda.exe
- Sanity check compile stdout:
- -----
- Sanity check compile stderr:
- -----
- Sanity check built target output for host machine cuda compiler
- -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe
- -----------
- Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe` -> 0
- stdout:
- 12.0
- 12.0
- -----------
- -- stdout:
- 12.0
- 12.0
- -- stderr:
- -- returncode: 0
- added cuda as language, disabling thin archives for host machine, since nvcc/nvlink cannot handle thin archives natively
- Cuda compiler for the host machine: nvcc (nvcc 13.2.78)
- Cuda linker for the host machine: nvcc nvlink 13.2.78
- -----------
- Detecting compiler via: `g++-15 --version` -> 0
- stdout:
- g++-15 (GCC) 15.2.1 20260506
- Copyright (C) 2025 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.
- -----------
- Running command: -cpp -x c++ -E -dM -
- -----
- -----------
- Detecting linker via: `g++-15 -Wl,--version` -> 0
- stdout:
- GNU ld (GNU Binutils) 2.46.0
- Copyright (C) 2026 Free Software Foundation, Inc.
- This program is free software; you may redistribute it under the terms of
- the GNU General Public License version 3 or (at your option) a later version.
- This program has absolutely no warranty.
- -----------
- stderr:
- collect2 version 15.2.1 20260506
- /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1kDu76.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
- -----------
- Sanity check compiler command line: g++-15 -D_FILE_OFFSET_BITS=64 -o sanity_check_for_cpp.exe sanity_check_for_cpp.cpp -D_FILE_OFFSET_BITS=64
- Sanity check compile stdout:
- -----
- Sanity check compile stderr:
- -----
- Sanity check built target output for build machine cpp compiler
- -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe
- -----------
- Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe` -> 0
- -- stdout:
- -- stderr:
- -- returncode: 0
- C++ compiler for the build machine: g++-15 (gcc 15.2.1 "g++-15 (GCC) 15.2.1 20260506")
- C++ linker for the build machine: g++-15 ld.bfd 2.46.0
- -----------
- Detecting compiler via: `nvcc --version` -> 0
- stdout:
- nvcc: NVIDIA (R) Cuda compiler driver
- Copyright (c) 2005-2026 NVIDIA Corporation
- Built on Thu_Mar_19_11:12:51_PM_PDT_2026
- Cuda compilation tools, release 13.2, V13.2.78
- Build cuda_13.2.r13.2/compiler.37668154_0
- -----------
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp1twq8_7r
- Code:
- #include <cuda_runtime.h>
- #include <stdio.h>
- __global__ void kernel (void) {}
- int main(void){
- struct cudaDeviceProp prop;
- int count, i;
- cudaError_t ret = cudaGetDeviceCount(&count);
- if(ret != cudaSuccess){
- fprintf(stderr, "%d\n", (int)ret);
- }else{
- for(i=0;i<count;i++){
- if(cudaGetDeviceProperties(&prop, i) == cudaSuccess){
- fprintf(stdout, "%d.%d\n", prop.major, prop.minor);
- }
- }
- }
- fflush(stderr);
- fflush(stdout);
- return 0;
- }
- -----------
- Command line: `nvcc /home/minikea/dev/NVEnc/build/meson-private/tmp1twq8_7r/testfile.cu -o /home/minikea/dev/NVEnc/build/meson-private/tmp1twq8_7r/output.exe -O0` -> 0
- Program stdout:
- 12.0
- 12.0
- Program stderr:
- Sanity check compiler command line: nvcc -w -cudart static sanity_check_for_cuda.cu -ccbin=/usr/bin/g++-15 -o sanity_check_for_cuda.exe
- Sanity check compile stdout:
- -----
- Sanity check compile stderr:
- -----
- Sanity check built target output for build machine cuda compiler
- -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe
- -----------
- Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe` -> 0
- stdout:
- 12.0
- 12.0
- -----------
- -- stdout:
- 12.0
- 12.0
- -- stderr:
- -- returncode: 0
- added cuda as language, disabling thin archives for build machine, since nvcc/nvlink cannot handle thin archives natively
- Cuda compiler for the build machine: nvcc (nvcc 13.2.78)
- Cuda linker for the build machine: nvcc nvlink 13.2.78
- 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
- Running command: /usr/bin/sh -c 'echo $CUDA_PATH'
- --- stdout ---
- /opt/cuda
- --- stderr ---
- Message: Using CUDA path: /opt/cuda
- Running command: /opt/cuda/bin/nvcc --version
- --- stdout ---
- nvcc: NVIDIA (R) Cuda compiler driver
- Copyright (c) 2005-2026 NVIDIA Corporation
- Built on Thu_Mar_19_11:12:51_PM_PDT_2026
- Cuda compilation tools, release 13.2, V13.2.78
- Build cuda_13.2.r13.2/compiler.37668154_0
- --- stderr ---
- Running command: /usr/bin/sh -c 'echo "nvcc: NVIDIA (R) Cuda compiler driver
- Copyright (c) 2005-2026 NVIDIA Corporation
- Built on Thu_Mar_19_11:12:51_PM_PDT_2026
- Cuda compilation tools, release 13.2, V13.2.78
- Build cuda_13.2.r13.2/compiler.37668154_0
- " | grep -oP "release \K[0-9]+\.[0-9]+"'
- --- stdout ---
- 13.2
- --- stderr ---
- Message: Detected CUDA version: 13.2
- Message: GPU code generation targets: --generate-code arch=compute_75,code=[compute_75,sm_75] --generate-code arch=compute_86,code=[compute_86,sm_86] --generate-code arch=compute_120,code=[compute_120,sm_120]
- Run-time dependency threads found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp5n444a9d
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp5n444a9d/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp5n444a9d/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -ldl -Wl,--allow-shlib-undefined` -> 0
- Library dl found: YES
- Default path env var: CUDA_PATH
- Could not read CUDA Toolkit's version file /opt/cuda/version.txt: [Errno 2] No such file or directory: '/opt/cuda/version.txt'
- Search paths: [('/opt/cuda', '13.2', True)]
- CUDA target resolved to "targets/x86_64-linux".
- CUDA library directory is /opt/cuda/targets/x86_64-linux/lib
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp1v1erpwz
- Code:
- #include<stddef.h>
- #include<stdio.h>
- int main(void) {
- printf("%ld\n", (long)(sizeof(void *)));
- return 0;
- }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp1v1erpwz/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp1v1erpwz/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive` -> 0
- Program stdout:
- 8
- Program stderr:
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpe4wkc_ye
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpe4wkc_ye/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpe4wkc_ye/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /opt/cuda/targets/x86_64-linux/lib/libcudart_static.a -Wl,--allow-shlib-undefined` -> 0
- Link args for CUDA module 'cudart_static' are ['/opt/cuda/targets/x86_64-linux/lib/libcudart_static.a']
- Run-time dependency CUDA (modules: cudart_static) for cpp found: YES 13.2 (/opt/cuda)
- Message: CUDA driver search dirs: /opt/cuda/targets/x86_64-linux/lib/stubs /opt/cuda/targets/x86_64-linux/lib /opt/cuda/lib64 /usr/lib/wsl/lib
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpvu6tonnb
- Code:
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpvu6tonnb/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpvu6tonnb/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive --print-search-dirs` -> 0
- stdout:
- install: /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/
- programs: =/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/bin/
- libraries: =/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/x86_64-pc-linux-gnu/15.2.1/:/lib/../lib/:/usr/lib/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/
- -----------
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpdbp7fkpi
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpdbp7fkpi/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpdbp7fkpi/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /opt/cuda/targets/x86_64-linux/lib/stubs/libcuda.so -Wl,--allow-shlib-undefined` -> 0
- Library cuda found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpg2me7gdr
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpg2me7gdr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpg2me7gdr/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /opt/cuda/targets/x86_64-linux/lib/libnppif_static.a -Wl,--allow-shlib-undefined` -> 0
- Library nppif_static found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpvo5j830y
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpvo5j830y/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpvo5j830y/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /opt/cuda/targets/x86_64-linux/lib/libnppig_static.a -Wl,--allow-shlib-undefined` -> 0
- Library nppig_static found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpoluvjl6a
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpoluvjl6a/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpoluvjl6a/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /opt/cuda/targets/x86_64-linux/lib/libnppc_static.a -Wl,--allow-shlib-undefined` -> 0
- Library nppc_static found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpddo4rsqn
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpddo4rsqn/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpddo4rsqn/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /opt/cuda/targets/x86_64-linux/lib/libculibos.a -Wl,--allow-shlib-undefined` -> 0
- Library culibos found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmplgw2_2ww
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmplgw2_2ww/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmplgw2_2ww/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -lrt -Wl,--allow-shlib-undefined` -> 0
- Library rt found: YES
- Pkg-config binary missing from cross or native file, or env var undefined.
- Trying a default Pkg-config fallback at pkg-config
- Found pkg-config: YES (/usr/bin/pkg-config) 2.5.1
- Determining dependency 'libavutil' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libavutil` -> 0
- stdout:
- 60.26.101
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libavutil` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavutil` -> 0
- stdout:
- -L/usr/lib -lavutil
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavutil` -> 0
- stdout:
- -lavutil
- -----------
- Run-time dependency libavutil found: YES 60.26.101
- Determining dependency 'libavcodec' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libavcodec` -> 0
- stdout:
- 62.28.101
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libavcodec` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavcodec` -> 0
- stdout:
- -L/usr/lib -lavcodec
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavcodec` -> 0
- stdout:
- -lavcodec
- -----------
- Run-time dependency libavcodec found: YES 62.28.101
- Determining dependency 'libavformat' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libavformat` -> 0
- stdout:
- 62.12.101
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libavformat` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavformat` -> 0
- stdout:
- -L/usr/lib -lavformat
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavformat` -> 0
- stdout:
- -lavformat
- -----------
- Run-time dependency libavformat found: YES 62.12.101
- Determining dependency 'libavfilter' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libavfilter` -> 0
- stdout:
- 11.14.101
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libavfilter` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavfilter` -> 0
- stdout:
- -L/usr/lib -lavfilter
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavfilter` -> 0
- stdout:
- -lavfilter
- -----------
- Run-time dependency libavfilter found: YES 11.14.101
- Determining dependency 'libavdevice' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libavdevice` -> 0
- stdout:
- 62.3.101
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libavdevice` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavdevice` -> 0
- stdout:
- -L/usr/lib -lavdevice
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libavdevice` -> 0
- stdout:
- -lavdevice
- -----------
- Run-time dependency libavdevice found: YES 62.3.101
- Determining dependency 'libswresample' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libswresample` -> 0
- stdout:
- 6.3.101
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libswresample` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libswresample` -> 0
- stdout:
- -L/usr/lib -lswresample
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libswresample` -> 0
- stdout:
- -lswresample
- -----------
- Run-time dependency libswresample found: YES 6.3.101
- Determining dependency 'avisynth' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion avisynth` -> 0
- stdout:
- 3.7.5
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags avisynth` -> 0
- stdout:
- -I/usr/include/avisynth
- -----------
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs avisynth` -> 0
- stdout:
- -L/usr/lib -lavisynth
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs avisynth` -> 0
- stdout:
- -lavisynth
- -----------
- Run-time dependency avisynth found: YES 3.7.5
- Running compile:
- Working directory: /tmp/tmp5mulvcwo
- Code:
- int i = static_cast<int>(0);
- -----------
- Command line: `g++-15 /tmp/tmp5mulvcwo/testfile.cpp -o /tmp/tmp5mulvcwo/output.obj -D_FILE_OFFSET_BITS=64 -c -std=c++17` -> 0
- Compiler accepts -std=c++17: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpg5w4c06o
- Code:
- #include "avisynth_c.h"
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 -I/usr/include/avisynth /home/minikea/dev/NVEnc/build/meson-private/tmpg5w4c06o/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpg5w4c06o/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- Determining dependency 'libass' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libass` -> 0
- stdout:
- 0.17.4
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libass` -> 0
- stdout:
- -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -I/usr/include/fribidi -I/usr/include/freetype2 -I/usr/include/libpng16
- -----------
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libass` -> 0
- stdout:
- -L/usr/lib -lass
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libass` -> 0
- stdout:
- -lass
- -----------
- Run-time dependency libass found: YES 0.17.4
- Determining dependency 'libvmaf' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libvmaf` -> 0
- stdout:
- 3.0.0
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libvmaf` -> 0
- stdout:
- -I/usr/include/libvmaf
- -----------
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libvmaf` -> 0
- stdout:
- -L/usr/lib -lvmaf
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libvmaf` -> 0
- stdout:
- -lvmaf
- -----------
- Run-time dependency libvmaf found: YES 3.0.0
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --variable=libdir libvmaf` -> 0
- stdout:
- /usr/lib
- -----------
- Got pkg-config variable libdir : /usr/lib
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8
- Code:
- #include <libvmaf/libvmaf.h>
- int main(void) {
- VmafConfiguration cfg = { 0 };
- VmafPicture pic;
- (void)cfg;
- (void)pic;
- return 0;
- }
- -----------
- Command line: `g++-15 -I/usr/include/libvmaf /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8/testfile.cpp:4:29: warning: invalid conversion from 'int' to 'VmafLogLevel' [-fpermissive]
- 4 | VmafConfiguration cfg = { 0 };
- | ^
- | |
- | int
- -----------
- Message: Using VMAF headers from libvmaf dependency
- Determining dependency 'vulkan' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion vulkan` -> 0
- stdout:
- 1.4.350
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags vulkan` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs vulkan` -> 0
- stdout:
- -L/usr/lib -lvulkan
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs vulkan` -> 0
- stdout:
- -lvulkan
- -----------
- Run-time dependency vulkan found: YES 1.4.350
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpubc5kjgh
- Code:
- #include <vulkan/vulkan.h>
- int main(void) { return VK_HEADER_VERSION; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpubc5kjgh/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpubc5kjgh/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 1
- stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpubc5kjgh/testfile.cpp:2:10: fatal error: vulkan/vulkan.h: No such file or directory
- 2 | #include <vulkan/vulkan.h>
- | ^~~~~~~~~~~~~~~~~
- compilation terminated.
- -----------
- Determining dependency 'libplacebo' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion libplacebo` -> 0
- stdout:
- 7.360.1
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags libplacebo` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libplacebo` -> 0
- stdout:
- -L/usr/lib -lplacebo
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs libplacebo` -> 0
- stdout:
- -lplacebo
- -----------
- Run-time dependency libplacebo found: YES 7.360.1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --variable=libdir libplacebo` -> 0
- stdout:
- /usr/lib
- -----------
- Got pkg-config variable libdir : /usr/lib
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpiv3ihnq2
- Code:
- #include <libplacebo/dispatch.h>
- #include <libplacebo/renderer.h>
- #include <libplacebo/shaders.h>
- int main(void) { return PL_API_VER; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpiv3ihnq2/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpiv3ihnq2/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- Program cargo found: YES (/usr/bin/cargo)
- Running command: /usr/bin/env CARGO_HOME=/home/minikea/dev/NVEnc/.cargo_home /usr/bin/cargo cinstall --version
- --- stdout ---
- cargo-c 0.10.22+cargo-0.96.0
- --- stderr ---
- Determining dependency 'dovi' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion dovi` -> 0
- stdout:
- 3.3.2
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --cflags dovi` -> 0
- env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs dovi` -> 0
- stdout:
- -L/usr/lib -ldovi
- -----------
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --libs dovi` -> 0
- stdout:
- -ldovi
- -----------
- Run-time dependency dovi found: YES 3.3.2
- Determining dependency 'hdr10plus-rs' with pkg-config executable '/usr/bin/pkg-config'
- env[PKG_CONFIG_PATH]:
- env[PKG_CONFIG]: /usr/bin/pkg-config
- -----------
- Called: `/usr/bin/pkg-config --modversion hdr10plus-rs` -> 1
- stderr:
- Package hdr10plus-rs was not found in the pkg-config search path.
- Perhaps you should add the directory containing `hdr10plus-rs.pc'
- to the PKG_CONFIG_PATH environment variable
- Package 'hdr10plus-rs' not found
- -----------
- CMake binary for host machine is not cached
- CMake binary missing from cross or native file, or env var undefined.
- Trying a default CMake fallback at cmake
- Found CMake: /usr/bin/cmake (4.3.2)
- Extracting basic cmake information
- CMake Toolchain: Calling CMake once to generate the compiler state
- Calling CMake (['/usr/bin/cmake']) in /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__ with:
- - "--trace-expand"
- - "--trace-format=json-v1"
- - "--no-warn-unused-cli"
- - "--trace-redirect=cmake_trace.txt"
- - "-G"
- - "Ninja"
- - "-DCMAKE_TOOLCHAIN_FILE=/home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
- - "."
- CMake trace warning: add_executable() non imported executables are not supported
- CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-JdcJH4/CMakeLists.txt:23 add_executable(['cmTC_53605'])
- CMake trace warning: target_link_libraries() TARGET cmTC_53605 not found
- CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-JdcJH4/CMakeLists.txt:29 target_link_libraries(['cmTC_53605', ''])
- CMake trace warning: add_executable() non imported executables are not supported
- CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-KYZrdc/CMakeLists.txt:27 add_executable(['cmTC_522dc'])
- CMake trace warning: target_link_libraries() TARGET cmTC_522dc not found
- CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-KYZrdc/CMakeLists.txt:33 target_link_libraries(['cmTC_522dc', ''])
- Try CMake generator: auto
- Calling CMake (['/usr/bin/cmake']) in /home/minikea/dev/NVEnc/build/meson-private/cmake_hdr10plus-rs with:
- - "--trace-expand"
- - "--trace-format=json-v1"
- - "--no-warn-unused-cli"
- - "--trace-redirect=cmake_trace.txt"
- - "-DCMAKE_TOOLCHAIN_FILE=/home/minikea/dev/NVEnc/build/meson-private/cmake_hdr10plus-rs/CMakeMesonToolchainFile.cmake"
- - "."
- -- Module search paths: ['/', '/opt', '/usr', '/usr/local']
- -- CMake root: /usr/share/cmake
- -- CMake architectures: ['libpyside6.cpython-314-x86_64-linux-gnu.so', 'libpyside6.cpython-314-x86_64-linux-gnu.so.6.11', 'libpyside6qml.cpython-314-x86_64-linux-gnu.so', 'libpyside6qml.cpython-314-x86_64-linux-gnu.so.6.11', 'libpyside6qml.cpython-314-x86_64-linux-gnu.so.6.11.1', 'libpytalloc-util.cpython-314-x86-64-linux-gnu.so', 'libpytalloc-util.cpython-314-x86-64-linux-gnu.so.2', 'libpytalloc-util.cpython-314-x86-64-linux-gnu.so.2.4.4', 'libshiboken6.cpython-314-x86_64-linux-gnu.so', 'libshiboken6.cpython-314-x86_64-linux-gnu.so.6.11', 'libshiboken6.cpython-314-x86_64-linux-gnu.so.6.11.1']
- -- CMake lib search paths: ['lib', 'lib32', 'lib64', 'libx32', 'share', '', 'lib/libpyside6.cpython-314-x86_64-linux-gnu.so', 'lib/libpyside6.cpython-314-x86_64-linux-gnu.so.6.11', 'lib/libpyside6qml.cpython-314-x86_64-linux-gnu.so', 'lib/libpyside6qml.cpython-314-x86_64-linux-gnu.so.6.11', 'lib/libpyside6qml.cpython-314-x86_64-linux-gnu.so.6.11.1', 'lib/libpytalloc-util.cpython-314-x86-64-linux-gnu.so', 'lib/libpytalloc-util.cpython-314-x86-64-linux-gnu.so.2', 'lib/libpytalloc-util.cpython-314-x86-64-linux-gnu.so.2.4.4', 'lib/libshiboken6.cpython-314-x86_64-linux-gnu.so', 'lib/libshiboken6.cpython-314-x86_64-linux-gnu.so.6.11', 'lib/libshiboken6.cpython-314-x86_64-linux-gnu.so.6.11.1']
- Preliminary CMake check failed. Aborting.
- Run-time dependency hdr10plus-rs found: NO (tried pkg-config and cmake)
- Running command: /usr/bin/env CARGO_HOME=/home/minikea/dev/NVEnc/.cargo_home CARGO=/usr/bin/cargo bash /home/minikea/dev/NVEnc/build_libhdr10plus.sh /home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus
- --- stdout ---
- libhdr10plus build script
- Source dir: /home/minikea/dev/NVEnc
- Install dir: /home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus
- Building libhdr10plus...
- Removing shared libraries (keeping static only)...
- libhdr10plus installed to: /home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus
- --- stderr ---
- note: link against the following native artifacts when linking against this static library. The order and any duplication can be significant on some platforms
- Finished `release` profile [optimized] target(s) in 0.04s
- Installing pkg-config file
- Installing header file
- Installing static library
- Installing shared library
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpt6u0qat0
- Code:
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpt6u0qat0/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpt6u0qat0/output.exe -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive /home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus/lib/libhdr10plus-rs.a -Wl,--allow-shlib-undefined` -> 0
- Library hdr10plus-rs found: YES
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpxyktcir7
- Code:
- #include <libhdr10plus-rs/hdr10plus.h>
- int main(void){ hdr10plus_rs_parse_json(nullptr); return 0; }
- -----------
- Command line: `g++-15 -I/home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus/include /home/minikea/dev/NVEnc/build/meson-private/tmpxyktcir7/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpxyktcir7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp5_hbef_7
- Code:
- #include <libavutil/channel_layout.h>
- int main(void) { AVChannelLayout ch_layout; return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp5_hbef_7/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp5_hbef_7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp2lzc9qex
- Code:
- #include <libavutil/frame.h>
- int main(void) { AVFrame *frame; frame->duration = 0; return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp2lzc9qex/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp2lzc9qex/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpbznx98wh
- Code:
- #include <libavcodec/codec_par.h>
- int main(void) { AVCodecParameters *codecpar; codecpar->coded_side_data = 0; return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpbznx98wh/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpbznx98wh/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive -std=c++17` -> 0
- Configuring rgy_config.h using configuration
- Running command: /usr/bin/sh -c 'cd "/home/minikea/dev/NVEnc" && git rev-list HEAD | wc -l'
- --- stdout ---
- 3587
- --- stderr ---
- Configuring rgy_rev.h using configuration
- Program objcopy found: YES (/usr/bin/objcopy)
- Program cp found: YES (/usr/bin/cp)
- Build targets in project: 10
- WARNING: Project specifies a minimum meson_version '>=0.61.0' but uses features which were added in newer versions:
- * 1.1: {'meson.options file'}
- nvencc 9.16
- CUDA
- CUDA version : 13.2
- CUDA path : /opt/cuda
- GPU targets : --generate-code arch=compute_75,code=[compute_75,sm_75] --generate-code arch=compute_86,code=[compute_86,sm_86] --generate-code arch=compute_120,code=[compute_120,sm_120]
- Optional Features
- VapourSynth : false
- AviSynth : true
- libass : true
- libplacebo : true
- libplacebo static : false
- VMAF : true
- VMAF static : false
- libvship : false
- Vulkan : false
- libdovi : true
- libhdr10plus : true
- User defined options
- buildtype : release
- cuda_ccbindir : /usr/bin/g++-15
- enable_vapoursynth: false
- prefix : /usr
- cuda enabled globally, disabling thin archives for build machine, since nvcc/nvlink cannot handle thin archives natively
- cuda enabled globally, disabling thin archives for host machine, since nvcc/nvlink cannot handle thin archives natively
- Found ninja-1.13.2 at /usr/bin/ninja
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive` -> 0
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive` -> 1
- stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- -----------
- Running compile:
- Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- -----------
- Command line: `g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive` -> 1
- stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- -----------
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #ifdef __has_include
- #if !__has_include("version")
- #error "Header 'version' could not be found"
- #endif
- #else
- #include <version>
- #endif
- Cached compiler stdout:
- Cached compiler stderr:
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- int main(void) {
- /* If it's not defined as a macro, try to use as a symbol */
- #ifndef _LIBCPP_VERSION
- _LIBCPP_VERSION;
- #endif
- return 0;
- }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
- /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
- 6 | _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Using cached compile:
- Cached command line: g++-15 /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp -o /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -U_FORTIFY_SOURCE -fpermissive
- Code:
- #include <version>
- using _LIBCPP_VERSION;
- int main(void) { return 0; }
- Cached compiler stdout:
- Cached compiler stderr:
- /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
- 3 | using _LIBCPP_VERSION;
- | ^~~~~~~~~~~~~~~
- Rewriting module 'cudart_static' to '['-cudart', 'static']'
Advertisement