Guest User

Untitled

a guest
May 27th, 2026
11
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 319.19 KB | None | 0 0
  1. Build started at 2026-05-27T21:16:35.481992
  2. Main binary: /usr/bin/python
  3. Build Options: -Dbuildtype=release -Dprefix=/usr -Dcuda_ccbindir=/usr/bin/g++-15 -Denable_vapoursynth=false
  4. Python system: Linux
  5. The Meson build system
  6. Version: 1.11.1
  7. Source dir: /home/minikea/dev/NVEnc
  8. Build dir: /home/minikea/dev/NVEnc/build
  9. Build type: native build
  10. Running command: /usr/bin/git describe --tags --abbrev=0
  11. --- stdout ---
  12. 9.16
  13.  
  14. --- stderr ---
  15.  
  16.  
  17. WARNING: Project targets '>=0.61.0' but uses feature introduced in '1.1': meson.options file. Use meson_options.txt instead
  18. Project name: nvencc
  19. Project version: 9.16
  20. -----------
  21. Detecting compiler via: `g++-15 --version` -> 0
  22. stdout:
  23. g++-15 (GCC) 15.2.1 20260506
  24. Copyright (C) 2025 Free Software Foundation, Inc.
  25. This is free software; see the source for copying conditions. There is NO
  26. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  27. -----------
  28. Running command: -cpp -x c++ -E -dM -
  29. -----
  30. -----------
  31. Detecting linker via: `g++-15 -Wl,--version` -> 0
  32. stdout:
  33. GNU ld (GNU Binutils) 2.46.0
  34. Copyright (C) 2026 Free Software Foundation, Inc.
  35. This program is free software; you may redistribute it under the terms of
  36. the GNU General Public License version 3 or (at your option) a later version.
  37. This program has absolutely no warranty.
  38. -----------
  39. stderr:
  40. collect2 version 15.2.1 20260506
  41. /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
  42. -----------
  43. 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
  44. Sanity check compile stdout:
  45.  
  46. -----
  47. Sanity check compile stderr:
  48.  
  49. -----
  50. Sanity check built target output for host machine cpp compiler
  51. -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe
  52. -----------
  53. Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe` -> 0
  54. -- stdout:
  55.  
  56. -- stderr:
  57.  
  58. -- returncode: 0
  59. C++ compiler for the host machine: g++-15 (gcc 15.2.1 "g++-15 (GCC) 15.2.1 20260506")
  60. C++ linker for the host machine: g++-15 ld.bfd 2.46.0
  61. -----------
  62. Detecting archiver via: `gcc-ar --version` -> 0
  63. stdout:
  64. GNU ar (GNU Binutils) 2.46.0
  65. Copyright (C) 2026 Free Software Foundation, Inc.
  66. This program is free software; you may redistribute it under the terms of
  67. the GNU General Public License version 3 or (at your option) any later version.
  68. This program has absolutely no warranty.
  69. -----------
  70. -----------
  71. Detecting compiler via: `nvcc --version` -> 0
  72. stdout:
  73. nvcc: NVIDIA (R) Cuda compiler driver
  74. Copyright (c) 2005-2026 NVIDIA Corporation
  75. Built on Thu_Mar_19_11:12:51_PM_PDT_2026
  76. Cuda compilation tools, release 13.2, V13.2.78
  77. Build cuda_13.2.r13.2/compiler.37668154_0
  78. -----------
  79. Running compile:
  80. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmphsn29c3l
  81. Code:
  82.  
  83. #include <cuda_runtime.h>
  84. #include <stdio.h>
  85.  
  86. __global__ void kernel (void) {}
  87.  
  88. int main(void){
  89. struct cudaDeviceProp prop;
  90. int count, i;
  91. cudaError_t ret = cudaGetDeviceCount(&count);
  92. if(ret != cudaSuccess){
  93. fprintf(stderr, "%d\n", (int)ret);
  94. }else{
  95. for(i=0;i<count;i++){
  96. if(cudaGetDeviceProperties(&prop, i) == cudaSuccess){
  97. fprintf(stdout, "%d.%d\n", prop.major, prop.minor);
  98. }
  99. }
  100. }
  101. fflush(stderr);
  102. fflush(stdout);
  103. return 0;
  104. }
  105.  
  106. -----------
  107. 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
  108. Program stdout:
  109.  
  110. 12.0
  111. 12.0
  112.  
  113. Program stderr:
  114.  
  115.  
  116. 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
  117. Sanity check compile stdout:
  118.  
  119. -----
  120. Sanity check compile stderr:
  121.  
  122. -----
  123. Sanity check built target output for host machine cuda compiler
  124. -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe
  125. -----------
  126. Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe` -> 0
  127. stdout:
  128. 12.0
  129. 12.0
  130. -----------
  131. -- stdout:
  132. 12.0
  133. 12.0
  134.  
  135. -- stderr:
  136.  
  137. -- returncode: 0
  138. added cuda as language, disabling thin archives for host machine, since nvcc/nvlink cannot handle thin archives natively
  139. Cuda compiler for the host machine: nvcc (nvcc 13.2.78)
  140. Cuda linker for the host machine: nvcc nvlink 13.2.78
  141. -----------
  142. Detecting compiler via: `g++-15 --version` -> 0
  143. stdout:
  144. g++-15 (GCC) 15.2.1 20260506
  145. Copyright (C) 2025 Free Software Foundation, Inc.
  146. This is free software; see the source for copying conditions. There is NO
  147. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  148. -----------
  149. Running command: -cpp -x c++ -E -dM -
  150. -----
  151. -----------
  152. Detecting linker via: `g++-15 -Wl,--version` -> 0
  153. stdout:
  154. GNU ld (GNU Binutils) 2.46.0
  155. Copyright (C) 2026 Free Software Foundation, Inc.
  156. This program is free software; you may redistribute it under the terms of
  157. the GNU General Public License version 3 or (at your option) a later version.
  158. This program has absolutely no warranty.
  159. -----------
  160. stderr:
  161. collect2 version 15.2.1 20260506
  162. /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
  163. -----------
  164. 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
  165. Sanity check compile stdout:
  166.  
  167. -----
  168. Sanity check compile stderr:
  169.  
  170. -----
  171. Sanity check built target output for build machine cpp compiler
  172. -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe
  173. -----------
  174. Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cpp.exe` -> 0
  175. -- stdout:
  176.  
  177. -- stderr:
  178.  
  179. -- returncode: 0
  180. C++ compiler for the build machine: g++-15 (gcc 15.2.1 "g++-15 (GCC) 15.2.1 20260506")
  181. C++ linker for the build machine: g++-15 ld.bfd 2.46.0
  182. -----------
  183. Detecting compiler via: `nvcc --version` -> 0
  184. stdout:
  185. nvcc: NVIDIA (R) Cuda compiler driver
  186. Copyright (c) 2005-2026 NVIDIA Corporation
  187. Built on Thu_Mar_19_11:12:51_PM_PDT_2026
  188. Cuda compilation tools, release 13.2, V13.2.78
  189. Build cuda_13.2.r13.2/compiler.37668154_0
  190. -----------
  191. Running compile:
  192. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp1twq8_7r
  193. Code:
  194.  
  195. #include <cuda_runtime.h>
  196. #include <stdio.h>
  197.  
  198. __global__ void kernel (void) {}
  199.  
  200. int main(void){
  201. struct cudaDeviceProp prop;
  202. int count, i;
  203. cudaError_t ret = cudaGetDeviceCount(&count);
  204. if(ret != cudaSuccess){
  205. fprintf(stderr, "%d\n", (int)ret);
  206. }else{
  207. for(i=0;i<count;i++){
  208. if(cudaGetDeviceProperties(&prop, i) == cudaSuccess){
  209. fprintf(stdout, "%d.%d\n", prop.major, prop.minor);
  210. }
  211. }
  212. }
  213. fflush(stderr);
  214. fflush(stdout);
  215. return 0;
  216. }
  217.  
  218. -----------
  219. 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
  220. Program stdout:
  221.  
  222. 12.0
  223. 12.0
  224.  
  225. Program stderr:
  226.  
  227.  
  228. 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
  229. Sanity check compile stdout:
  230.  
  231. -----
  232. Sanity check compile stderr:
  233.  
  234. -----
  235. Sanity check built target output for build machine cuda compiler
  236. -- Running test binary command: /home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe
  237. -----------
  238. Sanity check: `/home/minikea/dev/NVEnc/build/meson-private/sanity_check_for_cuda.exe` -> 0
  239. stdout:
  240. 12.0
  241. 12.0
  242. -----------
  243. -- stdout:
  244. 12.0
  245. 12.0
  246.  
  247. -- stderr:
  248.  
  249. -- returncode: 0
  250. added cuda as language, disabling thin archives for build machine, since nvcc/nvlink cannot handle thin archives natively
  251. Cuda compiler for the build machine: nvcc (nvcc 13.2.78)
  252. Cuda linker for the build machine: nvcc nvlink 13.2.78
  253. Build machine cpu family: x86_64
  254. Build machine cpu: x86_64
  255. Host machine cpu family: x86_64
  256. Host machine cpu: x86_64
  257. Target machine cpu family: x86_64
  258. Target machine cpu: x86_64
  259. Running command: /usr/bin/sh -c 'echo $CUDA_PATH'
  260. --- stdout ---
  261. /opt/cuda
  262.  
  263. --- stderr ---
  264.  
  265.  
  266. Message: Using CUDA path: /opt/cuda
  267. Running command: /opt/cuda/bin/nvcc --version
  268. --- stdout ---
  269. nvcc: NVIDIA (R) Cuda compiler driver
  270. Copyright (c) 2005-2026 NVIDIA Corporation
  271. Built on Thu_Mar_19_11:12:51_PM_PDT_2026
  272. Cuda compilation tools, release 13.2, V13.2.78
  273. Build cuda_13.2.r13.2/compiler.37668154_0
  274.  
  275. --- stderr ---
  276.  
  277.  
  278. Running command: /usr/bin/sh -c 'echo "nvcc: NVIDIA (R) Cuda compiler driver
  279. Copyright (c) 2005-2026 NVIDIA Corporation
  280. Built on Thu_Mar_19_11:12:51_PM_PDT_2026
  281. Cuda compilation tools, release 13.2, V13.2.78
  282. Build cuda_13.2.r13.2/compiler.37668154_0
  283. " | grep -oP "release \K[0-9]+\.[0-9]+"'
  284. --- stdout ---
  285. 13.2
  286.  
  287. --- stderr ---
  288.  
  289.  
  290. Message: Detected CUDA version: 13.2
  291. 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]
  292. Run-time dependency threads found: YES
  293. Running compile:
  294. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp5n444a9d
  295. Code:
  296. int main(void) { return 0; }
  297.  
  298. -----------
  299. 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
  300. Library dl found: YES
  301. Default path env var: CUDA_PATH
  302. Could not read CUDA Toolkit's version file /opt/cuda/version.txt: [Errno 2] No such file or directory: '/opt/cuda/version.txt'
  303. Search paths: [('/opt/cuda', '13.2', True)]
  304. CUDA target resolved to "targets/x86_64-linux".
  305. CUDA library directory is /opt/cuda/targets/x86_64-linux/lib
  306. Running compile:
  307. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp1v1erpwz
  308. Code:
  309.  
  310. #include<stddef.h>
  311. #include<stdio.h>
  312. int main(void) {
  313. printf("%ld\n", (long)(sizeof(void *)));
  314. return 0;
  315. }
  316. -----------
  317. 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
  318. Program stdout:
  319.  
  320. 8
  321.  
  322. Program stderr:
  323.  
  324.  
  325. Running compile:
  326. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpe4wkc_ye
  327. Code:
  328. int main(void) { return 0; }
  329.  
  330. -----------
  331. 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
  332. Link args for CUDA module 'cudart_static' are ['/opt/cuda/targets/x86_64-linux/lib/libcudart_static.a']
  333. Run-time dependency CUDA (modules: cudart_static) for cpp found: YES 13.2 (/opt/cuda)
  334. 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
  335. Running compile:
  336. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpvu6tonnb
  337. Code:
  338.  
  339. -----------
  340. 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
  341. stdout:
  342. install: /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/
  343. 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/
  344. 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/
  345. -----------
  346. Running compile:
  347. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpdbp7fkpi
  348. Code:
  349. int main(void) { return 0; }
  350.  
  351. -----------
  352. 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
  353. Library cuda found: YES
  354. Running compile:
  355. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpg2me7gdr
  356. Code:
  357. int main(void) { return 0; }
  358.  
  359. -----------
  360. 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
  361. Library nppif_static found: YES
  362. Running compile:
  363. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpvo5j830y
  364. Code:
  365. int main(void) { return 0; }
  366.  
  367. -----------
  368. 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
  369. Library nppig_static found: YES
  370. Running compile:
  371. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpoluvjl6a
  372. Code:
  373. int main(void) { return 0; }
  374.  
  375. -----------
  376. 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
  377. Library nppc_static found: YES
  378. Running compile:
  379. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpddo4rsqn
  380. Code:
  381. int main(void) { return 0; }
  382.  
  383. -----------
  384. 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
  385. Library culibos found: YES
  386. Running compile:
  387. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmplgw2_2ww
  388. Code:
  389. int main(void) { return 0; }
  390.  
  391. -----------
  392. 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
  393. Library rt found: YES
  394. Pkg-config binary missing from cross or native file, or env var undefined.
  395. Trying a default Pkg-config fallback at pkg-config
  396. Found pkg-config: YES (/usr/bin/pkg-config) 2.5.1
  397. Determining dependency 'libavutil' with pkg-config executable '/usr/bin/pkg-config'
  398. env[PKG_CONFIG_PATH]:
  399. env[PKG_CONFIG]: /usr/bin/pkg-config
  400. -----------
  401. Called: `/usr/bin/pkg-config --modversion libavutil` -> 0
  402. stdout:
  403. 60.26.101
  404. -----------
  405. env[PKG_CONFIG_PATH]:
  406. env[PKG_CONFIG]: /usr/bin/pkg-config
  407. -----------
  408. Called: `/usr/bin/pkg-config --cflags libavutil` -> 0
  409. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  410. env[PKG_CONFIG_PATH]:
  411. env[PKG_CONFIG]: /usr/bin/pkg-config
  412. -----------
  413. Called: `/usr/bin/pkg-config --libs libavutil` -> 0
  414. stdout:
  415. -L/usr/lib -lavutil
  416. -----------
  417. env[PKG_CONFIG_PATH]:
  418. env[PKG_CONFIG]: /usr/bin/pkg-config
  419. -----------
  420. Called: `/usr/bin/pkg-config --libs libavutil` -> 0
  421. stdout:
  422. -lavutil
  423. -----------
  424. Run-time dependency libavutil found: YES 60.26.101
  425. Determining dependency 'libavcodec' with pkg-config executable '/usr/bin/pkg-config'
  426. env[PKG_CONFIG_PATH]:
  427. env[PKG_CONFIG]: /usr/bin/pkg-config
  428. -----------
  429. Called: `/usr/bin/pkg-config --modversion libavcodec` -> 0
  430. stdout:
  431. 62.28.101
  432. -----------
  433. env[PKG_CONFIG_PATH]:
  434. env[PKG_CONFIG]: /usr/bin/pkg-config
  435. -----------
  436. Called: `/usr/bin/pkg-config --cflags libavcodec` -> 0
  437. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  438. env[PKG_CONFIG_PATH]:
  439. env[PKG_CONFIG]: /usr/bin/pkg-config
  440. -----------
  441. Called: `/usr/bin/pkg-config --libs libavcodec` -> 0
  442. stdout:
  443. -L/usr/lib -lavcodec
  444. -----------
  445. env[PKG_CONFIG_PATH]:
  446. env[PKG_CONFIG]: /usr/bin/pkg-config
  447. -----------
  448. Called: `/usr/bin/pkg-config --libs libavcodec` -> 0
  449. stdout:
  450. -lavcodec
  451. -----------
  452. Run-time dependency libavcodec found: YES 62.28.101
  453. Determining dependency 'libavformat' with pkg-config executable '/usr/bin/pkg-config'
  454. env[PKG_CONFIG_PATH]:
  455. env[PKG_CONFIG]: /usr/bin/pkg-config
  456. -----------
  457. Called: `/usr/bin/pkg-config --modversion libavformat` -> 0
  458. stdout:
  459. 62.12.101
  460. -----------
  461. env[PKG_CONFIG_PATH]:
  462. env[PKG_CONFIG]: /usr/bin/pkg-config
  463. -----------
  464. Called: `/usr/bin/pkg-config --cflags libavformat` -> 0
  465. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  466. env[PKG_CONFIG_PATH]:
  467. env[PKG_CONFIG]: /usr/bin/pkg-config
  468. -----------
  469. Called: `/usr/bin/pkg-config --libs libavformat` -> 0
  470. stdout:
  471. -L/usr/lib -lavformat
  472. -----------
  473. env[PKG_CONFIG_PATH]:
  474. env[PKG_CONFIG]: /usr/bin/pkg-config
  475. -----------
  476. Called: `/usr/bin/pkg-config --libs libavformat` -> 0
  477. stdout:
  478. -lavformat
  479. -----------
  480. Run-time dependency libavformat found: YES 62.12.101
  481. Determining dependency 'libavfilter' with pkg-config executable '/usr/bin/pkg-config'
  482. env[PKG_CONFIG_PATH]:
  483. env[PKG_CONFIG]: /usr/bin/pkg-config
  484. -----------
  485. Called: `/usr/bin/pkg-config --modversion libavfilter` -> 0
  486. stdout:
  487. 11.14.101
  488. -----------
  489. env[PKG_CONFIG_PATH]:
  490. env[PKG_CONFIG]: /usr/bin/pkg-config
  491. -----------
  492. Called: `/usr/bin/pkg-config --cflags libavfilter` -> 0
  493. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  494. env[PKG_CONFIG_PATH]:
  495. env[PKG_CONFIG]: /usr/bin/pkg-config
  496. -----------
  497. Called: `/usr/bin/pkg-config --libs libavfilter` -> 0
  498. stdout:
  499. -L/usr/lib -lavfilter
  500. -----------
  501. env[PKG_CONFIG_PATH]:
  502. env[PKG_CONFIG]: /usr/bin/pkg-config
  503. -----------
  504. Called: `/usr/bin/pkg-config --libs libavfilter` -> 0
  505. stdout:
  506. -lavfilter
  507. -----------
  508. Run-time dependency libavfilter found: YES 11.14.101
  509. Determining dependency 'libavdevice' with pkg-config executable '/usr/bin/pkg-config'
  510. env[PKG_CONFIG_PATH]:
  511. env[PKG_CONFIG]: /usr/bin/pkg-config
  512. -----------
  513. Called: `/usr/bin/pkg-config --modversion libavdevice` -> 0
  514. stdout:
  515. 62.3.101
  516. -----------
  517. env[PKG_CONFIG_PATH]:
  518. env[PKG_CONFIG]: /usr/bin/pkg-config
  519. -----------
  520. Called: `/usr/bin/pkg-config --cflags libavdevice` -> 0
  521. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  522. env[PKG_CONFIG_PATH]:
  523. env[PKG_CONFIG]: /usr/bin/pkg-config
  524. -----------
  525. Called: `/usr/bin/pkg-config --libs libavdevice` -> 0
  526. stdout:
  527. -L/usr/lib -lavdevice
  528. -----------
  529. env[PKG_CONFIG_PATH]:
  530. env[PKG_CONFIG]: /usr/bin/pkg-config
  531. -----------
  532. Called: `/usr/bin/pkg-config --libs libavdevice` -> 0
  533. stdout:
  534. -lavdevice
  535. -----------
  536. Run-time dependency libavdevice found: YES 62.3.101
  537. Determining dependency 'libswresample' with pkg-config executable '/usr/bin/pkg-config'
  538. env[PKG_CONFIG_PATH]:
  539. env[PKG_CONFIG]: /usr/bin/pkg-config
  540. -----------
  541. Called: `/usr/bin/pkg-config --modversion libswresample` -> 0
  542. stdout:
  543. 6.3.101
  544. -----------
  545. env[PKG_CONFIG_PATH]:
  546. env[PKG_CONFIG]: /usr/bin/pkg-config
  547. -----------
  548. Called: `/usr/bin/pkg-config --cflags libswresample` -> 0
  549. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  550. env[PKG_CONFIG_PATH]:
  551. env[PKG_CONFIG]: /usr/bin/pkg-config
  552. -----------
  553. Called: `/usr/bin/pkg-config --libs libswresample` -> 0
  554. stdout:
  555. -L/usr/lib -lswresample
  556. -----------
  557. env[PKG_CONFIG_PATH]:
  558. env[PKG_CONFIG]: /usr/bin/pkg-config
  559. -----------
  560. Called: `/usr/bin/pkg-config --libs libswresample` -> 0
  561. stdout:
  562. -lswresample
  563. -----------
  564. Run-time dependency libswresample found: YES 6.3.101
  565. Determining dependency 'avisynth' with pkg-config executable '/usr/bin/pkg-config'
  566. env[PKG_CONFIG_PATH]:
  567. env[PKG_CONFIG]: /usr/bin/pkg-config
  568. -----------
  569. Called: `/usr/bin/pkg-config --modversion avisynth` -> 0
  570. stdout:
  571. 3.7.5
  572. -----------
  573. env[PKG_CONFIG_PATH]:
  574. env[PKG_CONFIG]: /usr/bin/pkg-config
  575. -----------
  576. Called: `/usr/bin/pkg-config --cflags avisynth` -> 0
  577. stdout:
  578. -I/usr/include/avisynth
  579. -----------
  580. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  581. env[PKG_CONFIG_PATH]:
  582. env[PKG_CONFIG]: /usr/bin/pkg-config
  583. -----------
  584. Called: `/usr/bin/pkg-config --libs avisynth` -> 0
  585. stdout:
  586. -L/usr/lib -lavisynth
  587. -----------
  588. env[PKG_CONFIG_PATH]:
  589. env[PKG_CONFIG]: /usr/bin/pkg-config
  590. -----------
  591. Called: `/usr/bin/pkg-config --libs avisynth` -> 0
  592. stdout:
  593. -lavisynth
  594. -----------
  595. Run-time dependency avisynth found: YES 3.7.5
  596. Running compile:
  597. Working directory: /tmp/tmp5mulvcwo
  598. Code:
  599. int i = static_cast<int>(0);
  600. -----------
  601. Command line: `g++-15 /tmp/tmp5mulvcwo/testfile.cpp -o /tmp/tmp5mulvcwo/output.obj -D_FILE_OFFSET_BITS=64 -c -std=c++17` -> 0
  602. Compiler accepts -std=c++17: YES
  603. Running compile:
  604. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpg5w4c06o
  605. Code:
  606.  
  607. #include "avisynth_c.h"
  608. int main(void) { return 0; }
  609.  
  610. -----------
  611. 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
  612. Determining dependency 'libass' with pkg-config executable '/usr/bin/pkg-config'
  613. env[PKG_CONFIG_PATH]:
  614. env[PKG_CONFIG]: /usr/bin/pkg-config
  615. -----------
  616. Called: `/usr/bin/pkg-config --modversion libass` -> 0
  617. stdout:
  618. 0.17.4
  619. -----------
  620. env[PKG_CONFIG_PATH]:
  621. env[PKG_CONFIG]: /usr/bin/pkg-config
  622. -----------
  623. Called: `/usr/bin/pkg-config --cflags libass` -> 0
  624. stdout:
  625. -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
  626. -----------
  627. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  628. env[PKG_CONFIG_PATH]:
  629. env[PKG_CONFIG]: /usr/bin/pkg-config
  630. -----------
  631. Called: `/usr/bin/pkg-config --libs libass` -> 0
  632. stdout:
  633. -L/usr/lib -lass
  634. -----------
  635. env[PKG_CONFIG_PATH]:
  636. env[PKG_CONFIG]: /usr/bin/pkg-config
  637. -----------
  638. Called: `/usr/bin/pkg-config --libs libass` -> 0
  639. stdout:
  640. -lass
  641. -----------
  642. Run-time dependency libass found: YES 0.17.4
  643. Determining dependency 'libvmaf' with pkg-config executable '/usr/bin/pkg-config'
  644. env[PKG_CONFIG_PATH]:
  645. env[PKG_CONFIG]: /usr/bin/pkg-config
  646. -----------
  647. Called: `/usr/bin/pkg-config --modversion libvmaf` -> 0
  648. stdout:
  649. 3.0.0
  650. -----------
  651. env[PKG_CONFIG_PATH]:
  652. env[PKG_CONFIG]: /usr/bin/pkg-config
  653. -----------
  654. Called: `/usr/bin/pkg-config --cflags libvmaf` -> 0
  655. stdout:
  656. -I/usr/include/libvmaf
  657. -----------
  658. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  659. env[PKG_CONFIG_PATH]:
  660. env[PKG_CONFIG]: /usr/bin/pkg-config
  661. -----------
  662. Called: `/usr/bin/pkg-config --libs libvmaf` -> 0
  663. stdout:
  664. -L/usr/lib -lvmaf
  665. -----------
  666. env[PKG_CONFIG_PATH]:
  667. env[PKG_CONFIG]: /usr/bin/pkg-config
  668. -----------
  669. Called: `/usr/bin/pkg-config --libs libvmaf` -> 0
  670. stdout:
  671. -lvmaf
  672. -----------
  673. Run-time dependency libvmaf found: YES 3.0.0
  674. env[PKG_CONFIG_PATH]:
  675. env[PKG_CONFIG]: /usr/bin/pkg-config
  676. -----------
  677. Called: `/usr/bin/pkg-config --variable=libdir libvmaf` -> 0
  678. stdout:
  679. /usr/lib
  680. -----------
  681. Got pkg-config variable libdir : /usr/lib
  682. Running compile:
  683. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8
  684. Code:
  685.  
  686. #include <libvmaf/libvmaf.h>
  687. int main(void) {
  688. VmafConfiguration cfg = { 0 };
  689. VmafPicture pic;
  690. (void)cfg;
  691. (void)pic;
  692. return 0;
  693. }
  694.  
  695. -----------
  696. 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
  697. stderr:
  698. /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8/testfile.cpp: In function 'int main()':
  699. /home/minikea/dev/NVEnc/build/meson-private/tmphhaefmp8/testfile.cpp:4:29: warning: invalid conversion from 'int' to 'VmafLogLevel' [-fpermissive]
  700. 4 | VmafConfiguration cfg = { 0 };
  701. | ^
  702. | |
  703. | int
  704. -----------
  705. Message: Using VMAF headers from libvmaf dependency
  706. Determining dependency 'vulkan' with pkg-config executable '/usr/bin/pkg-config'
  707. env[PKG_CONFIG_PATH]:
  708. env[PKG_CONFIG]: /usr/bin/pkg-config
  709. -----------
  710. Called: `/usr/bin/pkg-config --modversion vulkan` -> 0
  711. stdout:
  712. 1.4.350
  713. -----------
  714. env[PKG_CONFIG_PATH]:
  715. env[PKG_CONFIG]: /usr/bin/pkg-config
  716. -----------
  717. Called: `/usr/bin/pkg-config --cflags vulkan` -> 0
  718. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  719. env[PKG_CONFIG_PATH]:
  720. env[PKG_CONFIG]: /usr/bin/pkg-config
  721. -----------
  722. Called: `/usr/bin/pkg-config --libs vulkan` -> 0
  723. stdout:
  724. -L/usr/lib -lvulkan
  725. -----------
  726. env[PKG_CONFIG_PATH]:
  727. env[PKG_CONFIG]: /usr/bin/pkg-config
  728. -----------
  729. Called: `/usr/bin/pkg-config --libs vulkan` -> 0
  730. stdout:
  731. -lvulkan
  732. -----------
  733. Run-time dependency vulkan found: YES 1.4.350
  734. Running compile:
  735. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpubc5kjgh
  736. Code:
  737.  
  738. #include <vulkan/vulkan.h>
  739. int main(void) { return VK_HEADER_VERSION; }
  740.  
  741. -----------
  742. 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
  743. stderr:
  744. /home/minikea/dev/NVEnc/build/meson-private/tmpubc5kjgh/testfile.cpp:2:10: fatal error: vulkan/vulkan.h: No such file or directory
  745. 2 | #include <vulkan/vulkan.h>
  746. | ^~~~~~~~~~~~~~~~~
  747. compilation terminated.
  748. -----------
  749. Determining dependency 'libplacebo' with pkg-config executable '/usr/bin/pkg-config'
  750. env[PKG_CONFIG_PATH]:
  751. env[PKG_CONFIG]: /usr/bin/pkg-config
  752. -----------
  753. Called: `/usr/bin/pkg-config --modversion libplacebo` -> 0
  754. stdout:
  755. 7.360.1
  756. -----------
  757. env[PKG_CONFIG_PATH]:
  758. env[PKG_CONFIG]: /usr/bin/pkg-config
  759. -----------
  760. Called: `/usr/bin/pkg-config --cflags libplacebo` -> 0
  761. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  762. env[PKG_CONFIG_PATH]:
  763. env[PKG_CONFIG]: /usr/bin/pkg-config
  764. -----------
  765. Called: `/usr/bin/pkg-config --libs libplacebo` -> 0
  766. stdout:
  767. -L/usr/lib -lplacebo
  768. -----------
  769. env[PKG_CONFIG_PATH]:
  770. env[PKG_CONFIG]: /usr/bin/pkg-config
  771. -----------
  772. Called: `/usr/bin/pkg-config --libs libplacebo` -> 0
  773. stdout:
  774. -lplacebo
  775. -----------
  776. Run-time dependency libplacebo found: YES 7.360.1
  777. env[PKG_CONFIG_PATH]:
  778. env[PKG_CONFIG]: /usr/bin/pkg-config
  779. -----------
  780. Called: `/usr/bin/pkg-config --variable=libdir libplacebo` -> 0
  781. stdout:
  782. /usr/lib
  783. -----------
  784. Got pkg-config variable libdir : /usr/lib
  785. Running compile:
  786. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpiv3ihnq2
  787. Code:
  788.  
  789. #include <libplacebo/dispatch.h>
  790. #include <libplacebo/renderer.h>
  791. #include <libplacebo/shaders.h>
  792. int main(void) { return PL_API_VER; }
  793.  
  794. -----------
  795. 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
  796. Program cargo found: YES (/usr/bin/cargo)
  797. Running command: /usr/bin/env CARGO_HOME=/home/minikea/dev/NVEnc/.cargo_home /usr/bin/cargo cinstall --version
  798. --- stdout ---
  799. cargo-c 0.10.22+cargo-0.96.0
  800.  
  801. --- stderr ---
  802.  
  803.  
  804. Determining dependency 'dovi' with pkg-config executable '/usr/bin/pkg-config'
  805. env[PKG_CONFIG_PATH]:
  806. env[PKG_CONFIG]: /usr/bin/pkg-config
  807. -----------
  808. Called: `/usr/bin/pkg-config --modversion dovi` -> 0
  809. stdout:
  810. 3.3.2
  811. -----------
  812. env[PKG_CONFIG_PATH]:
  813. env[PKG_CONFIG]: /usr/bin/pkg-config
  814. -----------
  815. Called: `/usr/bin/pkg-config --cflags dovi` -> 0
  816. env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
  817. env[PKG_CONFIG_PATH]:
  818. env[PKG_CONFIG]: /usr/bin/pkg-config
  819. -----------
  820. Called: `/usr/bin/pkg-config --libs dovi` -> 0
  821. stdout:
  822. -L/usr/lib -ldovi
  823. -----------
  824. env[PKG_CONFIG_PATH]:
  825. env[PKG_CONFIG]: /usr/bin/pkg-config
  826. -----------
  827. Called: `/usr/bin/pkg-config --libs dovi` -> 0
  828. stdout:
  829. -ldovi
  830. -----------
  831. Run-time dependency dovi found: YES 3.3.2
  832. Determining dependency 'hdr10plus-rs' with pkg-config executable '/usr/bin/pkg-config'
  833. env[PKG_CONFIG_PATH]:
  834. env[PKG_CONFIG]: /usr/bin/pkg-config
  835. -----------
  836. Called: `/usr/bin/pkg-config --modversion hdr10plus-rs` -> 1
  837. stderr:
  838. Package hdr10plus-rs was not found in the pkg-config search path.
  839. Perhaps you should add the directory containing `hdr10plus-rs.pc'
  840. to the PKG_CONFIG_PATH environment variable
  841. Package 'hdr10plus-rs' not found
  842. -----------
  843. CMake binary for host machine is not cached
  844. CMake binary missing from cross or native file, or env var undefined.
  845. Trying a default CMake fallback at cmake
  846. Found CMake: /usr/bin/cmake (4.3.2)
  847. Extracting basic cmake information
  848. CMake Toolchain: Calling CMake once to generate the compiler state
  849. Calling CMake (['/usr/bin/cmake']) in /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__ with:
  850. - "--trace-expand"
  851. - "--trace-format=json-v1"
  852. - "--no-warn-unused-cli"
  853. - "--trace-redirect=cmake_trace.txt"
  854. - "-G"
  855. - "Ninja"
  856. - "-DCMAKE_TOOLCHAIN_FILE=/home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
  857. - "."
  858. CMake trace warning: add_executable() non imported executables are not supported
  859. CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-JdcJH4/CMakeLists.txt:23 add_executable(['cmTC_53605'])
  860. CMake trace warning: target_link_libraries() TARGET cmTC_53605 not found
  861. CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-JdcJH4/CMakeLists.txt:29 target_link_libraries(['cmTC_53605', ''])
  862. CMake trace warning: add_executable() non imported executables are not supported
  863. CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-KYZrdc/CMakeLists.txt:27 add_executable(['cmTC_522dc'])
  864. CMake trace warning: target_link_libraries() TARGET cmTC_522dc not found
  865. CMake TRACE: /home/minikea/dev/NVEnc/build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-KYZrdc/CMakeLists.txt:33 target_link_libraries(['cmTC_522dc', ''])
  866. Try CMake generator: auto
  867. Calling CMake (['/usr/bin/cmake']) in /home/minikea/dev/NVEnc/build/meson-private/cmake_hdr10plus-rs with:
  868. - "--trace-expand"
  869. - "--trace-format=json-v1"
  870. - "--no-warn-unused-cli"
  871. - "--trace-redirect=cmake_trace.txt"
  872. - "-DCMAKE_TOOLCHAIN_FILE=/home/minikea/dev/NVEnc/build/meson-private/cmake_hdr10plus-rs/CMakeMesonToolchainFile.cmake"
  873. - "."
  874. -- Module search paths: ['/', '/opt', '/usr', '/usr/local']
  875. -- CMake root: /usr/share/cmake
  876. -- 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']
  877. -- 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']
  878. Preliminary CMake check failed. Aborting.
  879. Run-time dependency hdr10plus-rs found: NO (tried pkg-config and cmake)
  880. 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
  881. --- stdout ---
  882. libhdr10plus build script
  883. Source dir: /home/minikea/dev/NVEnc
  884. Install dir: /home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus
  885. Building libhdr10plus...
  886. Removing shared libraries (keeping static only)...
  887. libhdr10plus installed to: /home/minikea/dev/NVEnc/build/rust_libs/libhdr10plus
  888.  
  889. --- stderr ---
  890. note: link against the following native artifacts when linking against this static library. The order and any duplication can be significant on some platforms
  891.  
  892. Finished `release` profile [optimized] target(s) in 0.04s
  893. Installing pkg-config file
  894. Installing header file
  895. Installing static library
  896. Installing shared library
  897.  
  898.  
  899. Running compile:
  900. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpt6u0qat0
  901. Code:
  902. int main(void) { return 0; }
  903.  
  904. -----------
  905. 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
  906. Library hdr10plus-rs found: YES
  907. Running compile:
  908. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpxyktcir7
  909. Code:
  910. #include <libhdr10plus-rs/hdr10plus.h>
  911. int main(void){ hdr10plus_rs_parse_json(nullptr); return 0; }
  912. -----------
  913. 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
  914. Running compile:
  915. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp5_hbef_7
  916. Code:
  917.  
  918. #include <libavutil/channel_layout.h>
  919. int main(void) { AVChannelLayout ch_layout; return 0; }
  920.  
  921. -----------
  922. 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
  923. Running compile:
  924. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp2lzc9qex
  925. Code:
  926.  
  927. #include <libavutil/frame.h>
  928. int main(void) { AVFrame *frame; frame->duration = 0; return 0; }
  929.  
  930. -----------
  931. 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
  932. Running compile:
  933. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpbznx98wh
  934. Code:
  935.  
  936. #include <libavcodec/codec_par.h>
  937. int main(void) { AVCodecParameters *codecpar; codecpar->coded_side_data = 0; return 0; }
  938.  
  939. -----------
  940. 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
  941. Configuring rgy_config.h using configuration
  942. Running command: /usr/bin/sh -c 'cd "/home/minikea/dev/NVEnc" && git rev-list HEAD | wc -l'
  943. --- stdout ---
  944. 3587
  945.  
  946. --- stderr ---
  947.  
  948.  
  949. Configuring rgy_rev.h using configuration
  950. Program objcopy found: YES (/usr/bin/objcopy)
  951. Program cp found: YES (/usr/bin/cp)
  952. Build targets in project: 10
  953. WARNING: Project specifies a minimum meson_version '>=0.61.0' but uses features which were added in newer versions:
  954. * 1.1: {'meson.options file'}
  955.  
  956. nvencc 9.16
  957.  
  958. CUDA
  959. CUDA version : 13.2
  960. CUDA path : /opt/cuda
  961. 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]
  962.  
  963. Optional Features
  964. VapourSynth : false
  965. AviSynth : true
  966. libass : true
  967. libplacebo : true
  968. libplacebo static : false
  969. VMAF : true
  970. VMAF static : false
  971. libvship : false
  972. Vulkan : false
  973. libdovi : true
  974. libhdr10plus : true
  975.  
  976. User defined options
  977. buildtype : release
  978. cuda_ccbindir : /usr/bin/g++-15
  979. enable_vapoursynth: false
  980. prefix : /usr
  981.  
  982. cuda enabled globally, disabling thin archives for build machine, since nvcc/nvlink cannot handle thin archives natively
  983. cuda enabled globally, disabling thin archives for host machine, since nvcc/nvlink cannot handle thin archives natively
  984. Found ninja-1.13.2 at /usr/bin/ninja
  985. Running compile:
  986. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpayyl2zwo
  987. Code:
  988.  
  989. #ifdef __has_include
  990. #if !__has_include("version")
  991. #error "Header 'version' could not be found"
  992. #endif
  993. #else
  994. #include <version>
  995. #endif
  996. -----------
  997. 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
  998. Running compile:
  999. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr
  1000. Code:
  1001.  
  1002. #include <version>
  1003. int main(void) {
  1004. /* If it's not defined as a macro, try to use as a symbol */
  1005. #ifndef _LIBCPP_VERSION
  1006. _LIBCPP_VERSION;
  1007. #endif
  1008. return 0;
  1009. }
  1010. -----------
  1011. 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
  1012. stderr:
  1013. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1014. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1015. 6 | _LIBCPP_VERSION;
  1016. | ^~~~~~~~~~~~~~~
  1017. -----------
  1018. Running compile:
  1019. Working directory: /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx
  1020. Code:
  1021.  
  1022. #include <version>
  1023. using _LIBCPP_VERSION;
  1024. int main(void) { return 0; }
  1025. -----------
  1026. 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
  1027. stderr:
  1028. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1029. 3 | using _LIBCPP_VERSION;
  1030. | ^~~~~~~~~~~~~~~
  1031. -----------
  1032. Using cached compile:
  1033. 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
  1034.  
  1035. Code:
  1036.  
  1037. #ifdef __has_include
  1038. #if !__has_include("version")
  1039. #error "Header 'version' could not be found"
  1040. #endif
  1041. #else
  1042. #include <version>
  1043. #endif
  1044. Cached compiler stdout:
  1045.  
  1046. Cached compiler stderr:
  1047.  
  1048. Using cached compile:
  1049. 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
  1050.  
  1051. Code:
  1052.  
  1053. #include <version>
  1054. int main(void) {
  1055. /* If it's not defined as a macro, try to use as a symbol */
  1056. #ifndef _LIBCPP_VERSION
  1057. _LIBCPP_VERSION;
  1058. #endif
  1059. return 0;
  1060. }
  1061. Cached compiler stdout:
  1062.  
  1063. Cached compiler stderr:
  1064. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1065. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1066. 6 | _LIBCPP_VERSION;
  1067. | ^~~~~~~~~~~~~~~
  1068.  
  1069. Using cached compile:
  1070. 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
  1071.  
  1072. Code:
  1073.  
  1074. #include <version>
  1075. using _LIBCPP_VERSION;
  1076. int main(void) { return 0; }
  1077. Cached compiler stdout:
  1078.  
  1079. Cached compiler stderr:
  1080. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1081. 3 | using _LIBCPP_VERSION;
  1082. | ^~~~~~~~~~~~~~~
  1083.  
  1084. Using cached compile:
  1085. 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
  1086.  
  1087. Code:
  1088.  
  1089. #ifdef __has_include
  1090. #if !__has_include("version")
  1091. #error "Header 'version' could not be found"
  1092. #endif
  1093. #else
  1094. #include <version>
  1095. #endif
  1096. Cached compiler stdout:
  1097.  
  1098. Cached compiler stderr:
  1099.  
  1100. Using cached compile:
  1101. 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
  1102.  
  1103. Code:
  1104.  
  1105. #include <version>
  1106. int main(void) {
  1107. /* If it's not defined as a macro, try to use as a symbol */
  1108. #ifndef _LIBCPP_VERSION
  1109. _LIBCPP_VERSION;
  1110. #endif
  1111. return 0;
  1112. }
  1113. Cached compiler stdout:
  1114.  
  1115. Cached compiler stderr:
  1116. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1117. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1118. 6 | _LIBCPP_VERSION;
  1119. | ^~~~~~~~~~~~~~~
  1120.  
  1121. Using cached compile:
  1122. 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
  1123.  
  1124. Code:
  1125.  
  1126. #include <version>
  1127. using _LIBCPP_VERSION;
  1128. int main(void) { return 0; }
  1129. Cached compiler stdout:
  1130.  
  1131. Cached compiler stderr:
  1132. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1133. 3 | using _LIBCPP_VERSION;
  1134. | ^~~~~~~~~~~~~~~
  1135.  
  1136. Using cached compile:
  1137. 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
  1138.  
  1139. Code:
  1140.  
  1141. #ifdef __has_include
  1142. #if !__has_include("version")
  1143. #error "Header 'version' could not be found"
  1144. #endif
  1145. #else
  1146. #include <version>
  1147. #endif
  1148. Cached compiler stdout:
  1149.  
  1150. Cached compiler stderr:
  1151.  
  1152. Using cached compile:
  1153. 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
  1154.  
  1155. Code:
  1156.  
  1157. #include <version>
  1158. int main(void) {
  1159. /* If it's not defined as a macro, try to use as a symbol */
  1160. #ifndef _LIBCPP_VERSION
  1161. _LIBCPP_VERSION;
  1162. #endif
  1163. return 0;
  1164. }
  1165. Cached compiler stdout:
  1166.  
  1167. Cached compiler stderr:
  1168. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1169. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1170. 6 | _LIBCPP_VERSION;
  1171. | ^~~~~~~~~~~~~~~
  1172.  
  1173. Using cached compile:
  1174. 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
  1175.  
  1176. Code:
  1177.  
  1178. #include <version>
  1179. using _LIBCPP_VERSION;
  1180. int main(void) { return 0; }
  1181. Cached compiler stdout:
  1182.  
  1183. Cached compiler stderr:
  1184. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1185. 3 | using _LIBCPP_VERSION;
  1186. | ^~~~~~~~~~~~~~~
  1187.  
  1188. Using cached compile:
  1189. 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
  1190.  
  1191. Code:
  1192.  
  1193. #ifdef __has_include
  1194. #if !__has_include("version")
  1195. #error "Header 'version' could not be found"
  1196. #endif
  1197. #else
  1198. #include <version>
  1199. #endif
  1200. Cached compiler stdout:
  1201.  
  1202. Cached compiler stderr:
  1203.  
  1204. Using cached compile:
  1205. 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
  1206.  
  1207. Code:
  1208.  
  1209. #include <version>
  1210. int main(void) {
  1211. /* If it's not defined as a macro, try to use as a symbol */
  1212. #ifndef _LIBCPP_VERSION
  1213. _LIBCPP_VERSION;
  1214. #endif
  1215. return 0;
  1216. }
  1217. Cached compiler stdout:
  1218.  
  1219. Cached compiler stderr:
  1220. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1221. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1222. 6 | _LIBCPP_VERSION;
  1223. | ^~~~~~~~~~~~~~~
  1224.  
  1225. Using cached compile:
  1226. 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
  1227.  
  1228. Code:
  1229.  
  1230. #include <version>
  1231. using _LIBCPP_VERSION;
  1232. int main(void) { return 0; }
  1233. Cached compiler stdout:
  1234.  
  1235. Cached compiler stderr:
  1236. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1237. 3 | using _LIBCPP_VERSION;
  1238. | ^~~~~~~~~~~~~~~
  1239.  
  1240. Using cached compile:
  1241. 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
  1242.  
  1243. Code:
  1244.  
  1245. #ifdef __has_include
  1246. #if !__has_include("version")
  1247. #error "Header 'version' could not be found"
  1248. #endif
  1249. #else
  1250. #include <version>
  1251. #endif
  1252. Cached compiler stdout:
  1253.  
  1254. Cached compiler stderr:
  1255.  
  1256. Using cached compile:
  1257. 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
  1258.  
  1259. Code:
  1260.  
  1261. #include <version>
  1262. int main(void) {
  1263. /* If it's not defined as a macro, try to use as a symbol */
  1264. #ifndef _LIBCPP_VERSION
  1265. _LIBCPP_VERSION;
  1266. #endif
  1267. return 0;
  1268. }
  1269. Cached compiler stdout:
  1270.  
  1271. Cached compiler stderr:
  1272. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1273. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1274. 6 | _LIBCPP_VERSION;
  1275. | ^~~~~~~~~~~~~~~
  1276.  
  1277. Using cached compile:
  1278. 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
  1279.  
  1280. Code:
  1281.  
  1282. #include <version>
  1283. using _LIBCPP_VERSION;
  1284. int main(void) { return 0; }
  1285. Cached compiler stdout:
  1286.  
  1287. Cached compiler stderr:
  1288. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1289. 3 | using _LIBCPP_VERSION;
  1290. | ^~~~~~~~~~~~~~~
  1291.  
  1292. Using cached compile:
  1293. 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
  1294.  
  1295. Code:
  1296.  
  1297. #ifdef __has_include
  1298. #if !__has_include("version")
  1299. #error "Header 'version' could not be found"
  1300. #endif
  1301. #else
  1302. #include <version>
  1303. #endif
  1304. Cached compiler stdout:
  1305.  
  1306. Cached compiler stderr:
  1307.  
  1308. Using cached compile:
  1309. 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
  1310.  
  1311. Code:
  1312.  
  1313. #include <version>
  1314. int main(void) {
  1315. /* If it's not defined as a macro, try to use as a symbol */
  1316. #ifndef _LIBCPP_VERSION
  1317. _LIBCPP_VERSION;
  1318. #endif
  1319. return 0;
  1320. }
  1321. Cached compiler stdout:
  1322.  
  1323. Cached compiler stderr:
  1324. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1325. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1326. 6 | _LIBCPP_VERSION;
  1327. | ^~~~~~~~~~~~~~~
  1328.  
  1329. Using cached compile:
  1330. 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
  1331.  
  1332. Code:
  1333.  
  1334. #include <version>
  1335. using _LIBCPP_VERSION;
  1336. int main(void) { return 0; }
  1337. Cached compiler stdout:
  1338.  
  1339. Cached compiler stderr:
  1340. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1341. 3 | using _LIBCPP_VERSION;
  1342. | ^~~~~~~~~~~~~~~
  1343.  
  1344. Using cached compile:
  1345. 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
  1346.  
  1347. Code:
  1348.  
  1349. #ifdef __has_include
  1350. #if !__has_include("version")
  1351. #error "Header 'version' could not be found"
  1352. #endif
  1353. #else
  1354. #include <version>
  1355. #endif
  1356. Cached compiler stdout:
  1357.  
  1358. Cached compiler stderr:
  1359.  
  1360. Using cached compile:
  1361. 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
  1362.  
  1363. Code:
  1364.  
  1365. #include <version>
  1366. int main(void) {
  1367. /* If it's not defined as a macro, try to use as a symbol */
  1368. #ifndef _LIBCPP_VERSION
  1369. _LIBCPP_VERSION;
  1370. #endif
  1371. return 0;
  1372. }
  1373. Cached compiler stdout:
  1374.  
  1375. Cached compiler stderr:
  1376. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1377. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1378. 6 | _LIBCPP_VERSION;
  1379. | ^~~~~~~~~~~~~~~
  1380.  
  1381. Using cached compile:
  1382. 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
  1383.  
  1384. Code:
  1385.  
  1386. #include <version>
  1387. using _LIBCPP_VERSION;
  1388. int main(void) { return 0; }
  1389. Cached compiler stdout:
  1390.  
  1391. Cached compiler stderr:
  1392. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1393. 3 | using _LIBCPP_VERSION;
  1394. | ^~~~~~~~~~~~~~~
  1395.  
  1396. Using cached compile:
  1397. 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
  1398.  
  1399. Code:
  1400.  
  1401. #ifdef __has_include
  1402. #if !__has_include("version")
  1403. #error "Header 'version' could not be found"
  1404. #endif
  1405. #else
  1406. #include <version>
  1407. #endif
  1408. Cached compiler stdout:
  1409.  
  1410. Cached compiler stderr:
  1411.  
  1412. Using cached compile:
  1413. 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
  1414.  
  1415. Code:
  1416.  
  1417. #include <version>
  1418. int main(void) {
  1419. /* If it's not defined as a macro, try to use as a symbol */
  1420. #ifndef _LIBCPP_VERSION
  1421. _LIBCPP_VERSION;
  1422. #endif
  1423. return 0;
  1424. }
  1425. Cached compiler stdout:
  1426.  
  1427. Cached compiler stderr:
  1428. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1429. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1430. 6 | _LIBCPP_VERSION;
  1431. | ^~~~~~~~~~~~~~~
  1432.  
  1433. Using cached compile:
  1434. 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
  1435.  
  1436. Code:
  1437.  
  1438. #include <version>
  1439. using _LIBCPP_VERSION;
  1440. int main(void) { return 0; }
  1441. Cached compiler stdout:
  1442.  
  1443. Cached compiler stderr:
  1444. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1445. 3 | using _LIBCPP_VERSION;
  1446. | ^~~~~~~~~~~~~~~
  1447.  
  1448. Using cached compile:
  1449. 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
  1450.  
  1451. Code:
  1452.  
  1453. #ifdef __has_include
  1454. #if !__has_include("version")
  1455. #error "Header 'version' could not be found"
  1456. #endif
  1457. #else
  1458. #include <version>
  1459. #endif
  1460. Cached compiler stdout:
  1461.  
  1462. Cached compiler stderr:
  1463.  
  1464. Using cached compile:
  1465. 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
  1466.  
  1467. Code:
  1468.  
  1469. #include <version>
  1470. int main(void) {
  1471. /* If it's not defined as a macro, try to use as a symbol */
  1472. #ifndef _LIBCPP_VERSION
  1473. _LIBCPP_VERSION;
  1474. #endif
  1475. return 0;
  1476. }
  1477. Cached compiler stdout:
  1478.  
  1479. Cached compiler stderr:
  1480. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1481. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1482. 6 | _LIBCPP_VERSION;
  1483. | ^~~~~~~~~~~~~~~
  1484.  
  1485. Using cached compile:
  1486. 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
  1487.  
  1488. Code:
  1489.  
  1490. #include <version>
  1491. using _LIBCPP_VERSION;
  1492. int main(void) { return 0; }
  1493. Cached compiler stdout:
  1494.  
  1495. Cached compiler stderr:
  1496. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1497. 3 | using _LIBCPP_VERSION;
  1498. | ^~~~~~~~~~~~~~~
  1499.  
  1500. Using cached compile:
  1501. 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
  1502.  
  1503. Code:
  1504.  
  1505. #ifdef __has_include
  1506. #if !__has_include("version")
  1507. #error "Header 'version' could not be found"
  1508. #endif
  1509. #else
  1510. #include <version>
  1511. #endif
  1512. Cached compiler stdout:
  1513.  
  1514. Cached compiler stderr:
  1515.  
  1516. Using cached compile:
  1517. 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
  1518.  
  1519. Code:
  1520.  
  1521. #include <version>
  1522. int main(void) {
  1523. /* If it's not defined as a macro, try to use as a symbol */
  1524. #ifndef _LIBCPP_VERSION
  1525. _LIBCPP_VERSION;
  1526. #endif
  1527. return 0;
  1528. }
  1529. Cached compiler stdout:
  1530.  
  1531. Cached compiler stderr:
  1532. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1533. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1534. 6 | _LIBCPP_VERSION;
  1535. | ^~~~~~~~~~~~~~~
  1536.  
  1537. Using cached compile:
  1538. 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
  1539.  
  1540. Code:
  1541.  
  1542. #include <version>
  1543. using _LIBCPP_VERSION;
  1544. int main(void) { return 0; }
  1545. Cached compiler stdout:
  1546.  
  1547. Cached compiler stderr:
  1548. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1549. 3 | using _LIBCPP_VERSION;
  1550. | ^~~~~~~~~~~~~~~
  1551.  
  1552. Using cached compile:
  1553. 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
  1554.  
  1555. Code:
  1556.  
  1557. #ifdef __has_include
  1558. #if !__has_include("version")
  1559. #error "Header 'version' could not be found"
  1560. #endif
  1561. #else
  1562. #include <version>
  1563. #endif
  1564. Cached compiler stdout:
  1565.  
  1566. Cached compiler stderr:
  1567.  
  1568. Using cached compile:
  1569. 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
  1570.  
  1571. Code:
  1572.  
  1573. #include <version>
  1574. int main(void) {
  1575. /* If it's not defined as a macro, try to use as a symbol */
  1576. #ifndef _LIBCPP_VERSION
  1577. _LIBCPP_VERSION;
  1578. #endif
  1579. return 0;
  1580. }
  1581. Cached compiler stdout:
  1582.  
  1583. Cached compiler stderr:
  1584. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1585. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1586. 6 | _LIBCPP_VERSION;
  1587. | ^~~~~~~~~~~~~~~
  1588.  
  1589. Using cached compile:
  1590. 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
  1591.  
  1592. Code:
  1593.  
  1594. #include <version>
  1595. using _LIBCPP_VERSION;
  1596. int main(void) { return 0; }
  1597. Cached compiler stdout:
  1598.  
  1599. Cached compiler stderr:
  1600. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1601. 3 | using _LIBCPP_VERSION;
  1602. | ^~~~~~~~~~~~~~~
  1603.  
  1604. Using cached compile:
  1605. 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
  1606.  
  1607. Code:
  1608.  
  1609. #ifdef __has_include
  1610. #if !__has_include("version")
  1611. #error "Header 'version' could not be found"
  1612. #endif
  1613. #else
  1614. #include <version>
  1615. #endif
  1616. Cached compiler stdout:
  1617.  
  1618. Cached compiler stderr:
  1619.  
  1620. Using cached compile:
  1621. 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
  1622.  
  1623. Code:
  1624.  
  1625. #include <version>
  1626. int main(void) {
  1627. /* If it's not defined as a macro, try to use as a symbol */
  1628. #ifndef _LIBCPP_VERSION
  1629. _LIBCPP_VERSION;
  1630. #endif
  1631. return 0;
  1632. }
  1633. Cached compiler stdout:
  1634.  
  1635. Cached compiler stderr:
  1636. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1637. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1638. 6 | _LIBCPP_VERSION;
  1639. | ^~~~~~~~~~~~~~~
  1640.  
  1641. Using cached compile:
  1642. 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
  1643.  
  1644. Code:
  1645.  
  1646. #include <version>
  1647. using _LIBCPP_VERSION;
  1648. int main(void) { return 0; }
  1649. Cached compiler stdout:
  1650.  
  1651. Cached compiler stderr:
  1652. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1653. 3 | using _LIBCPP_VERSION;
  1654. | ^~~~~~~~~~~~~~~
  1655.  
  1656. Using cached compile:
  1657. 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
  1658.  
  1659. Code:
  1660.  
  1661. #ifdef __has_include
  1662. #if !__has_include("version")
  1663. #error "Header 'version' could not be found"
  1664. #endif
  1665. #else
  1666. #include <version>
  1667. #endif
  1668. Cached compiler stdout:
  1669.  
  1670. Cached compiler stderr:
  1671.  
  1672. Using cached compile:
  1673. 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
  1674.  
  1675. Code:
  1676.  
  1677. #include <version>
  1678. int main(void) {
  1679. /* If it's not defined as a macro, try to use as a symbol */
  1680. #ifndef _LIBCPP_VERSION
  1681. _LIBCPP_VERSION;
  1682. #endif
  1683. return 0;
  1684. }
  1685. Cached compiler stdout:
  1686.  
  1687. Cached compiler stderr:
  1688. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1689. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1690. 6 | _LIBCPP_VERSION;
  1691. | ^~~~~~~~~~~~~~~
  1692.  
  1693. Using cached compile:
  1694. 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
  1695.  
  1696. Code:
  1697.  
  1698. #include <version>
  1699. using _LIBCPP_VERSION;
  1700. int main(void) { return 0; }
  1701. Cached compiler stdout:
  1702.  
  1703. Cached compiler stderr:
  1704. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1705. 3 | using _LIBCPP_VERSION;
  1706. | ^~~~~~~~~~~~~~~
  1707.  
  1708. Using cached compile:
  1709. 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
  1710.  
  1711. Code:
  1712.  
  1713. #ifdef __has_include
  1714. #if !__has_include("version")
  1715. #error "Header 'version' could not be found"
  1716. #endif
  1717. #else
  1718. #include <version>
  1719. #endif
  1720. Cached compiler stdout:
  1721.  
  1722. Cached compiler stderr:
  1723.  
  1724. Using cached compile:
  1725. 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
  1726.  
  1727. Code:
  1728.  
  1729. #include <version>
  1730. int main(void) {
  1731. /* If it's not defined as a macro, try to use as a symbol */
  1732. #ifndef _LIBCPP_VERSION
  1733. _LIBCPP_VERSION;
  1734. #endif
  1735. return 0;
  1736. }
  1737. Cached compiler stdout:
  1738.  
  1739. Cached compiler stderr:
  1740. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1741. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1742. 6 | _LIBCPP_VERSION;
  1743. | ^~~~~~~~~~~~~~~
  1744.  
  1745. Using cached compile:
  1746. 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
  1747.  
  1748. Code:
  1749.  
  1750. #include <version>
  1751. using _LIBCPP_VERSION;
  1752. int main(void) { return 0; }
  1753. Cached compiler stdout:
  1754.  
  1755. Cached compiler stderr:
  1756. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1757. 3 | using _LIBCPP_VERSION;
  1758. | ^~~~~~~~~~~~~~~
  1759.  
  1760. Using cached compile:
  1761. 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
  1762.  
  1763. Code:
  1764.  
  1765. #ifdef __has_include
  1766. #if !__has_include("version")
  1767. #error "Header 'version' could not be found"
  1768. #endif
  1769. #else
  1770. #include <version>
  1771. #endif
  1772. Cached compiler stdout:
  1773.  
  1774. Cached compiler stderr:
  1775.  
  1776. Using cached compile:
  1777. 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
  1778.  
  1779. Code:
  1780.  
  1781. #include <version>
  1782. int main(void) {
  1783. /* If it's not defined as a macro, try to use as a symbol */
  1784. #ifndef _LIBCPP_VERSION
  1785. _LIBCPP_VERSION;
  1786. #endif
  1787. return 0;
  1788. }
  1789. Cached compiler stdout:
  1790.  
  1791. Cached compiler stderr:
  1792. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1793. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1794. 6 | _LIBCPP_VERSION;
  1795. | ^~~~~~~~~~~~~~~
  1796.  
  1797. Using cached compile:
  1798. 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
  1799.  
  1800. Code:
  1801.  
  1802. #include <version>
  1803. using _LIBCPP_VERSION;
  1804. int main(void) { return 0; }
  1805. Cached compiler stdout:
  1806.  
  1807. Cached compiler stderr:
  1808. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1809. 3 | using _LIBCPP_VERSION;
  1810. | ^~~~~~~~~~~~~~~
  1811.  
  1812. Using cached compile:
  1813. 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
  1814.  
  1815. Code:
  1816.  
  1817. #ifdef __has_include
  1818. #if !__has_include("version")
  1819. #error "Header 'version' could not be found"
  1820. #endif
  1821. #else
  1822. #include <version>
  1823. #endif
  1824. Cached compiler stdout:
  1825.  
  1826. Cached compiler stderr:
  1827.  
  1828. Using cached compile:
  1829. 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
  1830.  
  1831. Code:
  1832.  
  1833. #include <version>
  1834. int main(void) {
  1835. /* If it's not defined as a macro, try to use as a symbol */
  1836. #ifndef _LIBCPP_VERSION
  1837. _LIBCPP_VERSION;
  1838. #endif
  1839. return 0;
  1840. }
  1841. Cached compiler stdout:
  1842.  
  1843. Cached compiler stderr:
  1844. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1845. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1846. 6 | _LIBCPP_VERSION;
  1847. | ^~~~~~~~~~~~~~~
  1848.  
  1849. Using cached compile:
  1850. 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
  1851.  
  1852. Code:
  1853.  
  1854. #include <version>
  1855. using _LIBCPP_VERSION;
  1856. int main(void) { return 0; }
  1857. Cached compiler stdout:
  1858.  
  1859. Cached compiler stderr:
  1860. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1861. 3 | using _LIBCPP_VERSION;
  1862. | ^~~~~~~~~~~~~~~
  1863.  
  1864. Using cached compile:
  1865. 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
  1866.  
  1867. Code:
  1868.  
  1869. #ifdef __has_include
  1870. #if !__has_include("version")
  1871. #error "Header 'version' could not be found"
  1872. #endif
  1873. #else
  1874. #include <version>
  1875. #endif
  1876. Cached compiler stdout:
  1877.  
  1878. Cached compiler stderr:
  1879.  
  1880. Using cached compile:
  1881. 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
  1882.  
  1883. Code:
  1884.  
  1885. #include <version>
  1886. int main(void) {
  1887. /* If it's not defined as a macro, try to use as a symbol */
  1888. #ifndef _LIBCPP_VERSION
  1889. _LIBCPP_VERSION;
  1890. #endif
  1891. return 0;
  1892. }
  1893. Cached compiler stdout:
  1894.  
  1895. Cached compiler stderr:
  1896. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1897. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1898. 6 | _LIBCPP_VERSION;
  1899. | ^~~~~~~~~~~~~~~
  1900.  
  1901. Using cached compile:
  1902. 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
  1903.  
  1904. Code:
  1905.  
  1906. #include <version>
  1907. using _LIBCPP_VERSION;
  1908. int main(void) { return 0; }
  1909. Cached compiler stdout:
  1910.  
  1911. Cached compiler stderr:
  1912. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1913. 3 | using _LIBCPP_VERSION;
  1914. | ^~~~~~~~~~~~~~~
  1915.  
  1916. Using cached compile:
  1917. 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
  1918.  
  1919. Code:
  1920.  
  1921. #ifdef __has_include
  1922. #if !__has_include("version")
  1923. #error "Header 'version' could not be found"
  1924. #endif
  1925. #else
  1926. #include <version>
  1927. #endif
  1928. Cached compiler stdout:
  1929.  
  1930. Cached compiler stderr:
  1931.  
  1932. Using cached compile:
  1933. 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
  1934.  
  1935. Code:
  1936.  
  1937. #include <version>
  1938. int main(void) {
  1939. /* If it's not defined as a macro, try to use as a symbol */
  1940. #ifndef _LIBCPP_VERSION
  1941. _LIBCPP_VERSION;
  1942. #endif
  1943. return 0;
  1944. }
  1945. Cached compiler stdout:
  1946.  
  1947. Cached compiler stderr:
  1948. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  1949. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  1950. 6 | _LIBCPP_VERSION;
  1951. | ^~~~~~~~~~~~~~~
  1952.  
  1953. Using cached compile:
  1954. 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
  1955.  
  1956. Code:
  1957.  
  1958. #include <version>
  1959. using _LIBCPP_VERSION;
  1960. int main(void) { return 0; }
  1961. Cached compiler stdout:
  1962.  
  1963. Cached compiler stderr:
  1964. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  1965. 3 | using _LIBCPP_VERSION;
  1966. | ^~~~~~~~~~~~~~~
  1967.  
  1968. Using cached compile:
  1969. 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
  1970.  
  1971. Code:
  1972.  
  1973. #ifdef __has_include
  1974. #if !__has_include("version")
  1975. #error "Header 'version' could not be found"
  1976. #endif
  1977. #else
  1978. #include <version>
  1979. #endif
  1980. Cached compiler stdout:
  1981.  
  1982. Cached compiler stderr:
  1983.  
  1984. Using cached compile:
  1985. 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
  1986.  
  1987. Code:
  1988.  
  1989. #include <version>
  1990. int main(void) {
  1991. /* If it's not defined as a macro, try to use as a symbol */
  1992. #ifndef _LIBCPP_VERSION
  1993. _LIBCPP_VERSION;
  1994. #endif
  1995. return 0;
  1996. }
  1997. Cached compiler stdout:
  1998.  
  1999. Cached compiler stderr:
  2000. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2001. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2002. 6 | _LIBCPP_VERSION;
  2003. | ^~~~~~~~~~~~~~~
  2004.  
  2005. Using cached compile:
  2006. 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
  2007.  
  2008. Code:
  2009.  
  2010. #include <version>
  2011. using _LIBCPP_VERSION;
  2012. int main(void) { return 0; }
  2013. Cached compiler stdout:
  2014.  
  2015. Cached compiler stderr:
  2016. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2017. 3 | using _LIBCPP_VERSION;
  2018. | ^~~~~~~~~~~~~~~
  2019.  
  2020. Using cached compile:
  2021. 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
  2022.  
  2023. Code:
  2024.  
  2025. #ifdef __has_include
  2026. #if !__has_include("version")
  2027. #error "Header 'version' could not be found"
  2028. #endif
  2029. #else
  2030. #include <version>
  2031. #endif
  2032. Cached compiler stdout:
  2033.  
  2034. Cached compiler stderr:
  2035.  
  2036. Using cached compile:
  2037. 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
  2038.  
  2039. Code:
  2040.  
  2041. #include <version>
  2042. int main(void) {
  2043. /* If it's not defined as a macro, try to use as a symbol */
  2044. #ifndef _LIBCPP_VERSION
  2045. _LIBCPP_VERSION;
  2046. #endif
  2047. return 0;
  2048. }
  2049. Cached compiler stdout:
  2050.  
  2051. Cached compiler stderr:
  2052. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2053. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2054. 6 | _LIBCPP_VERSION;
  2055. | ^~~~~~~~~~~~~~~
  2056.  
  2057. Using cached compile:
  2058. 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
  2059.  
  2060. Code:
  2061.  
  2062. #include <version>
  2063. using _LIBCPP_VERSION;
  2064. int main(void) { return 0; }
  2065. Cached compiler stdout:
  2066.  
  2067. Cached compiler stderr:
  2068. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2069. 3 | using _LIBCPP_VERSION;
  2070. | ^~~~~~~~~~~~~~~
  2071.  
  2072. Using cached compile:
  2073. 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
  2074.  
  2075. Code:
  2076.  
  2077. #ifdef __has_include
  2078. #if !__has_include("version")
  2079. #error "Header 'version' could not be found"
  2080. #endif
  2081. #else
  2082. #include <version>
  2083. #endif
  2084. Cached compiler stdout:
  2085.  
  2086. Cached compiler stderr:
  2087.  
  2088. Using cached compile:
  2089. 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
  2090.  
  2091. Code:
  2092.  
  2093. #include <version>
  2094. int main(void) {
  2095. /* If it's not defined as a macro, try to use as a symbol */
  2096. #ifndef _LIBCPP_VERSION
  2097. _LIBCPP_VERSION;
  2098. #endif
  2099. return 0;
  2100. }
  2101. Cached compiler stdout:
  2102.  
  2103. Cached compiler stderr:
  2104. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2105. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2106. 6 | _LIBCPP_VERSION;
  2107. | ^~~~~~~~~~~~~~~
  2108.  
  2109. Using cached compile:
  2110. 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
  2111.  
  2112. Code:
  2113.  
  2114. #include <version>
  2115. using _LIBCPP_VERSION;
  2116. int main(void) { return 0; }
  2117. Cached compiler stdout:
  2118.  
  2119. Cached compiler stderr:
  2120. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2121. 3 | using _LIBCPP_VERSION;
  2122. | ^~~~~~~~~~~~~~~
  2123.  
  2124. Using cached compile:
  2125. 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
  2126.  
  2127. Code:
  2128.  
  2129. #ifdef __has_include
  2130. #if !__has_include("version")
  2131. #error "Header 'version' could not be found"
  2132. #endif
  2133. #else
  2134. #include <version>
  2135. #endif
  2136. Cached compiler stdout:
  2137.  
  2138. Cached compiler stderr:
  2139.  
  2140. Using cached compile:
  2141. 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
  2142.  
  2143. Code:
  2144.  
  2145. #include <version>
  2146. int main(void) {
  2147. /* If it's not defined as a macro, try to use as a symbol */
  2148. #ifndef _LIBCPP_VERSION
  2149. _LIBCPP_VERSION;
  2150. #endif
  2151. return 0;
  2152. }
  2153. Cached compiler stdout:
  2154.  
  2155. Cached compiler stderr:
  2156. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2157. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2158. 6 | _LIBCPP_VERSION;
  2159. | ^~~~~~~~~~~~~~~
  2160.  
  2161. Using cached compile:
  2162. 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
  2163.  
  2164. Code:
  2165.  
  2166. #include <version>
  2167. using _LIBCPP_VERSION;
  2168. int main(void) { return 0; }
  2169. Cached compiler stdout:
  2170.  
  2171. Cached compiler stderr:
  2172. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2173. 3 | using _LIBCPP_VERSION;
  2174. | ^~~~~~~~~~~~~~~
  2175.  
  2176. Using cached compile:
  2177. 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
  2178.  
  2179. Code:
  2180.  
  2181. #ifdef __has_include
  2182. #if !__has_include("version")
  2183. #error "Header 'version' could not be found"
  2184. #endif
  2185. #else
  2186. #include <version>
  2187. #endif
  2188. Cached compiler stdout:
  2189.  
  2190. Cached compiler stderr:
  2191.  
  2192. Using cached compile:
  2193. 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
  2194.  
  2195. Code:
  2196.  
  2197. #include <version>
  2198. int main(void) {
  2199. /* If it's not defined as a macro, try to use as a symbol */
  2200. #ifndef _LIBCPP_VERSION
  2201. _LIBCPP_VERSION;
  2202. #endif
  2203. return 0;
  2204. }
  2205. Cached compiler stdout:
  2206.  
  2207. Cached compiler stderr:
  2208. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2209. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2210. 6 | _LIBCPP_VERSION;
  2211. | ^~~~~~~~~~~~~~~
  2212.  
  2213. Using cached compile:
  2214. 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
  2215.  
  2216. Code:
  2217.  
  2218. #include <version>
  2219. using _LIBCPP_VERSION;
  2220. int main(void) { return 0; }
  2221. Cached compiler stdout:
  2222.  
  2223. Cached compiler stderr:
  2224. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2225. 3 | using _LIBCPP_VERSION;
  2226. | ^~~~~~~~~~~~~~~
  2227.  
  2228. Using cached compile:
  2229. 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
  2230.  
  2231. Code:
  2232.  
  2233. #ifdef __has_include
  2234. #if !__has_include("version")
  2235. #error "Header 'version' could not be found"
  2236. #endif
  2237. #else
  2238. #include <version>
  2239. #endif
  2240. Cached compiler stdout:
  2241.  
  2242. Cached compiler stderr:
  2243.  
  2244. Using cached compile:
  2245. 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
  2246.  
  2247. Code:
  2248.  
  2249. #include <version>
  2250. int main(void) {
  2251. /* If it's not defined as a macro, try to use as a symbol */
  2252. #ifndef _LIBCPP_VERSION
  2253. _LIBCPP_VERSION;
  2254. #endif
  2255. return 0;
  2256. }
  2257. Cached compiler stdout:
  2258.  
  2259. Cached compiler stderr:
  2260. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2261. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2262. 6 | _LIBCPP_VERSION;
  2263. | ^~~~~~~~~~~~~~~
  2264.  
  2265. Using cached compile:
  2266. 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
  2267.  
  2268. Code:
  2269.  
  2270. #include <version>
  2271. using _LIBCPP_VERSION;
  2272. int main(void) { return 0; }
  2273. Cached compiler stdout:
  2274.  
  2275. Cached compiler stderr:
  2276. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2277. 3 | using _LIBCPP_VERSION;
  2278. | ^~~~~~~~~~~~~~~
  2279.  
  2280. Using cached compile:
  2281. 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
  2282.  
  2283. Code:
  2284.  
  2285. #ifdef __has_include
  2286. #if !__has_include("version")
  2287. #error "Header 'version' could not be found"
  2288. #endif
  2289. #else
  2290. #include <version>
  2291. #endif
  2292. Cached compiler stdout:
  2293.  
  2294. Cached compiler stderr:
  2295.  
  2296. Using cached compile:
  2297. 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
  2298.  
  2299. Code:
  2300.  
  2301. #include <version>
  2302. int main(void) {
  2303. /* If it's not defined as a macro, try to use as a symbol */
  2304. #ifndef _LIBCPP_VERSION
  2305. _LIBCPP_VERSION;
  2306. #endif
  2307. return 0;
  2308. }
  2309. Cached compiler stdout:
  2310.  
  2311. Cached compiler stderr:
  2312. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2313. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2314. 6 | _LIBCPP_VERSION;
  2315. | ^~~~~~~~~~~~~~~
  2316.  
  2317. Using cached compile:
  2318. 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
  2319.  
  2320. Code:
  2321.  
  2322. #include <version>
  2323. using _LIBCPP_VERSION;
  2324. int main(void) { return 0; }
  2325. Cached compiler stdout:
  2326.  
  2327. Cached compiler stderr:
  2328. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2329. 3 | using _LIBCPP_VERSION;
  2330. | ^~~~~~~~~~~~~~~
  2331.  
  2332. Using cached compile:
  2333. 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
  2334.  
  2335. Code:
  2336.  
  2337. #ifdef __has_include
  2338. #if !__has_include("version")
  2339. #error "Header 'version' could not be found"
  2340. #endif
  2341. #else
  2342. #include <version>
  2343. #endif
  2344. Cached compiler stdout:
  2345.  
  2346. Cached compiler stderr:
  2347.  
  2348. Using cached compile:
  2349. 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
  2350.  
  2351. Code:
  2352.  
  2353. #include <version>
  2354. int main(void) {
  2355. /* If it's not defined as a macro, try to use as a symbol */
  2356. #ifndef _LIBCPP_VERSION
  2357. _LIBCPP_VERSION;
  2358. #endif
  2359. return 0;
  2360. }
  2361. Cached compiler stdout:
  2362.  
  2363. Cached compiler stderr:
  2364. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2365. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2366. 6 | _LIBCPP_VERSION;
  2367. | ^~~~~~~~~~~~~~~
  2368.  
  2369. Using cached compile:
  2370. 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
  2371.  
  2372. Code:
  2373.  
  2374. #include <version>
  2375. using _LIBCPP_VERSION;
  2376. int main(void) { return 0; }
  2377. Cached compiler stdout:
  2378.  
  2379. Cached compiler stderr:
  2380. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2381. 3 | using _LIBCPP_VERSION;
  2382. | ^~~~~~~~~~~~~~~
  2383.  
  2384. Using cached compile:
  2385. 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
  2386.  
  2387. Code:
  2388.  
  2389. #ifdef __has_include
  2390. #if !__has_include("version")
  2391. #error "Header 'version' could not be found"
  2392. #endif
  2393. #else
  2394. #include <version>
  2395. #endif
  2396. Cached compiler stdout:
  2397.  
  2398. Cached compiler stderr:
  2399.  
  2400. Using cached compile:
  2401. 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
  2402.  
  2403. Code:
  2404.  
  2405. #include <version>
  2406. int main(void) {
  2407. /* If it's not defined as a macro, try to use as a symbol */
  2408. #ifndef _LIBCPP_VERSION
  2409. _LIBCPP_VERSION;
  2410. #endif
  2411. return 0;
  2412. }
  2413. Cached compiler stdout:
  2414.  
  2415. Cached compiler stderr:
  2416. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2417. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2418. 6 | _LIBCPP_VERSION;
  2419. | ^~~~~~~~~~~~~~~
  2420.  
  2421. Using cached compile:
  2422. 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
  2423.  
  2424. Code:
  2425.  
  2426. #include <version>
  2427. using _LIBCPP_VERSION;
  2428. int main(void) { return 0; }
  2429. Cached compiler stdout:
  2430.  
  2431. Cached compiler stderr:
  2432. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2433. 3 | using _LIBCPP_VERSION;
  2434. | ^~~~~~~~~~~~~~~
  2435.  
  2436. Using cached compile:
  2437. 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
  2438.  
  2439. Code:
  2440.  
  2441. #ifdef __has_include
  2442. #if !__has_include("version")
  2443. #error "Header 'version' could not be found"
  2444. #endif
  2445. #else
  2446. #include <version>
  2447. #endif
  2448. Cached compiler stdout:
  2449.  
  2450. Cached compiler stderr:
  2451.  
  2452. Using cached compile:
  2453. 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
  2454.  
  2455. Code:
  2456.  
  2457. #include <version>
  2458. int main(void) {
  2459. /* If it's not defined as a macro, try to use as a symbol */
  2460. #ifndef _LIBCPP_VERSION
  2461. _LIBCPP_VERSION;
  2462. #endif
  2463. return 0;
  2464. }
  2465. Cached compiler stdout:
  2466.  
  2467. Cached compiler stderr:
  2468. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2469. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2470. 6 | _LIBCPP_VERSION;
  2471. | ^~~~~~~~~~~~~~~
  2472.  
  2473. Using cached compile:
  2474. 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
  2475.  
  2476. Code:
  2477.  
  2478. #include <version>
  2479. using _LIBCPP_VERSION;
  2480. int main(void) { return 0; }
  2481. Cached compiler stdout:
  2482.  
  2483. Cached compiler stderr:
  2484. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2485. 3 | using _LIBCPP_VERSION;
  2486. | ^~~~~~~~~~~~~~~
  2487.  
  2488. Using cached compile:
  2489. 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
  2490.  
  2491. Code:
  2492.  
  2493. #ifdef __has_include
  2494. #if !__has_include("version")
  2495. #error "Header 'version' could not be found"
  2496. #endif
  2497. #else
  2498. #include <version>
  2499. #endif
  2500. Cached compiler stdout:
  2501.  
  2502. Cached compiler stderr:
  2503.  
  2504. Using cached compile:
  2505. 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
  2506.  
  2507. Code:
  2508.  
  2509. #include <version>
  2510. int main(void) {
  2511. /* If it's not defined as a macro, try to use as a symbol */
  2512. #ifndef _LIBCPP_VERSION
  2513. _LIBCPP_VERSION;
  2514. #endif
  2515. return 0;
  2516. }
  2517. Cached compiler stdout:
  2518.  
  2519. Cached compiler stderr:
  2520. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2521. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2522. 6 | _LIBCPP_VERSION;
  2523. | ^~~~~~~~~~~~~~~
  2524.  
  2525. Using cached compile:
  2526. 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
  2527.  
  2528. Code:
  2529.  
  2530. #include <version>
  2531. using _LIBCPP_VERSION;
  2532. int main(void) { return 0; }
  2533. Cached compiler stdout:
  2534.  
  2535. Cached compiler stderr:
  2536. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2537. 3 | using _LIBCPP_VERSION;
  2538. | ^~~~~~~~~~~~~~~
  2539.  
  2540. Using cached compile:
  2541. 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
  2542.  
  2543. Code:
  2544.  
  2545. #ifdef __has_include
  2546. #if !__has_include("version")
  2547. #error "Header 'version' could not be found"
  2548. #endif
  2549. #else
  2550. #include <version>
  2551. #endif
  2552. Cached compiler stdout:
  2553.  
  2554. Cached compiler stderr:
  2555.  
  2556. Using cached compile:
  2557. 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
  2558.  
  2559. Code:
  2560.  
  2561. #include <version>
  2562. int main(void) {
  2563. /* If it's not defined as a macro, try to use as a symbol */
  2564. #ifndef _LIBCPP_VERSION
  2565. _LIBCPP_VERSION;
  2566. #endif
  2567. return 0;
  2568. }
  2569. Cached compiler stdout:
  2570.  
  2571. Cached compiler stderr:
  2572. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2573. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2574. 6 | _LIBCPP_VERSION;
  2575. | ^~~~~~~~~~~~~~~
  2576.  
  2577. Using cached compile:
  2578. 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
  2579.  
  2580. Code:
  2581.  
  2582. #include <version>
  2583. using _LIBCPP_VERSION;
  2584. int main(void) { return 0; }
  2585. Cached compiler stdout:
  2586.  
  2587. Cached compiler stderr:
  2588. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2589. 3 | using _LIBCPP_VERSION;
  2590. | ^~~~~~~~~~~~~~~
  2591.  
  2592. Using cached compile:
  2593. 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
  2594.  
  2595. Code:
  2596.  
  2597. #ifdef __has_include
  2598. #if !__has_include("version")
  2599. #error "Header 'version' could not be found"
  2600. #endif
  2601. #else
  2602. #include <version>
  2603. #endif
  2604. Cached compiler stdout:
  2605.  
  2606. Cached compiler stderr:
  2607.  
  2608. Using cached compile:
  2609. 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
  2610.  
  2611. Code:
  2612.  
  2613. #include <version>
  2614. int main(void) {
  2615. /* If it's not defined as a macro, try to use as a symbol */
  2616. #ifndef _LIBCPP_VERSION
  2617. _LIBCPP_VERSION;
  2618. #endif
  2619. return 0;
  2620. }
  2621. Cached compiler stdout:
  2622.  
  2623. Cached compiler stderr:
  2624. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2625. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2626. 6 | _LIBCPP_VERSION;
  2627. | ^~~~~~~~~~~~~~~
  2628.  
  2629. Using cached compile:
  2630. 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
  2631.  
  2632. Code:
  2633.  
  2634. #include <version>
  2635. using _LIBCPP_VERSION;
  2636. int main(void) { return 0; }
  2637. Cached compiler stdout:
  2638.  
  2639. Cached compiler stderr:
  2640. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2641. 3 | using _LIBCPP_VERSION;
  2642. | ^~~~~~~~~~~~~~~
  2643.  
  2644. Using cached compile:
  2645. 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
  2646.  
  2647. Code:
  2648.  
  2649. #ifdef __has_include
  2650. #if !__has_include("version")
  2651. #error "Header 'version' could not be found"
  2652. #endif
  2653. #else
  2654. #include <version>
  2655. #endif
  2656. Cached compiler stdout:
  2657.  
  2658. Cached compiler stderr:
  2659.  
  2660. Using cached compile:
  2661. 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
  2662.  
  2663. Code:
  2664.  
  2665. #include <version>
  2666. int main(void) {
  2667. /* If it's not defined as a macro, try to use as a symbol */
  2668. #ifndef _LIBCPP_VERSION
  2669. _LIBCPP_VERSION;
  2670. #endif
  2671. return 0;
  2672. }
  2673. Cached compiler stdout:
  2674.  
  2675. Cached compiler stderr:
  2676. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2677. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2678. 6 | _LIBCPP_VERSION;
  2679. | ^~~~~~~~~~~~~~~
  2680.  
  2681. Using cached compile:
  2682. 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
  2683.  
  2684. Code:
  2685.  
  2686. #include <version>
  2687. using _LIBCPP_VERSION;
  2688. int main(void) { return 0; }
  2689. Cached compiler stdout:
  2690.  
  2691. Cached compiler stderr:
  2692. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2693. 3 | using _LIBCPP_VERSION;
  2694. | ^~~~~~~~~~~~~~~
  2695.  
  2696. Using cached compile:
  2697. 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
  2698.  
  2699. Code:
  2700.  
  2701. #ifdef __has_include
  2702. #if !__has_include("version")
  2703. #error "Header 'version' could not be found"
  2704. #endif
  2705. #else
  2706. #include <version>
  2707. #endif
  2708. Cached compiler stdout:
  2709.  
  2710. Cached compiler stderr:
  2711.  
  2712. Using cached compile:
  2713. 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
  2714.  
  2715. Code:
  2716.  
  2717. #include <version>
  2718. int main(void) {
  2719. /* If it's not defined as a macro, try to use as a symbol */
  2720. #ifndef _LIBCPP_VERSION
  2721. _LIBCPP_VERSION;
  2722. #endif
  2723. return 0;
  2724. }
  2725. Cached compiler stdout:
  2726.  
  2727. Cached compiler stderr:
  2728. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2729. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2730. 6 | _LIBCPP_VERSION;
  2731. | ^~~~~~~~~~~~~~~
  2732.  
  2733. Using cached compile:
  2734. 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
  2735.  
  2736. Code:
  2737.  
  2738. #include <version>
  2739. using _LIBCPP_VERSION;
  2740. int main(void) { return 0; }
  2741. Cached compiler stdout:
  2742.  
  2743. Cached compiler stderr:
  2744. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2745. 3 | using _LIBCPP_VERSION;
  2746. | ^~~~~~~~~~~~~~~
  2747.  
  2748. Using cached compile:
  2749. 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
  2750.  
  2751. Code:
  2752.  
  2753. #ifdef __has_include
  2754. #if !__has_include("version")
  2755. #error "Header 'version' could not be found"
  2756. #endif
  2757. #else
  2758. #include <version>
  2759. #endif
  2760. Cached compiler stdout:
  2761.  
  2762. Cached compiler stderr:
  2763.  
  2764. Using cached compile:
  2765. 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
  2766.  
  2767. Code:
  2768.  
  2769. #include <version>
  2770. int main(void) {
  2771. /* If it's not defined as a macro, try to use as a symbol */
  2772. #ifndef _LIBCPP_VERSION
  2773. _LIBCPP_VERSION;
  2774. #endif
  2775. return 0;
  2776. }
  2777. Cached compiler stdout:
  2778.  
  2779. Cached compiler stderr:
  2780. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2781. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2782. 6 | _LIBCPP_VERSION;
  2783. | ^~~~~~~~~~~~~~~
  2784.  
  2785. Using cached compile:
  2786. 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
  2787.  
  2788. Code:
  2789.  
  2790. #include <version>
  2791. using _LIBCPP_VERSION;
  2792. int main(void) { return 0; }
  2793. Cached compiler stdout:
  2794.  
  2795. Cached compiler stderr:
  2796. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2797. 3 | using _LIBCPP_VERSION;
  2798. | ^~~~~~~~~~~~~~~
  2799.  
  2800. Using cached compile:
  2801. 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
  2802.  
  2803. Code:
  2804.  
  2805. #ifdef __has_include
  2806. #if !__has_include("version")
  2807. #error "Header 'version' could not be found"
  2808. #endif
  2809. #else
  2810. #include <version>
  2811. #endif
  2812. Cached compiler stdout:
  2813.  
  2814. Cached compiler stderr:
  2815.  
  2816. Using cached compile:
  2817. 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
  2818.  
  2819. Code:
  2820.  
  2821. #include <version>
  2822. int main(void) {
  2823. /* If it's not defined as a macro, try to use as a symbol */
  2824. #ifndef _LIBCPP_VERSION
  2825. _LIBCPP_VERSION;
  2826. #endif
  2827. return 0;
  2828. }
  2829. Cached compiler stdout:
  2830.  
  2831. Cached compiler stderr:
  2832. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2833. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2834. 6 | _LIBCPP_VERSION;
  2835. | ^~~~~~~~~~~~~~~
  2836.  
  2837. Using cached compile:
  2838. 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
  2839.  
  2840. Code:
  2841.  
  2842. #include <version>
  2843. using _LIBCPP_VERSION;
  2844. int main(void) { return 0; }
  2845. Cached compiler stdout:
  2846.  
  2847. Cached compiler stderr:
  2848. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2849. 3 | using _LIBCPP_VERSION;
  2850. | ^~~~~~~~~~~~~~~
  2851.  
  2852. Using cached compile:
  2853. 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
  2854.  
  2855. Code:
  2856.  
  2857. #ifdef __has_include
  2858. #if !__has_include("version")
  2859. #error "Header 'version' could not be found"
  2860. #endif
  2861. #else
  2862. #include <version>
  2863. #endif
  2864. Cached compiler stdout:
  2865.  
  2866. Cached compiler stderr:
  2867.  
  2868. Using cached compile:
  2869. 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
  2870.  
  2871. Code:
  2872.  
  2873. #include <version>
  2874. int main(void) {
  2875. /* If it's not defined as a macro, try to use as a symbol */
  2876. #ifndef _LIBCPP_VERSION
  2877. _LIBCPP_VERSION;
  2878. #endif
  2879. return 0;
  2880. }
  2881. Cached compiler stdout:
  2882.  
  2883. Cached compiler stderr:
  2884. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2885. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2886. 6 | _LIBCPP_VERSION;
  2887. | ^~~~~~~~~~~~~~~
  2888.  
  2889. Using cached compile:
  2890. 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
  2891.  
  2892. Code:
  2893.  
  2894. #include <version>
  2895. using _LIBCPP_VERSION;
  2896. int main(void) { return 0; }
  2897. Cached compiler stdout:
  2898.  
  2899. Cached compiler stderr:
  2900. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2901. 3 | using _LIBCPP_VERSION;
  2902. | ^~~~~~~~~~~~~~~
  2903.  
  2904. Using cached compile:
  2905. 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
  2906.  
  2907. Code:
  2908.  
  2909. #ifdef __has_include
  2910. #if !__has_include("version")
  2911. #error "Header 'version' could not be found"
  2912. #endif
  2913. #else
  2914. #include <version>
  2915. #endif
  2916. Cached compiler stdout:
  2917.  
  2918. Cached compiler stderr:
  2919.  
  2920. Using cached compile:
  2921. 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
  2922.  
  2923. Code:
  2924.  
  2925. #include <version>
  2926. int main(void) {
  2927. /* If it's not defined as a macro, try to use as a symbol */
  2928. #ifndef _LIBCPP_VERSION
  2929. _LIBCPP_VERSION;
  2930. #endif
  2931. return 0;
  2932. }
  2933. Cached compiler stdout:
  2934.  
  2935. Cached compiler stderr:
  2936. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2937. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2938. 6 | _LIBCPP_VERSION;
  2939. | ^~~~~~~~~~~~~~~
  2940.  
  2941. Using cached compile:
  2942. 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
  2943.  
  2944. Code:
  2945.  
  2946. #include <version>
  2947. using _LIBCPP_VERSION;
  2948. int main(void) { return 0; }
  2949. Cached compiler stdout:
  2950.  
  2951. Cached compiler stderr:
  2952. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  2953. 3 | using _LIBCPP_VERSION;
  2954. | ^~~~~~~~~~~~~~~
  2955.  
  2956. Using cached compile:
  2957. 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
  2958.  
  2959. Code:
  2960.  
  2961. #ifdef __has_include
  2962. #if !__has_include("version")
  2963. #error "Header 'version' could not be found"
  2964. #endif
  2965. #else
  2966. #include <version>
  2967. #endif
  2968. Cached compiler stdout:
  2969.  
  2970. Cached compiler stderr:
  2971.  
  2972. Using cached compile:
  2973. 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
  2974.  
  2975. Code:
  2976.  
  2977. #include <version>
  2978. int main(void) {
  2979. /* If it's not defined as a macro, try to use as a symbol */
  2980. #ifndef _LIBCPP_VERSION
  2981. _LIBCPP_VERSION;
  2982. #endif
  2983. return 0;
  2984. }
  2985. Cached compiler stdout:
  2986.  
  2987. Cached compiler stderr:
  2988. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  2989. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  2990. 6 | _LIBCPP_VERSION;
  2991. | ^~~~~~~~~~~~~~~
  2992.  
  2993. Using cached compile:
  2994. 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
  2995.  
  2996. Code:
  2997.  
  2998. #include <version>
  2999. using _LIBCPP_VERSION;
  3000. int main(void) { return 0; }
  3001. Cached compiler stdout:
  3002.  
  3003. Cached compiler stderr:
  3004. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3005. 3 | using _LIBCPP_VERSION;
  3006. | ^~~~~~~~~~~~~~~
  3007.  
  3008. Using cached compile:
  3009. 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
  3010.  
  3011. Code:
  3012.  
  3013. #ifdef __has_include
  3014. #if !__has_include("version")
  3015. #error "Header 'version' could not be found"
  3016. #endif
  3017. #else
  3018. #include <version>
  3019. #endif
  3020. Cached compiler stdout:
  3021.  
  3022. Cached compiler stderr:
  3023.  
  3024. Using cached compile:
  3025. 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
  3026.  
  3027. Code:
  3028.  
  3029. #include <version>
  3030. int main(void) {
  3031. /* If it's not defined as a macro, try to use as a symbol */
  3032. #ifndef _LIBCPP_VERSION
  3033. _LIBCPP_VERSION;
  3034. #endif
  3035. return 0;
  3036. }
  3037. Cached compiler stdout:
  3038.  
  3039. Cached compiler stderr:
  3040. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3041. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3042. 6 | _LIBCPP_VERSION;
  3043. | ^~~~~~~~~~~~~~~
  3044.  
  3045. Using cached compile:
  3046. 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
  3047.  
  3048. Code:
  3049.  
  3050. #include <version>
  3051. using _LIBCPP_VERSION;
  3052. int main(void) { return 0; }
  3053. Cached compiler stdout:
  3054.  
  3055. Cached compiler stderr:
  3056. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3057. 3 | using _LIBCPP_VERSION;
  3058. | ^~~~~~~~~~~~~~~
  3059.  
  3060. Using cached compile:
  3061. 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
  3062.  
  3063. Code:
  3064.  
  3065. #ifdef __has_include
  3066. #if !__has_include("version")
  3067. #error "Header 'version' could not be found"
  3068. #endif
  3069. #else
  3070. #include <version>
  3071. #endif
  3072. Cached compiler stdout:
  3073.  
  3074. Cached compiler stderr:
  3075.  
  3076. Using cached compile:
  3077. 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
  3078.  
  3079. Code:
  3080.  
  3081. #include <version>
  3082. int main(void) {
  3083. /* If it's not defined as a macro, try to use as a symbol */
  3084. #ifndef _LIBCPP_VERSION
  3085. _LIBCPP_VERSION;
  3086. #endif
  3087. return 0;
  3088. }
  3089. Cached compiler stdout:
  3090.  
  3091. Cached compiler stderr:
  3092. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3093. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3094. 6 | _LIBCPP_VERSION;
  3095. | ^~~~~~~~~~~~~~~
  3096.  
  3097. Using cached compile:
  3098. 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
  3099.  
  3100. Code:
  3101.  
  3102. #include <version>
  3103. using _LIBCPP_VERSION;
  3104. int main(void) { return 0; }
  3105. Cached compiler stdout:
  3106.  
  3107. Cached compiler stderr:
  3108. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3109. 3 | using _LIBCPP_VERSION;
  3110. | ^~~~~~~~~~~~~~~
  3111.  
  3112. Using cached compile:
  3113. 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
  3114.  
  3115. Code:
  3116.  
  3117. #ifdef __has_include
  3118. #if !__has_include("version")
  3119. #error "Header 'version' could not be found"
  3120. #endif
  3121. #else
  3122. #include <version>
  3123. #endif
  3124. Cached compiler stdout:
  3125.  
  3126. Cached compiler stderr:
  3127.  
  3128. Using cached compile:
  3129. 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
  3130.  
  3131. Code:
  3132.  
  3133. #include <version>
  3134. int main(void) {
  3135. /* If it's not defined as a macro, try to use as a symbol */
  3136. #ifndef _LIBCPP_VERSION
  3137. _LIBCPP_VERSION;
  3138. #endif
  3139. return 0;
  3140. }
  3141. Cached compiler stdout:
  3142.  
  3143. Cached compiler stderr:
  3144. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3145. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3146. 6 | _LIBCPP_VERSION;
  3147. | ^~~~~~~~~~~~~~~
  3148.  
  3149. Using cached compile:
  3150. 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
  3151.  
  3152. Code:
  3153.  
  3154. #include <version>
  3155. using _LIBCPP_VERSION;
  3156. int main(void) { return 0; }
  3157. Cached compiler stdout:
  3158.  
  3159. Cached compiler stderr:
  3160. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3161. 3 | using _LIBCPP_VERSION;
  3162. | ^~~~~~~~~~~~~~~
  3163.  
  3164. Using cached compile:
  3165. 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
  3166.  
  3167. Code:
  3168.  
  3169. #ifdef __has_include
  3170. #if !__has_include("version")
  3171. #error "Header 'version' could not be found"
  3172. #endif
  3173. #else
  3174. #include <version>
  3175. #endif
  3176. Cached compiler stdout:
  3177.  
  3178. Cached compiler stderr:
  3179.  
  3180. Using cached compile:
  3181. 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
  3182.  
  3183. Code:
  3184.  
  3185. #include <version>
  3186. int main(void) {
  3187. /* If it's not defined as a macro, try to use as a symbol */
  3188. #ifndef _LIBCPP_VERSION
  3189. _LIBCPP_VERSION;
  3190. #endif
  3191. return 0;
  3192. }
  3193. Cached compiler stdout:
  3194.  
  3195. Cached compiler stderr:
  3196. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3197. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3198. 6 | _LIBCPP_VERSION;
  3199. | ^~~~~~~~~~~~~~~
  3200.  
  3201. Using cached compile:
  3202. 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
  3203.  
  3204. Code:
  3205.  
  3206. #include <version>
  3207. using _LIBCPP_VERSION;
  3208. int main(void) { return 0; }
  3209. Cached compiler stdout:
  3210.  
  3211. Cached compiler stderr:
  3212. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3213. 3 | using _LIBCPP_VERSION;
  3214. | ^~~~~~~~~~~~~~~
  3215.  
  3216. Using cached compile:
  3217. 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
  3218.  
  3219. Code:
  3220.  
  3221. #ifdef __has_include
  3222. #if !__has_include("version")
  3223. #error "Header 'version' could not be found"
  3224. #endif
  3225. #else
  3226. #include <version>
  3227. #endif
  3228. Cached compiler stdout:
  3229.  
  3230. Cached compiler stderr:
  3231.  
  3232. Using cached compile:
  3233. 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
  3234.  
  3235. Code:
  3236.  
  3237. #include <version>
  3238. int main(void) {
  3239. /* If it's not defined as a macro, try to use as a symbol */
  3240. #ifndef _LIBCPP_VERSION
  3241. _LIBCPP_VERSION;
  3242. #endif
  3243. return 0;
  3244. }
  3245. Cached compiler stdout:
  3246.  
  3247. Cached compiler stderr:
  3248. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3249. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3250. 6 | _LIBCPP_VERSION;
  3251. | ^~~~~~~~~~~~~~~
  3252.  
  3253. Using cached compile:
  3254. 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
  3255.  
  3256. Code:
  3257.  
  3258. #include <version>
  3259. using _LIBCPP_VERSION;
  3260. int main(void) { return 0; }
  3261. Cached compiler stdout:
  3262.  
  3263. Cached compiler stderr:
  3264. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3265. 3 | using _LIBCPP_VERSION;
  3266. | ^~~~~~~~~~~~~~~
  3267.  
  3268. Using cached compile:
  3269. 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
  3270.  
  3271. Code:
  3272.  
  3273. #ifdef __has_include
  3274. #if !__has_include("version")
  3275. #error "Header 'version' could not be found"
  3276. #endif
  3277. #else
  3278. #include <version>
  3279. #endif
  3280. Cached compiler stdout:
  3281.  
  3282. Cached compiler stderr:
  3283.  
  3284. Using cached compile:
  3285. 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
  3286.  
  3287. Code:
  3288.  
  3289. #include <version>
  3290. int main(void) {
  3291. /* If it's not defined as a macro, try to use as a symbol */
  3292. #ifndef _LIBCPP_VERSION
  3293. _LIBCPP_VERSION;
  3294. #endif
  3295. return 0;
  3296. }
  3297. Cached compiler stdout:
  3298.  
  3299. Cached compiler stderr:
  3300. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3301. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3302. 6 | _LIBCPP_VERSION;
  3303. | ^~~~~~~~~~~~~~~
  3304.  
  3305. Using cached compile:
  3306. 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
  3307.  
  3308. Code:
  3309.  
  3310. #include <version>
  3311. using _LIBCPP_VERSION;
  3312. int main(void) { return 0; }
  3313. Cached compiler stdout:
  3314.  
  3315. Cached compiler stderr:
  3316. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3317. 3 | using _LIBCPP_VERSION;
  3318. | ^~~~~~~~~~~~~~~
  3319.  
  3320. Using cached compile:
  3321. 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
  3322.  
  3323. Code:
  3324.  
  3325. #ifdef __has_include
  3326. #if !__has_include("version")
  3327. #error "Header 'version' could not be found"
  3328. #endif
  3329. #else
  3330. #include <version>
  3331. #endif
  3332. Cached compiler stdout:
  3333.  
  3334. Cached compiler stderr:
  3335.  
  3336. Using cached compile:
  3337. 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
  3338.  
  3339. Code:
  3340.  
  3341. #include <version>
  3342. int main(void) {
  3343. /* If it's not defined as a macro, try to use as a symbol */
  3344. #ifndef _LIBCPP_VERSION
  3345. _LIBCPP_VERSION;
  3346. #endif
  3347. return 0;
  3348. }
  3349. Cached compiler stdout:
  3350.  
  3351. Cached compiler stderr:
  3352. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3353. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3354. 6 | _LIBCPP_VERSION;
  3355. | ^~~~~~~~~~~~~~~
  3356.  
  3357. Using cached compile:
  3358. 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
  3359.  
  3360. Code:
  3361.  
  3362. #include <version>
  3363. using _LIBCPP_VERSION;
  3364. int main(void) { return 0; }
  3365. Cached compiler stdout:
  3366.  
  3367. Cached compiler stderr:
  3368. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3369. 3 | using _LIBCPP_VERSION;
  3370. | ^~~~~~~~~~~~~~~
  3371.  
  3372. Using cached compile:
  3373. 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
  3374.  
  3375. Code:
  3376.  
  3377. #ifdef __has_include
  3378. #if !__has_include("version")
  3379. #error "Header 'version' could not be found"
  3380. #endif
  3381. #else
  3382. #include <version>
  3383. #endif
  3384. Cached compiler stdout:
  3385.  
  3386. Cached compiler stderr:
  3387.  
  3388. Using cached compile:
  3389. 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
  3390.  
  3391. Code:
  3392.  
  3393. #include <version>
  3394. int main(void) {
  3395. /* If it's not defined as a macro, try to use as a symbol */
  3396. #ifndef _LIBCPP_VERSION
  3397. _LIBCPP_VERSION;
  3398. #endif
  3399. return 0;
  3400. }
  3401. Cached compiler stdout:
  3402.  
  3403. Cached compiler stderr:
  3404. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3405. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3406. 6 | _LIBCPP_VERSION;
  3407. | ^~~~~~~~~~~~~~~
  3408.  
  3409. Using cached compile:
  3410. 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
  3411.  
  3412. Code:
  3413.  
  3414. #include <version>
  3415. using _LIBCPP_VERSION;
  3416. int main(void) { return 0; }
  3417. Cached compiler stdout:
  3418.  
  3419. Cached compiler stderr:
  3420. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3421. 3 | using _LIBCPP_VERSION;
  3422. | ^~~~~~~~~~~~~~~
  3423.  
  3424. Using cached compile:
  3425. 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
  3426.  
  3427. Code:
  3428.  
  3429. #ifdef __has_include
  3430. #if !__has_include("version")
  3431. #error "Header 'version' could not be found"
  3432. #endif
  3433. #else
  3434. #include <version>
  3435. #endif
  3436. Cached compiler stdout:
  3437.  
  3438. Cached compiler stderr:
  3439.  
  3440. Using cached compile:
  3441. 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
  3442.  
  3443. Code:
  3444.  
  3445. #include <version>
  3446. int main(void) {
  3447. /* If it's not defined as a macro, try to use as a symbol */
  3448. #ifndef _LIBCPP_VERSION
  3449. _LIBCPP_VERSION;
  3450. #endif
  3451. return 0;
  3452. }
  3453. Cached compiler stdout:
  3454.  
  3455. Cached compiler stderr:
  3456. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3457. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3458. 6 | _LIBCPP_VERSION;
  3459. | ^~~~~~~~~~~~~~~
  3460.  
  3461. Using cached compile:
  3462. 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
  3463.  
  3464. Code:
  3465.  
  3466. #include <version>
  3467. using _LIBCPP_VERSION;
  3468. int main(void) { return 0; }
  3469. Cached compiler stdout:
  3470.  
  3471. Cached compiler stderr:
  3472. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3473. 3 | using _LIBCPP_VERSION;
  3474. | ^~~~~~~~~~~~~~~
  3475.  
  3476. Using cached compile:
  3477. 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
  3478.  
  3479. Code:
  3480.  
  3481. #ifdef __has_include
  3482. #if !__has_include("version")
  3483. #error "Header 'version' could not be found"
  3484. #endif
  3485. #else
  3486. #include <version>
  3487. #endif
  3488. Cached compiler stdout:
  3489.  
  3490. Cached compiler stderr:
  3491.  
  3492. Using cached compile:
  3493. 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
  3494.  
  3495. Code:
  3496.  
  3497. #include <version>
  3498. int main(void) {
  3499. /* If it's not defined as a macro, try to use as a symbol */
  3500. #ifndef _LIBCPP_VERSION
  3501. _LIBCPP_VERSION;
  3502. #endif
  3503. return 0;
  3504. }
  3505. Cached compiler stdout:
  3506.  
  3507. Cached compiler stderr:
  3508. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3509. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3510. 6 | _LIBCPP_VERSION;
  3511. | ^~~~~~~~~~~~~~~
  3512.  
  3513. Using cached compile:
  3514. 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
  3515.  
  3516. Code:
  3517.  
  3518. #include <version>
  3519. using _LIBCPP_VERSION;
  3520. int main(void) { return 0; }
  3521. Cached compiler stdout:
  3522.  
  3523. Cached compiler stderr:
  3524. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3525. 3 | using _LIBCPP_VERSION;
  3526. | ^~~~~~~~~~~~~~~
  3527.  
  3528. Using cached compile:
  3529. 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
  3530.  
  3531. Code:
  3532.  
  3533. #ifdef __has_include
  3534. #if !__has_include("version")
  3535. #error "Header 'version' could not be found"
  3536. #endif
  3537. #else
  3538. #include <version>
  3539. #endif
  3540. Cached compiler stdout:
  3541.  
  3542. Cached compiler stderr:
  3543.  
  3544. Using cached compile:
  3545. 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
  3546.  
  3547. Code:
  3548.  
  3549. #include <version>
  3550. int main(void) {
  3551. /* If it's not defined as a macro, try to use as a symbol */
  3552. #ifndef _LIBCPP_VERSION
  3553. _LIBCPP_VERSION;
  3554. #endif
  3555. return 0;
  3556. }
  3557. Cached compiler stdout:
  3558.  
  3559. Cached compiler stderr:
  3560. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3561. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3562. 6 | _LIBCPP_VERSION;
  3563. | ^~~~~~~~~~~~~~~
  3564.  
  3565. Using cached compile:
  3566. 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
  3567.  
  3568. Code:
  3569.  
  3570. #include <version>
  3571. using _LIBCPP_VERSION;
  3572. int main(void) { return 0; }
  3573. Cached compiler stdout:
  3574.  
  3575. Cached compiler stderr:
  3576. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3577. 3 | using _LIBCPP_VERSION;
  3578. | ^~~~~~~~~~~~~~~
  3579.  
  3580. Using cached compile:
  3581. 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
  3582.  
  3583. Code:
  3584.  
  3585. #ifdef __has_include
  3586. #if !__has_include("version")
  3587. #error "Header 'version' could not be found"
  3588. #endif
  3589. #else
  3590. #include <version>
  3591. #endif
  3592. Cached compiler stdout:
  3593.  
  3594. Cached compiler stderr:
  3595.  
  3596. Using cached compile:
  3597. 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
  3598.  
  3599. Code:
  3600.  
  3601. #include <version>
  3602. int main(void) {
  3603. /* If it's not defined as a macro, try to use as a symbol */
  3604. #ifndef _LIBCPP_VERSION
  3605. _LIBCPP_VERSION;
  3606. #endif
  3607. return 0;
  3608. }
  3609. Cached compiler stdout:
  3610.  
  3611. Cached compiler stderr:
  3612. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3613. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3614. 6 | _LIBCPP_VERSION;
  3615. | ^~~~~~~~~~~~~~~
  3616.  
  3617. Using cached compile:
  3618. 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
  3619.  
  3620. Code:
  3621.  
  3622. #include <version>
  3623. using _LIBCPP_VERSION;
  3624. int main(void) { return 0; }
  3625. Cached compiler stdout:
  3626.  
  3627. Cached compiler stderr:
  3628. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3629. 3 | using _LIBCPP_VERSION;
  3630. | ^~~~~~~~~~~~~~~
  3631.  
  3632. Using cached compile:
  3633. 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
  3634.  
  3635. Code:
  3636.  
  3637. #ifdef __has_include
  3638. #if !__has_include("version")
  3639. #error "Header 'version' could not be found"
  3640. #endif
  3641. #else
  3642. #include <version>
  3643. #endif
  3644. Cached compiler stdout:
  3645.  
  3646. Cached compiler stderr:
  3647.  
  3648. Using cached compile:
  3649. 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
  3650.  
  3651. Code:
  3652.  
  3653. #include <version>
  3654. int main(void) {
  3655. /* If it's not defined as a macro, try to use as a symbol */
  3656. #ifndef _LIBCPP_VERSION
  3657. _LIBCPP_VERSION;
  3658. #endif
  3659. return 0;
  3660. }
  3661. Cached compiler stdout:
  3662.  
  3663. Cached compiler stderr:
  3664. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3665. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3666. 6 | _LIBCPP_VERSION;
  3667. | ^~~~~~~~~~~~~~~
  3668.  
  3669. Using cached compile:
  3670. 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
  3671.  
  3672. Code:
  3673.  
  3674. #include <version>
  3675. using _LIBCPP_VERSION;
  3676. int main(void) { return 0; }
  3677. Cached compiler stdout:
  3678.  
  3679. Cached compiler stderr:
  3680. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3681. 3 | using _LIBCPP_VERSION;
  3682. | ^~~~~~~~~~~~~~~
  3683.  
  3684. Using cached compile:
  3685. 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
  3686.  
  3687. Code:
  3688.  
  3689. #ifdef __has_include
  3690. #if !__has_include("version")
  3691. #error "Header 'version' could not be found"
  3692. #endif
  3693. #else
  3694. #include <version>
  3695. #endif
  3696. Cached compiler stdout:
  3697.  
  3698. Cached compiler stderr:
  3699.  
  3700. Using cached compile:
  3701. 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
  3702.  
  3703. Code:
  3704.  
  3705. #include <version>
  3706. int main(void) {
  3707. /* If it's not defined as a macro, try to use as a symbol */
  3708. #ifndef _LIBCPP_VERSION
  3709. _LIBCPP_VERSION;
  3710. #endif
  3711. return 0;
  3712. }
  3713. Cached compiler stdout:
  3714.  
  3715. Cached compiler stderr:
  3716. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3717. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3718. 6 | _LIBCPP_VERSION;
  3719. | ^~~~~~~~~~~~~~~
  3720.  
  3721. Using cached compile:
  3722. 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
  3723.  
  3724. Code:
  3725.  
  3726. #include <version>
  3727. using _LIBCPP_VERSION;
  3728. int main(void) { return 0; }
  3729. Cached compiler stdout:
  3730.  
  3731. Cached compiler stderr:
  3732. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3733. 3 | using _LIBCPP_VERSION;
  3734. | ^~~~~~~~~~~~~~~
  3735.  
  3736. Using cached compile:
  3737. 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
  3738.  
  3739. Code:
  3740.  
  3741. #ifdef __has_include
  3742. #if !__has_include("version")
  3743. #error "Header 'version' could not be found"
  3744. #endif
  3745. #else
  3746. #include <version>
  3747. #endif
  3748. Cached compiler stdout:
  3749.  
  3750. Cached compiler stderr:
  3751.  
  3752. Using cached compile:
  3753. 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
  3754.  
  3755. Code:
  3756.  
  3757. #include <version>
  3758. int main(void) {
  3759. /* If it's not defined as a macro, try to use as a symbol */
  3760. #ifndef _LIBCPP_VERSION
  3761. _LIBCPP_VERSION;
  3762. #endif
  3763. return 0;
  3764. }
  3765. Cached compiler stdout:
  3766.  
  3767. Cached compiler stderr:
  3768. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3769. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3770. 6 | _LIBCPP_VERSION;
  3771. | ^~~~~~~~~~~~~~~
  3772.  
  3773. Using cached compile:
  3774. 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
  3775.  
  3776. Code:
  3777.  
  3778. #include <version>
  3779. using _LIBCPP_VERSION;
  3780. int main(void) { return 0; }
  3781. Cached compiler stdout:
  3782.  
  3783. Cached compiler stderr:
  3784. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3785. 3 | using _LIBCPP_VERSION;
  3786. | ^~~~~~~~~~~~~~~
  3787.  
  3788. Using cached compile:
  3789. 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
  3790.  
  3791. Code:
  3792.  
  3793. #ifdef __has_include
  3794. #if !__has_include("version")
  3795. #error "Header 'version' could not be found"
  3796. #endif
  3797. #else
  3798. #include <version>
  3799. #endif
  3800. Cached compiler stdout:
  3801.  
  3802. Cached compiler stderr:
  3803.  
  3804. Using cached compile:
  3805. 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
  3806.  
  3807. Code:
  3808.  
  3809. #include <version>
  3810. int main(void) {
  3811. /* If it's not defined as a macro, try to use as a symbol */
  3812. #ifndef _LIBCPP_VERSION
  3813. _LIBCPP_VERSION;
  3814. #endif
  3815. return 0;
  3816. }
  3817. Cached compiler stdout:
  3818.  
  3819. Cached compiler stderr:
  3820. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3821. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3822. 6 | _LIBCPP_VERSION;
  3823. | ^~~~~~~~~~~~~~~
  3824.  
  3825. Using cached compile:
  3826. 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
  3827.  
  3828. Code:
  3829.  
  3830. #include <version>
  3831. using _LIBCPP_VERSION;
  3832. int main(void) { return 0; }
  3833. Cached compiler stdout:
  3834.  
  3835. Cached compiler stderr:
  3836. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3837. 3 | using _LIBCPP_VERSION;
  3838. | ^~~~~~~~~~~~~~~
  3839.  
  3840. Using cached compile:
  3841. 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
  3842.  
  3843. Code:
  3844.  
  3845. #ifdef __has_include
  3846. #if !__has_include("version")
  3847. #error "Header 'version' could not be found"
  3848. #endif
  3849. #else
  3850. #include <version>
  3851. #endif
  3852. Cached compiler stdout:
  3853.  
  3854. Cached compiler stderr:
  3855.  
  3856. Using cached compile:
  3857. 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
  3858.  
  3859. Code:
  3860.  
  3861. #include <version>
  3862. int main(void) {
  3863. /* If it's not defined as a macro, try to use as a symbol */
  3864. #ifndef _LIBCPP_VERSION
  3865. _LIBCPP_VERSION;
  3866. #endif
  3867. return 0;
  3868. }
  3869. Cached compiler stdout:
  3870.  
  3871. Cached compiler stderr:
  3872. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3873. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3874. 6 | _LIBCPP_VERSION;
  3875. | ^~~~~~~~~~~~~~~
  3876.  
  3877. Using cached compile:
  3878. 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
  3879.  
  3880. Code:
  3881.  
  3882. #include <version>
  3883. using _LIBCPP_VERSION;
  3884. int main(void) { return 0; }
  3885. Cached compiler stdout:
  3886.  
  3887. Cached compiler stderr:
  3888. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3889. 3 | using _LIBCPP_VERSION;
  3890. | ^~~~~~~~~~~~~~~
  3891.  
  3892. Using cached compile:
  3893. 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
  3894.  
  3895. Code:
  3896.  
  3897. #ifdef __has_include
  3898. #if !__has_include("version")
  3899. #error "Header 'version' could not be found"
  3900. #endif
  3901. #else
  3902. #include <version>
  3903. #endif
  3904. Cached compiler stdout:
  3905.  
  3906. Cached compiler stderr:
  3907.  
  3908. Using cached compile:
  3909. 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
  3910.  
  3911. Code:
  3912.  
  3913. #include <version>
  3914. int main(void) {
  3915. /* If it's not defined as a macro, try to use as a symbol */
  3916. #ifndef _LIBCPP_VERSION
  3917. _LIBCPP_VERSION;
  3918. #endif
  3919. return 0;
  3920. }
  3921. Cached compiler stdout:
  3922.  
  3923. Cached compiler stderr:
  3924. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3925. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3926. 6 | _LIBCPP_VERSION;
  3927. | ^~~~~~~~~~~~~~~
  3928.  
  3929. Using cached compile:
  3930. 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
  3931.  
  3932. Code:
  3933.  
  3934. #include <version>
  3935. using _LIBCPP_VERSION;
  3936. int main(void) { return 0; }
  3937. Cached compiler stdout:
  3938.  
  3939. Cached compiler stderr:
  3940. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3941. 3 | using _LIBCPP_VERSION;
  3942. | ^~~~~~~~~~~~~~~
  3943.  
  3944. Using cached compile:
  3945. 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
  3946.  
  3947. Code:
  3948.  
  3949. #ifdef __has_include
  3950. #if !__has_include("version")
  3951. #error "Header 'version' could not be found"
  3952. #endif
  3953. #else
  3954. #include <version>
  3955. #endif
  3956. Cached compiler stdout:
  3957.  
  3958. Cached compiler stderr:
  3959.  
  3960. Using cached compile:
  3961. 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
  3962.  
  3963. Code:
  3964.  
  3965. #include <version>
  3966. int main(void) {
  3967. /* If it's not defined as a macro, try to use as a symbol */
  3968. #ifndef _LIBCPP_VERSION
  3969. _LIBCPP_VERSION;
  3970. #endif
  3971. return 0;
  3972. }
  3973. Cached compiler stdout:
  3974.  
  3975. Cached compiler stderr:
  3976. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  3977. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  3978. 6 | _LIBCPP_VERSION;
  3979. | ^~~~~~~~~~~~~~~
  3980.  
  3981. Using cached compile:
  3982. 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
  3983.  
  3984. Code:
  3985.  
  3986. #include <version>
  3987. using _LIBCPP_VERSION;
  3988. int main(void) { return 0; }
  3989. Cached compiler stdout:
  3990.  
  3991. Cached compiler stderr:
  3992. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  3993. 3 | using _LIBCPP_VERSION;
  3994. | ^~~~~~~~~~~~~~~
  3995.  
  3996. Using cached compile:
  3997. 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
  3998.  
  3999. Code:
  4000.  
  4001. #ifdef __has_include
  4002. #if !__has_include("version")
  4003. #error "Header 'version' could not be found"
  4004. #endif
  4005. #else
  4006. #include <version>
  4007. #endif
  4008. Cached compiler stdout:
  4009.  
  4010. Cached compiler stderr:
  4011.  
  4012. Using cached compile:
  4013. 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
  4014.  
  4015. Code:
  4016.  
  4017. #include <version>
  4018. int main(void) {
  4019. /* If it's not defined as a macro, try to use as a symbol */
  4020. #ifndef _LIBCPP_VERSION
  4021. _LIBCPP_VERSION;
  4022. #endif
  4023. return 0;
  4024. }
  4025. Cached compiler stdout:
  4026.  
  4027. Cached compiler stderr:
  4028. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4029. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4030. 6 | _LIBCPP_VERSION;
  4031. | ^~~~~~~~~~~~~~~
  4032.  
  4033. Using cached compile:
  4034. 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
  4035.  
  4036. Code:
  4037.  
  4038. #include <version>
  4039. using _LIBCPP_VERSION;
  4040. int main(void) { return 0; }
  4041. Cached compiler stdout:
  4042.  
  4043. Cached compiler stderr:
  4044. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4045. 3 | using _LIBCPP_VERSION;
  4046. | ^~~~~~~~~~~~~~~
  4047.  
  4048. Using cached compile:
  4049. 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
  4050.  
  4051. Code:
  4052.  
  4053. #ifdef __has_include
  4054. #if !__has_include("version")
  4055. #error "Header 'version' could not be found"
  4056. #endif
  4057. #else
  4058. #include <version>
  4059. #endif
  4060. Cached compiler stdout:
  4061.  
  4062. Cached compiler stderr:
  4063.  
  4064. Using cached compile:
  4065. 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
  4066.  
  4067. Code:
  4068.  
  4069. #include <version>
  4070. int main(void) {
  4071. /* If it's not defined as a macro, try to use as a symbol */
  4072. #ifndef _LIBCPP_VERSION
  4073. _LIBCPP_VERSION;
  4074. #endif
  4075. return 0;
  4076. }
  4077. Cached compiler stdout:
  4078.  
  4079. Cached compiler stderr:
  4080. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4081. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4082. 6 | _LIBCPP_VERSION;
  4083. | ^~~~~~~~~~~~~~~
  4084.  
  4085. Using cached compile:
  4086. 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
  4087.  
  4088. Code:
  4089.  
  4090. #include <version>
  4091. using _LIBCPP_VERSION;
  4092. int main(void) { return 0; }
  4093. Cached compiler stdout:
  4094.  
  4095. Cached compiler stderr:
  4096. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4097. 3 | using _LIBCPP_VERSION;
  4098. | ^~~~~~~~~~~~~~~
  4099.  
  4100. Using cached compile:
  4101. 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
  4102.  
  4103. Code:
  4104.  
  4105. #ifdef __has_include
  4106. #if !__has_include("version")
  4107. #error "Header 'version' could not be found"
  4108. #endif
  4109. #else
  4110. #include <version>
  4111. #endif
  4112. Cached compiler stdout:
  4113.  
  4114. Cached compiler stderr:
  4115.  
  4116. Using cached compile:
  4117. 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
  4118.  
  4119. Code:
  4120.  
  4121. #include <version>
  4122. int main(void) {
  4123. /* If it's not defined as a macro, try to use as a symbol */
  4124. #ifndef _LIBCPP_VERSION
  4125. _LIBCPP_VERSION;
  4126. #endif
  4127. return 0;
  4128. }
  4129. Cached compiler stdout:
  4130.  
  4131. Cached compiler stderr:
  4132. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4133. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4134. 6 | _LIBCPP_VERSION;
  4135. | ^~~~~~~~~~~~~~~
  4136.  
  4137. Using cached compile:
  4138. 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
  4139.  
  4140. Code:
  4141.  
  4142. #include <version>
  4143. using _LIBCPP_VERSION;
  4144. int main(void) { return 0; }
  4145. Cached compiler stdout:
  4146.  
  4147. Cached compiler stderr:
  4148. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4149. 3 | using _LIBCPP_VERSION;
  4150. | ^~~~~~~~~~~~~~~
  4151.  
  4152. Using cached compile:
  4153. 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
  4154.  
  4155. Code:
  4156.  
  4157. #ifdef __has_include
  4158. #if !__has_include("version")
  4159. #error "Header 'version' could not be found"
  4160. #endif
  4161. #else
  4162. #include <version>
  4163. #endif
  4164. Cached compiler stdout:
  4165.  
  4166. Cached compiler stderr:
  4167.  
  4168. Using cached compile:
  4169. 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
  4170.  
  4171. Code:
  4172.  
  4173. #include <version>
  4174. int main(void) {
  4175. /* If it's not defined as a macro, try to use as a symbol */
  4176. #ifndef _LIBCPP_VERSION
  4177. _LIBCPP_VERSION;
  4178. #endif
  4179. return 0;
  4180. }
  4181. Cached compiler stdout:
  4182.  
  4183. Cached compiler stderr:
  4184. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4185. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4186. 6 | _LIBCPP_VERSION;
  4187. | ^~~~~~~~~~~~~~~
  4188.  
  4189. Using cached compile:
  4190. 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
  4191.  
  4192. Code:
  4193.  
  4194. #include <version>
  4195. using _LIBCPP_VERSION;
  4196. int main(void) { return 0; }
  4197. Cached compiler stdout:
  4198.  
  4199. Cached compiler stderr:
  4200. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4201. 3 | using _LIBCPP_VERSION;
  4202. | ^~~~~~~~~~~~~~~
  4203.  
  4204. Using cached compile:
  4205. 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
  4206.  
  4207. Code:
  4208.  
  4209. #ifdef __has_include
  4210. #if !__has_include("version")
  4211. #error "Header 'version' could not be found"
  4212. #endif
  4213. #else
  4214. #include <version>
  4215. #endif
  4216. Cached compiler stdout:
  4217.  
  4218. Cached compiler stderr:
  4219.  
  4220. Using cached compile:
  4221. 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
  4222.  
  4223. Code:
  4224.  
  4225. #include <version>
  4226. int main(void) {
  4227. /* If it's not defined as a macro, try to use as a symbol */
  4228. #ifndef _LIBCPP_VERSION
  4229. _LIBCPP_VERSION;
  4230. #endif
  4231. return 0;
  4232. }
  4233. Cached compiler stdout:
  4234.  
  4235. Cached compiler stderr:
  4236. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4237. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4238. 6 | _LIBCPP_VERSION;
  4239. | ^~~~~~~~~~~~~~~
  4240.  
  4241. Using cached compile:
  4242. 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
  4243.  
  4244. Code:
  4245.  
  4246. #include <version>
  4247. using _LIBCPP_VERSION;
  4248. int main(void) { return 0; }
  4249. Cached compiler stdout:
  4250.  
  4251. Cached compiler stderr:
  4252. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4253. 3 | using _LIBCPP_VERSION;
  4254. | ^~~~~~~~~~~~~~~
  4255.  
  4256. Using cached compile:
  4257. 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
  4258.  
  4259. Code:
  4260.  
  4261. #ifdef __has_include
  4262. #if !__has_include("version")
  4263. #error "Header 'version' could not be found"
  4264. #endif
  4265. #else
  4266. #include <version>
  4267. #endif
  4268. Cached compiler stdout:
  4269.  
  4270. Cached compiler stderr:
  4271.  
  4272. Using cached compile:
  4273. 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
  4274.  
  4275. Code:
  4276.  
  4277. #include <version>
  4278. int main(void) {
  4279. /* If it's not defined as a macro, try to use as a symbol */
  4280. #ifndef _LIBCPP_VERSION
  4281. _LIBCPP_VERSION;
  4282. #endif
  4283. return 0;
  4284. }
  4285. Cached compiler stdout:
  4286.  
  4287. Cached compiler stderr:
  4288. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4289. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4290. 6 | _LIBCPP_VERSION;
  4291. | ^~~~~~~~~~~~~~~
  4292.  
  4293. Using cached compile:
  4294. 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
  4295.  
  4296. Code:
  4297.  
  4298. #include <version>
  4299. using _LIBCPP_VERSION;
  4300. int main(void) { return 0; }
  4301. Cached compiler stdout:
  4302.  
  4303. Cached compiler stderr:
  4304. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4305. 3 | using _LIBCPP_VERSION;
  4306. | ^~~~~~~~~~~~~~~
  4307.  
  4308. Using cached compile:
  4309. 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
  4310.  
  4311. Code:
  4312.  
  4313. #ifdef __has_include
  4314. #if !__has_include("version")
  4315. #error "Header 'version' could not be found"
  4316. #endif
  4317. #else
  4318. #include <version>
  4319. #endif
  4320. Cached compiler stdout:
  4321.  
  4322. Cached compiler stderr:
  4323.  
  4324. Using cached compile:
  4325. 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
  4326.  
  4327. Code:
  4328.  
  4329. #include <version>
  4330. int main(void) {
  4331. /* If it's not defined as a macro, try to use as a symbol */
  4332. #ifndef _LIBCPP_VERSION
  4333. _LIBCPP_VERSION;
  4334. #endif
  4335. return 0;
  4336. }
  4337. Cached compiler stdout:
  4338.  
  4339. Cached compiler stderr:
  4340. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4341. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4342. 6 | _LIBCPP_VERSION;
  4343. | ^~~~~~~~~~~~~~~
  4344.  
  4345. Using cached compile:
  4346. 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
  4347.  
  4348. Code:
  4349.  
  4350. #include <version>
  4351. using _LIBCPP_VERSION;
  4352. int main(void) { return 0; }
  4353. Cached compiler stdout:
  4354.  
  4355. Cached compiler stderr:
  4356. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4357. 3 | using _LIBCPP_VERSION;
  4358. | ^~~~~~~~~~~~~~~
  4359.  
  4360. Using cached compile:
  4361. 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
  4362.  
  4363. Code:
  4364.  
  4365. #ifdef __has_include
  4366. #if !__has_include("version")
  4367. #error "Header 'version' could not be found"
  4368. #endif
  4369. #else
  4370. #include <version>
  4371. #endif
  4372. Cached compiler stdout:
  4373.  
  4374. Cached compiler stderr:
  4375.  
  4376. Using cached compile:
  4377. 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
  4378.  
  4379. Code:
  4380.  
  4381. #include <version>
  4382. int main(void) {
  4383. /* If it's not defined as a macro, try to use as a symbol */
  4384. #ifndef _LIBCPP_VERSION
  4385. _LIBCPP_VERSION;
  4386. #endif
  4387. return 0;
  4388. }
  4389. Cached compiler stdout:
  4390.  
  4391. Cached compiler stderr:
  4392. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4393. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4394. 6 | _LIBCPP_VERSION;
  4395. | ^~~~~~~~~~~~~~~
  4396.  
  4397. Using cached compile:
  4398. 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
  4399.  
  4400. Code:
  4401.  
  4402. #include <version>
  4403. using _LIBCPP_VERSION;
  4404. int main(void) { return 0; }
  4405. Cached compiler stdout:
  4406.  
  4407. Cached compiler stderr:
  4408. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4409. 3 | using _LIBCPP_VERSION;
  4410. | ^~~~~~~~~~~~~~~
  4411.  
  4412. Using cached compile:
  4413. 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
  4414.  
  4415. Code:
  4416.  
  4417. #ifdef __has_include
  4418. #if !__has_include("version")
  4419. #error "Header 'version' could not be found"
  4420. #endif
  4421. #else
  4422. #include <version>
  4423. #endif
  4424. Cached compiler stdout:
  4425.  
  4426. Cached compiler stderr:
  4427.  
  4428. Using cached compile:
  4429. 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
  4430.  
  4431. Code:
  4432.  
  4433. #include <version>
  4434. int main(void) {
  4435. /* If it's not defined as a macro, try to use as a symbol */
  4436. #ifndef _LIBCPP_VERSION
  4437. _LIBCPP_VERSION;
  4438. #endif
  4439. return 0;
  4440. }
  4441. Cached compiler stdout:
  4442.  
  4443. Cached compiler stderr:
  4444. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4445. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4446. 6 | _LIBCPP_VERSION;
  4447. | ^~~~~~~~~~~~~~~
  4448.  
  4449. Using cached compile:
  4450. 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
  4451.  
  4452. Code:
  4453.  
  4454. #include <version>
  4455. using _LIBCPP_VERSION;
  4456. int main(void) { return 0; }
  4457. Cached compiler stdout:
  4458.  
  4459. Cached compiler stderr:
  4460. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4461. 3 | using _LIBCPP_VERSION;
  4462. | ^~~~~~~~~~~~~~~
  4463.  
  4464. Using cached compile:
  4465. 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
  4466.  
  4467. Code:
  4468.  
  4469. #ifdef __has_include
  4470. #if !__has_include("version")
  4471. #error "Header 'version' could not be found"
  4472. #endif
  4473. #else
  4474. #include <version>
  4475. #endif
  4476. Cached compiler stdout:
  4477.  
  4478. Cached compiler stderr:
  4479.  
  4480. Using cached compile:
  4481. 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
  4482.  
  4483. Code:
  4484.  
  4485. #include <version>
  4486. int main(void) {
  4487. /* If it's not defined as a macro, try to use as a symbol */
  4488. #ifndef _LIBCPP_VERSION
  4489. _LIBCPP_VERSION;
  4490. #endif
  4491. return 0;
  4492. }
  4493. Cached compiler stdout:
  4494.  
  4495. Cached compiler stderr:
  4496. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4497. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4498. 6 | _LIBCPP_VERSION;
  4499. | ^~~~~~~~~~~~~~~
  4500.  
  4501. Using cached compile:
  4502. 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
  4503.  
  4504. Code:
  4505.  
  4506. #include <version>
  4507. using _LIBCPP_VERSION;
  4508. int main(void) { return 0; }
  4509. Cached compiler stdout:
  4510.  
  4511. Cached compiler stderr:
  4512. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4513. 3 | using _LIBCPP_VERSION;
  4514. | ^~~~~~~~~~~~~~~
  4515.  
  4516. Using cached compile:
  4517. 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
  4518.  
  4519. Code:
  4520.  
  4521. #ifdef __has_include
  4522. #if !__has_include("version")
  4523. #error "Header 'version' could not be found"
  4524. #endif
  4525. #else
  4526. #include <version>
  4527. #endif
  4528. Cached compiler stdout:
  4529.  
  4530. Cached compiler stderr:
  4531.  
  4532. Using cached compile:
  4533. 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
  4534.  
  4535. Code:
  4536.  
  4537. #include <version>
  4538. int main(void) {
  4539. /* If it's not defined as a macro, try to use as a symbol */
  4540. #ifndef _LIBCPP_VERSION
  4541. _LIBCPP_VERSION;
  4542. #endif
  4543. return 0;
  4544. }
  4545. Cached compiler stdout:
  4546.  
  4547. Cached compiler stderr:
  4548. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4549. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4550. 6 | _LIBCPP_VERSION;
  4551. | ^~~~~~~~~~~~~~~
  4552.  
  4553. Using cached compile:
  4554. 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
  4555.  
  4556. Code:
  4557.  
  4558. #include <version>
  4559. using _LIBCPP_VERSION;
  4560. int main(void) { return 0; }
  4561. Cached compiler stdout:
  4562.  
  4563. Cached compiler stderr:
  4564. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4565. 3 | using _LIBCPP_VERSION;
  4566. | ^~~~~~~~~~~~~~~
  4567.  
  4568. Using cached compile:
  4569. 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
  4570.  
  4571. Code:
  4572.  
  4573. #ifdef __has_include
  4574. #if !__has_include("version")
  4575. #error "Header 'version' could not be found"
  4576. #endif
  4577. #else
  4578. #include <version>
  4579. #endif
  4580. Cached compiler stdout:
  4581.  
  4582. Cached compiler stderr:
  4583.  
  4584. Using cached compile:
  4585. 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
  4586.  
  4587. Code:
  4588.  
  4589. #include <version>
  4590. int main(void) {
  4591. /* If it's not defined as a macro, try to use as a symbol */
  4592. #ifndef _LIBCPP_VERSION
  4593. _LIBCPP_VERSION;
  4594. #endif
  4595. return 0;
  4596. }
  4597. Cached compiler stdout:
  4598.  
  4599. Cached compiler stderr:
  4600. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4601. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4602. 6 | _LIBCPP_VERSION;
  4603. | ^~~~~~~~~~~~~~~
  4604.  
  4605. Using cached compile:
  4606. 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
  4607.  
  4608. Code:
  4609.  
  4610. #include <version>
  4611. using _LIBCPP_VERSION;
  4612. int main(void) { return 0; }
  4613. Cached compiler stdout:
  4614.  
  4615. Cached compiler stderr:
  4616. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4617. 3 | using _LIBCPP_VERSION;
  4618. | ^~~~~~~~~~~~~~~
  4619.  
  4620. Using cached compile:
  4621. 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
  4622.  
  4623. Code:
  4624.  
  4625. #ifdef __has_include
  4626. #if !__has_include("version")
  4627. #error "Header 'version' could not be found"
  4628. #endif
  4629. #else
  4630. #include <version>
  4631. #endif
  4632. Cached compiler stdout:
  4633.  
  4634. Cached compiler stderr:
  4635.  
  4636. Using cached compile:
  4637. 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
  4638.  
  4639. Code:
  4640.  
  4641. #include <version>
  4642. int main(void) {
  4643. /* If it's not defined as a macro, try to use as a symbol */
  4644. #ifndef _LIBCPP_VERSION
  4645. _LIBCPP_VERSION;
  4646. #endif
  4647. return 0;
  4648. }
  4649. Cached compiler stdout:
  4650.  
  4651. Cached compiler stderr:
  4652. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4653. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4654. 6 | _LIBCPP_VERSION;
  4655. | ^~~~~~~~~~~~~~~
  4656.  
  4657. Using cached compile:
  4658. 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
  4659.  
  4660. Code:
  4661.  
  4662. #include <version>
  4663. using _LIBCPP_VERSION;
  4664. int main(void) { return 0; }
  4665. Cached compiler stdout:
  4666.  
  4667. Cached compiler stderr:
  4668. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4669. 3 | using _LIBCPP_VERSION;
  4670. | ^~~~~~~~~~~~~~~
  4671.  
  4672. Using cached compile:
  4673. 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
  4674.  
  4675. Code:
  4676.  
  4677. #ifdef __has_include
  4678. #if !__has_include("version")
  4679. #error "Header 'version' could not be found"
  4680. #endif
  4681. #else
  4682. #include <version>
  4683. #endif
  4684. Cached compiler stdout:
  4685.  
  4686. Cached compiler stderr:
  4687.  
  4688. Using cached compile:
  4689. 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
  4690.  
  4691. Code:
  4692.  
  4693. #include <version>
  4694. int main(void) {
  4695. /* If it's not defined as a macro, try to use as a symbol */
  4696. #ifndef _LIBCPP_VERSION
  4697. _LIBCPP_VERSION;
  4698. #endif
  4699. return 0;
  4700. }
  4701. Cached compiler stdout:
  4702.  
  4703. Cached compiler stderr:
  4704. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4705. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4706. 6 | _LIBCPP_VERSION;
  4707. | ^~~~~~~~~~~~~~~
  4708.  
  4709. Using cached compile:
  4710. 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
  4711.  
  4712. Code:
  4713.  
  4714. #include <version>
  4715. using _LIBCPP_VERSION;
  4716. int main(void) { return 0; }
  4717. Cached compiler stdout:
  4718.  
  4719. Cached compiler stderr:
  4720. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4721. 3 | using _LIBCPP_VERSION;
  4722. | ^~~~~~~~~~~~~~~
  4723.  
  4724. Using cached compile:
  4725. 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
  4726.  
  4727. Code:
  4728.  
  4729. #ifdef __has_include
  4730. #if !__has_include("version")
  4731. #error "Header 'version' could not be found"
  4732. #endif
  4733. #else
  4734. #include <version>
  4735. #endif
  4736. Cached compiler stdout:
  4737.  
  4738. Cached compiler stderr:
  4739.  
  4740. Using cached compile:
  4741. 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
  4742.  
  4743. Code:
  4744.  
  4745. #include <version>
  4746. int main(void) {
  4747. /* If it's not defined as a macro, try to use as a symbol */
  4748. #ifndef _LIBCPP_VERSION
  4749. _LIBCPP_VERSION;
  4750. #endif
  4751. return 0;
  4752. }
  4753. Cached compiler stdout:
  4754.  
  4755. Cached compiler stderr:
  4756. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4757. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4758. 6 | _LIBCPP_VERSION;
  4759. | ^~~~~~~~~~~~~~~
  4760.  
  4761. Using cached compile:
  4762. 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
  4763.  
  4764. Code:
  4765.  
  4766. #include <version>
  4767. using _LIBCPP_VERSION;
  4768. int main(void) { return 0; }
  4769. Cached compiler stdout:
  4770.  
  4771. Cached compiler stderr:
  4772. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4773. 3 | using _LIBCPP_VERSION;
  4774. | ^~~~~~~~~~~~~~~
  4775.  
  4776. Using cached compile:
  4777. 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
  4778.  
  4779. Code:
  4780.  
  4781. #ifdef __has_include
  4782. #if !__has_include("version")
  4783. #error "Header 'version' could not be found"
  4784. #endif
  4785. #else
  4786. #include <version>
  4787. #endif
  4788. Cached compiler stdout:
  4789.  
  4790. Cached compiler stderr:
  4791.  
  4792. Using cached compile:
  4793. 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
  4794.  
  4795. Code:
  4796.  
  4797. #include <version>
  4798. int main(void) {
  4799. /* If it's not defined as a macro, try to use as a symbol */
  4800. #ifndef _LIBCPP_VERSION
  4801. _LIBCPP_VERSION;
  4802. #endif
  4803. return 0;
  4804. }
  4805. Cached compiler stdout:
  4806.  
  4807. Cached compiler stderr:
  4808. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4809. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4810. 6 | _LIBCPP_VERSION;
  4811. | ^~~~~~~~~~~~~~~
  4812.  
  4813. Using cached compile:
  4814. 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
  4815.  
  4816. Code:
  4817.  
  4818. #include <version>
  4819. using _LIBCPP_VERSION;
  4820. int main(void) { return 0; }
  4821. Cached compiler stdout:
  4822.  
  4823. Cached compiler stderr:
  4824. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4825. 3 | using _LIBCPP_VERSION;
  4826. | ^~~~~~~~~~~~~~~
  4827.  
  4828. Using cached compile:
  4829. 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
  4830.  
  4831. Code:
  4832.  
  4833. #ifdef __has_include
  4834. #if !__has_include("version")
  4835. #error "Header 'version' could not be found"
  4836. #endif
  4837. #else
  4838. #include <version>
  4839. #endif
  4840. Cached compiler stdout:
  4841.  
  4842. Cached compiler stderr:
  4843.  
  4844. Using cached compile:
  4845. 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
  4846.  
  4847. Code:
  4848.  
  4849. #include <version>
  4850. int main(void) {
  4851. /* If it's not defined as a macro, try to use as a symbol */
  4852. #ifndef _LIBCPP_VERSION
  4853. _LIBCPP_VERSION;
  4854. #endif
  4855. return 0;
  4856. }
  4857. Cached compiler stdout:
  4858.  
  4859. Cached compiler stderr:
  4860. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4861. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4862. 6 | _LIBCPP_VERSION;
  4863. | ^~~~~~~~~~~~~~~
  4864.  
  4865. Using cached compile:
  4866. 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
  4867.  
  4868. Code:
  4869.  
  4870. #include <version>
  4871. using _LIBCPP_VERSION;
  4872. int main(void) { return 0; }
  4873. Cached compiler stdout:
  4874.  
  4875. Cached compiler stderr:
  4876. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4877. 3 | using _LIBCPP_VERSION;
  4878. | ^~~~~~~~~~~~~~~
  4879.  
  4880. Using cached compile:
  4881. 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
  4882.  
  4883. Code:
  4884.  
  4885. #ifdef __has_include
  4886. #if !__has_include("version")
  4887. #error "Header 'version' could not be found"
  4888. #endif
  4889. #else
  4890. #include <version>
  4891. #endif
  4892. Cached compiler stdout:
  4893.  
  4894. Cached compiler stderr:
  4895.  
  4896. Using cached compile:
  4897. 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
  4898.  
  4899. Code:
  4900.  
  4901. #include <version>
  4902. int main(void) {
  4903. /* If it's not defined as a macro, try to use as a symbol */
  4904. #ifndef _LIBCPP_VERSION
  4905. _LIBCPP_VERSION;
  4906. #endif
  4907. return 0;
  4908. }
  4909. Cached compiler stdout:
  4910.  
  4911. Cached compiler stderr:
  4912. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4913. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4914. 6 | _LIBCPP_VERSION;
  4915. | ^~~~~~~~~~~~~~~
  4916.  
  4917. Using cached compile:
  4918. 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
  4919.  
  4920. Code:
  4921.  
  4922. #include <version>
  4923. using _LIBCPP_VERSION;
  4924. int main(void) { return 0; }
  4925. Cached compiler stdout:
  4926.  
  4927. Cached compiler stderr:
  4928. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4929. 3 | using _LIBCPP_VERSION;
  4930. | ^~~~~~~~~~~~~~~
  4931.  
  4932. Using cached compile:
  4933. 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
  4934.  
  4935. Code:
  4936.  
  4937. #ifdef __has_include
  4938. #if !__has_include("version")
  4939. #error "Header 'version' could not be found"
  4940. #endif
  4941. #else
  4942. #include <version>
  4943. #endif
  4944. Cached compiler stdout:
  4945.  
  4946. Cached compiler stderr:
  4947.  
  4948. Using cached compile:
  4949. 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
  4950.  
  4951. Code:
  4952.  
  4953. #include <version>
  4954. int main(void) {
  4955. /* If it's not defined as a macro, try to use as a symbol */
  4956. #ifndef _LIBCPP_VERSION
  4957. _LIBCPP_VERSION;
  4958. #endif
  4959. return 0;
  4960. }
  4961. Cached compiler stdout:
  4962.  
  4963. Cached compiler stderr:
  4964. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  4965. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  4966. 6 | _LIBCPP_VERSION;
  4967. | ^~~~~~~~~~~~~~~
  4968.  
  4969. Using cached compile:
  4970. 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
  4971.  
  4972. Code:
  4973.  
  4974. #include <version>
  4975. using _LIBCPP_VERSION;
  4976. int main(void) { return 0; }
  4977. Cached compiler stdout:
  4978.  
  4979. Cached compiler stderr:
  4980. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  4981. 3 | using _LIBCPP_VERSION;
  4982. | ^~~~~~~~~~~~~~~
  4983.  
  4984. Using cached compile:
  4985. 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
  4986.  
  4987. Code:
  4988.  
  4989. #ifdef __has_include
  4990. #if !__has_include("version")
  4991. #error "Header 'version' could not be found"
  4992. #endif
  4993. #else
  4994. #include <version>
  4995. #endif
  4996. Cached compiler stdout:
  4997.  
  4998. Cached compiler stderr:
  4999.  
  5000. Using cached compile:
  5001. 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
  5002.  
  5003. Code:
  5004.  
  5005. #include <version>
  5006. int main(void) {
  5007. /* If it's not defined as a macro, try to use as a symbol */
  5008. #ifndef _LIBCPP_VERSION
  5009. _LIBCPP_VERSION;
  5010. #endif
  5011. return 0;
  5012. }
  5013. Cached compiler stdout:
  5014.  
  5015. Cached compiler stderr:
  5016. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5017. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5018. 6 | _LIBCPP_VERSION;
  5019. | ^~~~~~~~~~~~~~~
  5020.  
  5021. Using cached compile:
  5022. 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
  5023.  
  5024. Code:
  5025.  
  5026. #include <version>
  5027. using _LIBCPP_VERSION;
  5028. int main(void) { return 0; }
  5029. Cached compiler stdout:
  5030.  
  5031. Cached compiler stderr:
  5032. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5033. 3 | using _LIBCPP_VERSION;
  5034. | ^~~~~~~~~~~~~~~
  5035.  
  5036. Using cached compile:
  5037. 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
  5038.  
  5039. Code:
  5040.  
  5041. #ifdef __has_include
  5042. #if !__has_include("version")
  5043. #error "Header 'version' could not be found"
  5044. #endif
  5045. #else
  5046. #include <version>
  5047. #endif
  5048. Cached compiler stdout:
  5049.  
  5050. Cached compiler stderr:
  5051.  
  5052. Using cached compile:
  5053. 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
  5054.  
  5055. Code:
  5056.  
  5057. #include <version>
  5058. int main(void) {
  5059. /* If it's not defined as a macro, try to use as a symbol */
  5060. #ifndef _LIBCPP_VERSION
  5061. _LIBCPP_VERSION;
  5062. #endif
  5063. return 0;
  5064. }
  5065. Cached compiler stdout:
  5066.  
  5067. Cached compiler stderr:
  5068. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5069. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5070. 6 | _LIBCPP_VERSION;
  5071. | ^~~~~~~~~~~~~~~
  5072.  
  5073. Using cached compile:
  5074. 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
  5075.  
  5076. Code:
  5077.  
  5078. #include <version>
  5079. using _LIBCPP_VERSION;
  5080. int main(void) { return 0; }
  5081. Cached compiler stdout:
  5082.  
  5083. Cached compiler stderr:
  5084. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5085. 3 | using _LIBCPP_VERSION;
  5086. | ^~~~~~~~~~~~~~~
  5087.  
  5088. Using cached compile:
  5089. 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
  5090.  
  5091. Code:
  5092.  
  5093. #ifdef __has_include
  5094. #if !__has_include("version")
  5095. #error "Header 'version' could not be found"
  5096. #endif
  5097. #else
  5098. #include <version>
  5099. #endif
  5100. Cached compiler stdout:
  5101.  
  5102. Cached compiler stderr:
  5103.  
  5104. Using cached compile:
  5105. 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
  5106.  
  5107. Code:
  5108.  
  5109. #include <version>
  5110. int main(void) {
  5111. /* If it's not defined as a macro, try to use as a symbol */
  5112. #ifndef _LIBCPP_VERSION
  5113. _LIBCPP_VERSION;
  5114. #endif
  5115. return 0;
  5116. }
  5117. Cached compiler stdout:
  5118.  
  5119. Cached compiler stderr:
  5120. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5121. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5122. 6 | _LIBCPP_VERSION;
  5123. | ^~~~~~~~~~~~~~~
  5124.  
  5125. Using cached compile:
  5126. 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
  5127.  
  5128. Code:
  5129.  
  5130. #include <version>
  5131. using _LIBCPP_VERSION;
  5132. int main(void) { return 0; }
  5133. Cached compiler stdout:
  5134.  
  5135. Cached compiler stderr:
  5136. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5137. 3 | using _LIBCPP_VERSION;
  5138. | ^~~~~~~~~~~~~~~
  5139.  
  5140. Using cached compile:
  5141. 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
  5142.  
  5143. Code:
  5144.  
  5145. #ifdef __has_include
  5146. #if !__has_include("version")
  5147. #error "Header 'version' could not be found"
  5148. #endif
  5149. #else
  5150. #include <version>
  5151. #endif
  5152. Cached compiler stdout:
  5153.  
  5154. Cached compiler stderr:
  5155.  
  5156. Using cached compile:
  5157. 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
  5158.  
  5159. Code:
  5160.  
  5161. #include <version>
  5162. int main(void) {
  5163. /* If it's not defined as a macro, try to use as a symbol */
  5164. #ifndef _LIBCPP_VERSION
  5165. _LIBCPP_VERSION;
  5166. #endif
  5167. return 0;
  5168. }
  5169. Cached compiler stdout:
  5170.  
  5171. Cached compiler stderr:
  5172. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5173. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5174. 6 | _LIBCPP_VERSION;
  5175. | ^~~~~~~~~~~~~~~
  5176.  
  5177. Using cached compile:
  5178. 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
  5179.  
  5180. Code:
  5181.  
  5182. #include <version>
  5183. using _LIBCPP_VERSION;
  5184. int main(void) { return 0; }
  5185. Cached compiler stdout:
  5186.  
  5187. Cached compiler stderr:
  5188. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5189. 3 | using _LIBCPP_VERSION;
  5190. | ^~~~~~~~~~~~~~~
  5191.  
  5192. Using cached compile:
  5193. 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
  5194.  
  5195. Code:
  5196.  
  5197. #ifdef __has_include
  5198. #if !__has_include("version")
  5199. #error "Header 'version' could not be found"
  5200. #endif
  5201. #else
  5202. #include <version>
  5203. #endif
  5204. Cached compiler stdout:
  5205.  
  5206. Cached compiler stderr:
  5207.  
  5208. Using cached compile:
  5209. 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
  5210.  
  5211. Code:
  5212.  
  5213. #include <version>
  5214. int main(void) {
  5215. /* If it's not defined as a macro, try to use as a symbol */
  5216. #ifndef _LIBCPP_VERSION
  5217. _LIBCPP_VERSION;
  5218. #endif
  5219. return 0;
  5220. }
  5221. Cached compiler stdout:
  5222.  
  5223. Cached compiler stderr:
  5224. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5225. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5226. 6 | _LIBCPP_VERSION;
  5227. | ^~~~~~~~~~~~~~~
  5228.  
  5229. Using cached compile:
  5230. 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
  5231.  
  5232. Code:
  5233.  
  5234. #include <version>
  5235. using _LIBCPP_VERSION;
  5236. int main(void) { return 0; }
  5237. Cached compiler stdout:
  5238.  
  5239. Cached compiler stderr:
  5240. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5241. 3 | using _LIBCPP_VERSION;
  5242. | ^~~~~~~~~~~~~~~
  5243.  
  5244. Using cached compile:
  5245. 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
  5246.  
  5247. Code:
  5248.  
  5249. #ifdef __has_include
  5250. #if !__has_include("version")
  5251. #error "Header 'version' could not be found"
  5252. #endif
  5253. #else
  5254. #include <version>
  5255. #endif
  5256. Cached compiler stdout:
  5257.  
  5258. Cached compiler stderr:
  5259.  
  5260. Using cached compile:
  5261. 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
  5262.  
  5263. Code:
  5264.  
  5265. #include <version>
  5266. int main(void) {
  5267. /* If it's not defined as a macro, try to use as a symbol */
  5268. #ifndef _LIBCPP_VERSION
  5269. _LIBCPP_VERSION;
  5270. #endif
  5271. return 0;
  5272. }
  5273. Cached compiler stdout:
  5274.  
  5275. Cached compiler stderr:
  5276. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5277. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5278. 6 | _LIBCPP_VERSION;
  5279. | ^~~~~~~~~~~~~~~
  5280.  
  5281. Using cached compile:
  5282. 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
  5283.  
  5284. Code:
  5285.  
  5286. #include <version>
  5287. using _LIBCPP_VERSION;
  5288. int main(void) { return 0; }
  5289. Cached compiler stdout:
  5290.  
  5291. Cached compiler stderr:
  5292. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5293. 3 | using _LIBCPP_VERSION;
  5294. | ^~~~~~~~~~~~~~~
  5295.  
  5296. Using cached compile:
  5297. 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
  5298.  
  5299. Code:
  5300.  
  5301. #ifdef __has_include
  5302. #if !__has_include("version")
  5303. #error "Header 'version' could not be found"
  5304. #endif
  5305. #else
  5306. #include <version>
  5307. #endif
  5308. Cached compiler stdout:
  5309.  
  5310. Cached compiler stderr:
  5311.  
  5312. Using cached compile:
  5313. 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
  5314.  
  5315. Code:
  5316.  
  5317. #include <version>
  5318. int main(void) {
  5319. /* If it's not defined as a macro, try to use as a symbol */
  5320. #ifndef _LIBCPP_VERSION
  5321. _LIBCPP_VERSION;
  5322. #endif
  5323. return 0;
  5324. }
  5325. Cached compiler stdout:
  5326.  
  5327. Cached compiler stderr:
  5328. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5329. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5330. 6 | _LIBCPP_VERSION;
  5331. | ^~~~~~~~~~~~~~~
  5332.  
  5333. Using cached compile:
  5334. 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
  5335.  
  5336. Code:
  5337.  
  5338. #include <version>
  5339. using _LIBCPP_VERSION;
  5340. int main(void) { return 0; }
  5341. Cached compiler stdout:
  5342.  
  5343. Cached compiler stderr:
  5344. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5345. 3 | using _LIBCPP_VERSION;
  5346. | ^~~~~~~~~~~~~~~
  5347.  
  5348. Using cached compile:
  5349. 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
  5350.  
  5351. Code:
  5352.  
  5353. #ifdef __has_include
  5354. #if !__has_include("version")
  5355. #error "Header 'version' could not be found"
  5356. #endif
  5357. #else
  5358. #include <version>
  5359. #endif
  5360. Cached compiler stdout:
  5361.  
  5362. Cached compiler stderr:
  5363.  
  5364. Using cached compile:
  5365. 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
  5366.  
  5367. Code:
  5368.  
  5369. #include <version>
  5370. int main(void) {
  5371. /* If it's not defined as a macro, try to use as a symbol */
  5372. #ifndef _LIBCPP_VERSION
  5373. _LIBCPP_VERSION;
  5374. #endif
  5375. return 0;
  5376. }
  5377. Cached compiler stdout:
  5378.  
  5379. Cached compiler stderr:
  5380. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5381. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5382. 6 | _LIBCPP_VERSION;
  5383. | ^~~~~~~~~~~~~~~
  5384.  
  5385. Using cached compile:
  5386. 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
  5387.  
  5388. Code:
  5389.  
  5390. #include <version>
  5391. using _LIBCPP_VERSION;
  5392. int main(void) { return 0; }
  5393. Cached compiler stdout:
  5394.  
  5395. Cached compiler stderr:
  5396. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5397. 3 | using _LIBCPP_VERSION;
  5398. | ^~~~~~~~~~~~~~~
  5399.  
  5400. Using cached compile:
  5401. 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
  5402.  
  5403. Code:
  5404.  
  5405. #ifdef __has_include
  5406. #if !__has_include("version")
  5407. #error "Header 'version' could not be found"
  5408. #endif
  5409. #else
  5410. #include <version>
  5411. #endif
  5412. Cached compiler stdout:
  5413.  
  5414. Cached compiler stderr:
  5415.  
  5416. Using cached compile:
  5417. 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
  5418.  
  5419. Code:
  5420.  
  5421. #include <version>
  5422. int main(void) {
  5423. /* If it's not defined as a macro, try to use as a symbol */
  5424. #ifndef _LIBCPP_VERSION
  5425. _LIBCPP_VERSION;
  5426. #endif
  5427. return 0;
  5428. }
  5429. Cached compiler stdout:
  5430.  
  5431. Cached compiler stderr:
  5432. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5433. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5434. 6 | _LIBCPP_VERSION;
  5435. | ^~~~~~~~~~~~~~~
  5436.  
  5437. Using cached compile:
  5438. 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
  5439.  
  5440. Code:
  5441.  
  5442. #include <version>
  5443. using _LIBCPP_VERSION;
  5444. int main(void) { return 0; }
  5445. Cached compiler stdout:
  5446.  
  5447. Cached compiler stderr:
  5448. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5449. 3 | using _LIBCPP_VERSION;
  5450. | ^~~~~~~~~~~~~~~
  5451.  
  5452. Using cached compile:
  5453. 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
  5454.  
  5455. Code:
  5456.  
  5457. #ifdef __has_include
  5458. #if !__has_include("version")
  5459. #error "Header 'version' could not be found"
  5460. #endif
  5461. #else
  5462. #include <version>
  5463. #endif
  5464. Cached compiler stdout:
  5465.  
  5466. Cached compiler stderr:
  5467.  
  5468. Using cached compile:
  5469. 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
  5470.  
  5471. Code:
  5472.  
  5473. #include <version>
  5474. int main(void) {
  5475. /* If it's not defined as a macro, try to use as a symbol */
  5476. #ifndef _LIBCPP_VERSION
  5477. _LIBCPP_VERSION;
  5478. #endif
  5479. return 0;
  5480. }
  5481. Cached compiler stdout:
  5482.  
  5483. Cached compiler stderr:
  5484. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5485. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5486. 6 | _LIBCPP_VERSION;
  5487. | ^~~~~~~~~~~~~~~
  5488.  
  5489. Using cached compile:
  5490. 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
  5491.  
  5492. Code:
  5493.  
  5494. #include <version>
  5495. using _LIBCPP_VERSION;
  5496. int main(void) { return 0; }
  5497. Cached compiler stdout:
  5498.  
  5499. Cached compiler stderr:
  5500. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5501. 3 | using _LIBCPP_VERSION;
  5502. | ^~~~~~~~~~~~~~~
  5503.  
  5504. Using cached compile:
  5505. 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
  5506.  
  5507. Code:
  5508.  
  5509. #ifdef __has_include
  5510. #if !__has_include("version")
  5511. #error "Header 'version' could not be found"
  5512. #endif
  5513. #else
  5514. #include <version>
  5515. #endif
  5516. Cached compiler stdout:
  5517.  
  5518. Cached compiler stderr:
  5519.  
  5520. Using cached compile:
  5521. 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
  5522.  
  5523. Code:
  5524.  
  5525. #include <version>
  5526. int main(void) {
  5527. /* If it's not defined as a macro, try to use as a symbol */
  5528. #ifndef _LIBCPP_VERSION
  5529. _LIBCPP_VERSION;
  5530. #endif
  5531. return 0;
  5532. }
  5533. Cached compiler stdout:
  5534.  
  5535. Cached compiler stderr:
  5536. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5537. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5538. 6 | _LIBCPP_VERSION;
  5539. | ^~~~~~~~~~~~~~~
  5540.  
  5541. Using cached compile:
  5542. 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
  5543.  
  5544. Code:
  5545.  
  5546. #include <version>
  5547. using _LIBCPP_VERSION;
  5548. int main(void) { return 0; }
  5549. Cached compiler stdout:
  5550.  
  5551. Cached compiler stderr:
  5552. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5553. 3 | using _LIBCPP_VERSION;
  5554. | ^~~~~~~~~~~~~~~
  5555.  
  5556. Using cached compile:
  5557. 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
  5558.  
  5559. Code:
  5560.  
  5561. #ifdef __has_include
  5562. #if !__has_include("version")
  5563. #error "Header 'version' could not be found"
  5564. #endif
  5565. #else
  5566. #include <version>
  5567. #endif
  5568. Cached compiler stdout:
  5569.  
  5570. Cached compiler stderr:
  5571.  
  5572. Using cached compile:
  5573. 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
  5574.  
  5575. Code:
  5576.  
  5577. #include <version>
  5578. int main(void) {
  5579. /* If it's not defined as a macro, try to use as a symbol */
  5580. #ifndef _LIBCPP_VERSION
  5581. _LIBCPP_VERSION;
  5582. #endif
  5583. return 0;
  5584. }
  5585. Cached compiler stdout:
  5586.  
  5587. Cached compiler stderr:
  5588. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5589. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5590. 6 | _LIBCPP_VERSION;
  5591. | ^~~~~~~~~~~~~~~
  5592.  
  5593. Using cached compile:
  5594. 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
  5595.  
  5596. Code:
  5597.  
  5598. #include <version>
  5599. using _LIBCPP_VERSION;
  5600. int main(void) { return 0; }
  5601. Cached compiler stdout:
  5602.  
  5603. Cached compiler stderr:
  5604. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5605. 3 | using _LIBCPP_VERSION;
  5606. | ^~~~~~~~~~~~~~~
  5607.  
  5608. Using cached compile:
  5609. 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
  5610.  
  5611. Code:
  5612.  
  5613. #ifdef __has_include
  5614. #if !__has_include("version")
  5615. #error "Header 'version' could not be found"
  5616. #endif
  5617. #else
  5618. #include <version>
  5619. #endif
  5620. Cached compiler stdout:
  5621.  
  5622. Cached compiler stderr:
  5623.  
  5624. Using cached compile:
  5625. 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
  5626.  
  5627. Code:
  5628.  
  5629. #include <version>
  5630. int main(void) {
  5631. /* If it's not defined as a macro, try to use as a symbol */
  5632. #ifndef _LIBCPP_VERSION
  5633. _LIBCPP_VERSION;
  5634. #endif
  5635. return 0;
  5636. }
  5637. Cached compiler stdout:
  5638.  
  5639. Cached compiler stderr:
  5640. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5641. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5642. 6 | _LIBCPP_VERSION;
  5643. | ^~~~~~~~~~~~~~~
  5644.  
  5645. Using cached compile:
  5646. 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
  5647.  
  5648. Code:
  5649.  
  5650. #include <version>
  5651. using _LIBCPP_VERSION;
  5652. int main(void) { return 0; }
  5653. Cached compiler stdout:
  5654.  
  5655. Cached compiler stderr:
  5656. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5657. 3 | using _LIBCPP_VERSION;
  5658. | ^~~~~~~~~~~~~~~
  5659.  
  5660. Using cached compile:
  5661. 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
  5662.  
  5663. Code:
  5664.  
  5665. #ifdef __has_include
  5666. #if !__has_include("version")
  5667. #error "Header 'version' could not be found"
  5668. #endif
  5669. #else
  5670. #include <version>
  5671. #endif
  5672. Cached compiler stdout:
  5673.  
  5674. Cached compiler stderr:
  5675.  
  5676. Using cached compile:
  5677. 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
  5678.  
  5679. Code:
  5680.  
  5681. #include <version>
  5682. int main(void) {
  5683. /* If it's not defined as a macro, try to use as a symbol */
  5684. #ifndef _LIBCPP_VERSION
  5685. _LIBCPP_VERSION;
  5686. #endif
  5687. return 0;
  5688. }
  5689. Cached compiler stdout:
  5690.  
  5691. Cached compiler stderr:
  5692. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5693. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5694. 6 | _LIBCPP_VERSION;
  5695. | ^~~~~~~~~~~~~~~
  5696.  
  5697. Using cached compile:
  5698. 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
  5699.  
  5700. Code:
  5701.  
  5702. #include <version>
  5703. using _LIBCPP_VERSION;
  5704. int main(void) { return 0; }
  5705. Cached compiler stdout:
  5706.  
  5707. Cached compiler stderr:
  5708. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5709. 3 | using _LIBCPP_VERSION;
  5710. | ^~~~~~~~~~~~~~~
  5711.  
  5712. Using cached compile:
  5713. 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
  5714.  
  5715. Code:
  5716.  
  5717. #ifdef __has_include
  5718. #if !__has_include("version")
  5719. #error "Header 'version' could not be found"
  5720. #endif
  5721. #else
  5722. #include <version>
  5723. #endif
  5724. Cached compiler stdout:
  5725.  
  5726. Cached compiler stderr:
  5727.  
  5728. Using cached compile:
  5729. 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
  5730.  
  5731. Code:
  5732.  
  5733. #include <version>
  5734. int main(void) {
  5735. /* If it's not defined as a macro, try to use as a symbol */
  5736. #ifndef _LIBCPP_VERSION
  5737. _LIBCPP_VERSION;
  5738. #endif
  5739. return 0;
  5740. }
  5741. Cached compiler stdout:
  5742.  
  5743. Cached compiler stderr:
  5744. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5745. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5746. 6 | _LIBCPP_VERSION;
  5747. | ^~~~~~~~~~~~~~~
  5748.  
  5749. Using cached compile:
  5750. 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
  5751.  
  5752. Code:
  5753.  
  5754. #include <version>
  5755. using _LIBCPP_VERSION;
  5756. int main(void) { return 0; }
  5757. Cached compiler stdout:
  5758.  
  5759. Cached compiler stderr:
  5760. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5761. 3 | using _LIBCPP_VERSION;
  5762. | ^~~~~~~~~~~~~~~
  5763.  
  5764. Using cached compile:
  5765. 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
  5766.  
  5767. Code:
  5768.  
  5769. #ifdef __has_include
  5770. #if !__has_include("version")
  5771. #error "Header 'version' could not be found"
  5772. #endif
  5773. #else
  5774. #include <version>
  5775. #endif
  5776. Cached compiler stdout:
  5777.  
  5778. Cached compiler stderr:
  5779.  
  5780. Using cached compile:
  5781. 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
  5782.  
  5783. Code:
  5784.  
  5785. #include <version>
  5786. int main(void) {
  5787. /* If it's not defined as a macro, try to use as a symbol */
  5788. #ifndef _LIBCPP_VERSION
  5789. _LIBCPP_VERSION;
  5790. #endif
  5791. return 0;
  5792. }
  5793. Cached compiler stdout:
  5794.  
  5795. Cached compiler stderr:
  5796. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5797. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5798. 6 | _LIBCPP_VERSION;
  5799. | ^~~~~~~~~~~~~~~
  5800.  
  5801. Using cached compile:
  5802. 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
  5803.  
  5804. Code:
  5805.  
  5806. #include <version>
  5807. using _LIBCPP_VERSION;
  5808. int main(void) { return 0; }
  5809. Cached compiler stdout:
  5810.  
  5811. Cached compiler stderr:
  5812. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5813. 3 | using _LIBCPP_VERSION;
  5814. | ^~~~~~~~~~~~~~~
  5815.  
  5816. Using cached compile:
  5817. 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
  5818.  
  5819. Code:
  5820.  
  5821. #ifdef __has_include
  5822. #if !__has_include("version")
  5823. #error "Header 'version' could not be found"
  5824. #endif
  5825. #else
  5826. #include <version>
  5827. #endif
  5828. Cached compiler stdout:
  5829.  
  5830. Cached compiler stderr:
  5831.  
  5832. Using cached compile:
  5833. 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
  5834.  
  5835. Code:
  5836.  
  5837. #include <version>
  5838. int main(void) {
  5839. /* If it's not defined as a macro, try to use as a symbol */
  5840. #ifndef _LIBCPP_VERSION
  5841. _LIBCPP_VERSION;
  5842. #endif
  5843. return 0;
  5844. }
  5845. Cached compiler stdout:
  5846.  
  5847. Cached compiler stderr:
  5848. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5849. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5850. 6 | _LIBCPP_VERSION;
  5851. | ^~~~~~~~~~~~~~~
  5852.  
  5853. Using cached compile:
  5854. 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
  5855.  
  5856. Code:
  5857.  
  5858. #include <version>
  5859. using _LIBCPP_VERSION;
  5860. int main(void) { return 0; }
  5861. Cached compiler stdout:
  5862.  
  5863. Cached compiler stderr:
  5864. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5865. 3 | using _LIBCPP_VERSION;
  5866. | ^~~~~~~~~~~~~~~
  5867.  
  5868. Using cached compile:
  5869. 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
  5870.  
  5871. Code:
  5872.  
  5873. #ifdef __has_include
  5874. #if !__has_include("version")
  5875. #error "Header 'version' could not be found"
  5876. #endif
  5877. #else
  5878. #include <version>
  5879. #endif
  5880. Cached compiler stdout:
  5881.  
  5882. Cached compiler stderr:
  5883.  
  5884. Using cached compile:
  5885. 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
  5886.  
  5887. Code:
  5888.  
  5889. #include <version>
  5890. int main(void) {
  5891. /* If it's not defined as a macro, try to use as a symbol */
  5892. #ifndef _LIBCPP_VERSION
  5893. _LIBCPP_VERSION;
  5894. #endif
  5895. return 0;
  5896. }
  5897. Cached compiler stdout:
  5898.  
  5899. Cached compiler stderr:
  5900. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5901. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5902. 6 | _LIBCPP_VERSION;
  5903. | ^~~~~~~~~~~~~~~
  5904.  
  5905. Using cached compile:
  5906. 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
  5907.  
  5908. Code:
  5909.  
  5910. #include <version>
  5911. using _LIBCPP_VERSION;
  5912. int main(void) { return 0; }
  5913. Cached compiler stdout:
  5914.  
  5915. Cached compiler stderr:
  5916. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5917. 3 | using _LIBCPP_VERSION;
  5918. | ^~~~~~~~~~~~~~~
  5919.  
  5920. Using cached compile:
  5921. 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
  5922.  
  5923. Code:
  5924.  
  5925. #ifdef __has_include
  5926. #if !__has_include("version")
  5927. #error "Header 'version' could not be found"
  5928. #endif
  5929. #else
  5930. #include <version>
  5931. #endif
  5932. Cached compiler stdout:
  5933.  
  5934. Cached compiler stderr:
  5935.  
  5936. Using cached compile:
  5937. 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
  5938.  
  5939. Code:
  5940.  
  5941. #include <version>
  5942. int main(void) {
  5943. /* If it's not defined as a macro, try to use as a symbol */
  5944. #ifndef _LIBCPP_VERSION
  5945. _LIBCPP_VERSION;
  5946. #endif
  5947. return 0;
  5948. }
  5949. Cached compiler stdout:
  5950.  
  5951. Cached compiler stderr:
  5952. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  5953. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  5954. 6 | _LIBCPP_VERSION;
  5955. | ^~~~~~~~~~~~~~~
  5956.  
  5957. Using cached compile:
  5958. 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
  5959.  
  5960. Code:
  5961.  
  5962. #include <version>
  5963. using _LIBCPP_VERSION;
  5964. int main(void) { return 0; }
  5965. Cached compiler stdout:
  5966.  
  5967. Cached compiler stderr:
  5968. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  5969. 3 | using _LIBCPP_VERSION;
  5970. | ^~~~~~~~~~~~~~~
  5971.  
  5972. Using cached compile:
  5973. 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
  5974.  
  5975. Code:
  5976.  
  5977. #ifdef __has_include
  5978. #if !__has_include("version")
  5979. #error "Header 'version' could not be found"
  5980. #endif
  5981. #else
  5982. #include <version>
  5983. #endif
  5984. Cached compiler stdout:
  5985.  
  5986. Cached compiler stderr:
  5987.  
  5988. Using cached compile:
  5989. 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
  5990.  
  5991. Code:
  5992.  
  5993. #include <version>
  5994. int main(void) {
  5995. /* If it's not defined as a macro, try to use as a symbol */
  5996. #ifndef _LIBCPP_VERSION
  5997. _LIBCPP_VERSION;
  5998. #endif
  5999. return 0;
  6000. }
  6001. Cached compiler stdout:
  6002.  
  6003. Cached compiler stderr:
  6004. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6005. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6006. 6 | _LIBCPP_VERSION;
  6007. | ^~~~~~~~~~~~~~~
  6008.  
  6009. Using cached compile:
  6010. 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
  6011.  
  6012. Code:
  6013.  
  6014. #include <version>
  6015. using _LIBCPP_VERSION;
  6016. int main(void) { return 0; }
  6017. Cached compiler stdout:
  6018.  
  6019. Cached compiler stderr:
  6020. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6021. 3 | using _LIBCPP_VERSION;
  6022. | ^~~~~~~~~~~~~~~
  6023.  
  6024. Using cached compile:
  6025. 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
  6026.  
  6027. Code:
  6028.  
  6029. #ifdef __has_include
  6030. #if !__has_include("version")
  6031. #error "Header 'version' could not be found"
  6032. #endif
  6033. #else
  6034. #include <version>
  6035. #endif
  6036. Cached compiler stdout:
  6037.  
  6038. Cached compiler stderr:
  6039.  
  6040. Using cached compile:
  6041. 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
  6042.  
  6043. Code:
  6044.  
  6045. #include <version>
  6046. int main(void) {
  6047. /* If it's not defined as a macro, try to use as a symbol */
  6048. #ifndef _LIBCPP_VERSION
  6049. _LIBCPP_VERSION;
  6050. #endif
  6051. return 0;
  6052. }
  6053. Cached compiler stdout:
  6054.  
  6055. Cached compiler stderr:
  6056. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6057. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6058. 6 | _LIBCPP_VERSION;
  6059. | ^~~~~~~~~~~~~~~
  6060.  
  6061. Using cached compile:
  6062. 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
  6063.  
  6064. Code:
  6065.  
  6066. #include <version>
  6067. using _LIBCPP_VERSION;
  6068. int main(void) { return 0; }
  6069. Cached compiler stdout:
  6070.  
  6071. Cached compiler stderr:
  6072. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6073. 3 | using _LIBCPP_VERSION;
  6074. | ^~~~~~~~~~~~~~~
  6075.  
  6076. Using cached compile:
  6077. 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
  6078.  
  6079. Code:
  6080.  
  6081. #ifdef __has_include
  6082. #if !__has_include("version")
  6083. #error "Header 'version' could not be found"
  6084. #endif
  6085. #else
  6086. #include <version>
  6087. #endif
  6088. Cached compiler stdout:
  6089.  
  6090. Cached compiler stderr:
  6091.  
  6092. Using cached compile:
  6093. 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
  6094.  
  6095. Code:
  6096.  
  6097. #include <version>
  6098. int main(void) {
  6099. /* If it's not defined as a macro, try to use as a symbol */
  6100. #ifndef _LIBCPP_VERSION
  6101. _LIBCPP_VERSION;
  6102. #endif
  6103. return 0;
  6104. }
  6105. Cached compiler stdout:
  6106.  
  6107. Cached compiler stderr:
  6108. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6109. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6110. 6 | _LIBCPP_VERSION;
  6111. | ^~~~~~~~~~~~~~~
  6112.  
  6113. Using cached compile:
  6114. 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
  6115.  
  6116. Code:
  6117.  
  6118. #include <version>
  6119. using _LIBCPP_VERSION;
  6120. int main(void) { return 0; }
  6121. Cached compiler stdout:
  6122.  
  6123. Cached compiler stderr:
  6124. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6125. 3 | using _LIBCPP_VERSION;
  6126. | ^~~~~~~~~~~~~~~
  6127.  
  6128. Using cached compile:
  6129. 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
  6130.  
  6131. Code:
  6132.  
  6133. #ifdef __has_include
  6134. #if !__has_include("version")
  6135. #error "Header 'version' could not be found"
  6136. #endif
  6137. #else
  6138. #include <version>
  6139. #endif
  6140. Cached compiler stdout:
  6141.  
  6142. Cached compiler stderr:
  6143.  
  6144. Using cached compile:
  6145. 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
  6146.  
  6147. Code:
  6148.  
  6149. #include <version>
  6150. int main(void) {
  6151. /* If it's not defined as a macro, try to use as a symbol */
  6152. #ifndef _LIBCPP_VERSION
  6153. _LIBCPP_VERSION;
  6154. #endif
  6155. return 0;
  6156. }
  6157. Cached compiler stdout:
  6158.  
  6159. Cached compiler stderr:
  6160. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6161. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6162. 6 | _LIBCPP_VERSION;
  6163. | ^~~~~~~~~~~~~~~
  6164.  
  6165. Using cached compile:
  6166. 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
  6167.  
  6168. Code:
  6169.  
  6170. #include <version>
  6171. using _LIBCPP_VERSION;
  6172. int main(void) { return 0; }
  6173. Cached compiler stdout:
  6174.  
  6175. Cached compiler stderr:
  6176. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6177. 3 | using _LIBCPP_VERSION;
  6178. | ^~~~~~~~~~~~~~~
  6179.  
  6180. Using cached compile:
  6181. 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
  6182.  
  6183. Code:
  6184.  
  6185. #ifdef __has_include
  6186. #if !__has_include("version")
  6187. #error "Header 'version' could not be found"
  6188. #endif
  6189. #else
  6190. #include <version>
  6191. #endif
  6192. Cached compiler stdout:
  6193.  
  6194. Cached compiler stderr:
  6195.  
  6196. Using cached compile:
  6197. 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
  6198.  
  6199. Code:
  6200.  
  6201. #include <version>
  6202. int main(void) {
  6203. /* If it's not defined as a macro, try to use as a symbol */
  6204. #ifndef _LIBCPP_VERSION
  6205. _LIBCPP_VERSION;
  6206. #endif
  6207. return 0;
  6208. }
  6209. Cached compiler stdout:
  6210.  
  6211. Cached compiler stderr:
  6212. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6213. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6214. 6 | _LIBCPP_VERSION;
  6215. | ^~~~~~~~~~~~~~~
  6216.  
  6217. Using cached compile:
  6218. 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
  6219.  
  6220. Code:
  6221.  
  6222. #include <version>
  6223. using _LIBCPP_VERSION;
  6224. int main(void) { return 0; }
  6225. Cached compiler stdout:
  6226.  
  6227. Cached compiler stderr:
  6228. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6229. 3 | using _LIBCPP_VERSION;
  6230. | ^~~~~~~~~~~~~~~
  6231.  
  6232. Using cached compile:
  6233. 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
  6234.  
  6235. Code:
  6236.  
  6237. #ifdef __has_include
  6238. #if !__has_include("version")
  6239. #error "Header 'version' could not be found"
  6240. #endif
  6241. #else
  6242. #include <version>
  6243. #endif
  6244. Cached compiler stdout:
  6245.  
  6246. Cached compiler stderr:
  6247.  
  6248. Using cached compile:
  6249. 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
  6250.  
  6251. Code:
  6252.  
  6253. #include <version>
  6254. int main(void) {
  6255. /* If it's not defined as a macro, try to use as a symbol */
  6256. #ifndef _LIBCPP_VERSION
  6257. _LIBCPP_VERSION;
  6258. #endif
  6259. return 0;
  6260. }
  6261. Cached compiler stdout:
  6262.  
  6263. Cached compiler stderr:
  6264. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6265. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6266. 6 | _LIBCPP_VERSION;
  6267. | ^~~~~~~~~~~~~~~
  6268.  
  6269. Using cached compile:
  6270. 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
  6271.  
  6272. Code:
  6273.  
  6274. #include <version>
  6275. using _LIBCPP_VERSION;
  6276. int main(void) { return 0; }
  6277. Cached compiler stdout:
  6278.  
  6279. Cached compiler stderr:
  6280. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6281. 3 | using _LIBCPP_VERSION;
  6282. | ^~~~~~~~~~~~~~~
  6283.  
  6284. Using cached compile:
  6285. 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
  6286.  
  6287. Code:
  6288.  
  6289. #ifdef __has_include
  6290. #if !__has_include("version")
  6291. #error "Header 'version' could not be found"
  6292. #endif
  6293. #else
  6294. #include <version>
  6295. #endif
  6296. Cached compiler stdout:
  6297.  
  6298. Cached compiler stderr:
  6299.  
  6300. Using cached compile:
  6301. 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
  6302.  
  6303. Code:
  6304.  
  6305. #include <version>
  6306. int main(void) {
  6307. /* If it's not defined as a macro, try to use as a symbol */
  6308. #ifndef _LIBCPP_VERSION
  6309. _LIBCPP_VERSION;
  6310. #endif
  6311. return 0;
  6312. }
  6313. Cached compiler stdout:
  6314.  
  6315. Cached compiler stderr:
  6316. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6317. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6318. 6 | _LIBCPP_VERSION;
  6319. | ^~~~~~~~~~~~~~~
  6320.  
  6321. Using cached compile:
  6322. 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
  6323.  
  6324. Code:
  6325.  
  6326. #include <version>
  6327. using _LIBCPP_VERSION;
  6328. int main(void) { return 0; }
  6329. Cached compiler stdout:
  6330.  
  6331. Cached compiler stderr:
  6332. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6333. 3 | using _LIBCPP_VERSION;
  6334. | ^~~~~~~~~~~~~~~
  6335.  
  6336. Using cached compile:
  6337. 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
  6338.  
  6339. Code:
  6340.  
  6341. #ifdef __has_include
  6342. #if !__has_include("version")
  6343. #error "Header 'version' could not be found"
  6344. #endif
  6345. #else
  6346. #include <version>
  6347. #endif
  6348. Cached compiler stdout:
  6349.  
  6350. Cached compiler stderr:
  6351.  
  6352. Using cached compile:
  6353. 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
  6354.  
  6355. Code:
  6356.  
  6357. #include <version>
  6358. int main(void) {
  6359. /* If it's not defined as a macro, try to use as a symbol */
  6360. #ifndef _LIBCPP_VERSION
  6361. _LIBCPP_VERSION;
  6362. #endif
  6363. return 0;
  6364. }
  6365. Cached compiler stdout:
  6366.  
  6367. Cached compiler stderr:
  6368. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6369. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6370. 6 | _LIBCPP_VERSION;
  6371. | ^~~~~~~~~~~~~~~
  6372.  
  6373. Using cached compile:
  6374. 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
  6375.  
  6376. Code:
  6377.  
  6378. #include <version>
  6379. using _LIBCPP_VERSION;
  6380. int main(void) { return 0; }
  6381. Cached compiler stdout:
  6382.  
  6383. Cached compiler stderr:
  6384. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6385. 3 | using _LIBCPP_VERSION;
  6386. | ^~~~~~~~~~~~~~~
  6387.  
  6388. Using cached compile:
  6389. 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
  6390.  
  6391. Code:
  6392.  
  6393. #ifdef __has_include
  6394. #if !__has_include("version")
  6395. #error "Header 'version' could not be found"
  6396. #endif
  6397. #else
  6398. #include <version>
  6399. #endif
  6400. Cached compiler stdout:
  6401.  
  6402. Cached compiler stderr:
  6403.  
  6404. Using cached compile:
  6405. 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
  6406.  
  6407. Code:
  6408.  
  6409. #include <version>
  6410. int main(void) {
  6411. /* If it's not defined as a macro, try to use as a symbol */
  6412. #ifndef _LIBCPP_VERSION
  6413. _LIBCPP_VERSION;
  6414. #endif
  6415. return 0;
  6416. }
  6417. Cached compiler stdout:
  6418.  
  6419. Cached compiler stderr:
  6420. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6421. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6422. 6 | _LIBCPP_VERSION;
  6423. | ^~~~~~~~~~~~~~~
  6424.  
  6425. Using cached compile:
  6426. 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
  6427.  
  6428. Code:
  6429.  
  6430. #include <version>
  6431. using _LIBCPP_VERSION;
  6432. int main(void) { return 0; }
  6433. Cached compiler stdout:
  6434.  
  6435. Cached compiler stderr:
  6436. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6437. 3 | using _LIBCPP_VERSION;
  6438. | ^~~~~~~~~~~~~~~
  6439.  
  6440. Using cached compile:
  6441. 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
  6442.  
  6443. Code:
  6444.  
  6445. #ifdef __has_include
  6446. #if !__has_include("version")
  6447. #error "Header 'version' could not be found"
  6448. #endif
  6449. #else
  6450. #include <version>
  6451. #endif
  6452. Cached compiler stdout:
  6453.  
  6454. Cached compiler stderr:
  6455.  
  6456. Using cached compile:
  6457. 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
  6458.  
  6459. Code:
  6460.  
  6461. #include <version>
  6462. int main(void) {
  6463. /* If it's not defined as a macro, try to use as a symbol */
  6464. #ifndef _LIBCPP_VERSION
  6465. _LIBCPP_VERSION;
  6466. #endif
  6467. return 0;
  6468. }
  6469. Cached compiler stdout:
  6470.  
  6471. Cached compiler stderr:
  6472. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6473. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6474. 6 | _LIBCPP_VERSION;
  6475. | ^~~~~~~~~~~~~~~
  6476.  
  6477. Using cached compile:
  6478. 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
  6479.  
  6480. Code:
  6481.  
  6482. #include <version>
  6483. using _LIBCPP_VERSION;
  6484. int main(void) { return 0; }
  6485. Cached compiler stdout:
  6486.  
  6487. Cached compiler stderr:
  6488. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6489. 3 | using _LIBCPP_VERSION;
  6490. | ^~~~~~~~~~~~~~~
  6491.  
  6492. Using cached compile:
  6493. 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
  6494.  
  6495. Code:
  6496.  
  6497. #ifdef __has_include
  6498. #if !__has_include("version")
  6499. #error "Header 'version' could not be found"
  6500. #endif
  6501. #else
  6502. #include <version>
  6503. #endif
  6504. Cached compiler stdout:
  6505.  
  6506. Cached compiler stderr:
  6507.  
  6508. Using cached compile:
  6509. 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
  6510.  
  6511. Code:
  6512.  
  6513. #include <version>
  6514. int main(void) {
  6515. /* If it's not defined as a macro, try to use as a symbol */
  6516. #ifndef _LIBCPP_VERSION
  6517. _LIBCPP_VERSION;
  6518. #endif
  6519. return 0;
  6520. }
  6521. Cached compiler stdout:
  6522.  
  6523. Cached compiler stderr:
  6524. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6525. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6526. 6 | _LIBCPP_VERSION;
  6527. | ^~~~~~~~~~~~~~~
  6528.  
  6529. Using cached compile:
  6530. 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
  6531.  
  6532. Code:
  6533.  
  6534. #include <version>
  6535. using _LIBCPP_VERSION;
  6536. int main(void) { return 0; }
  6537. Cached compiler stdout:
  6538.  
  6539. Cached compiler stderr:
  6540. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6541. 3 | using _LIBCPP_VERSION;
  6542. | ^~~~~~~~~~~~~~~
  6543.  
  6544. Using cached compile:
  6545. 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
  6546.  
  6547. Code:
  6548.  
  6549. #ifdef __has_include
  6550. #if !__has_include("version")
  6551. #error "Header 'version' could not be found"
  6552. #endif
  6553. #else
  6554. #include <version>
  6555. #endif
  6556. Cached compiler stdout:
  6557.  
  6558. Cached compiler stderr:
  6559.  
  6560. Using cached compile:
  6561. 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
  6562.  
  6563. Code:
  6564.  
  6565. #include <version>
  6566. int main(void) {
  6567. /* If it's not defined as a macro, try to use as a symbol */
  6568. #ifndef _LIBCPP_VERSION
  6569. _LIBCPP_VERSION;
  6570. #endif
  6571. return 0;
  6572. }
  6573. Cached compiler stdout:
  6574.  
  6575. Cached compiler stderr:
  6576. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6577. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6578. 6 | _LIBCPP_VERSION;
  6579. | ^~~~~~~~~~~~~~~
  6580.  
  6581. Using cached compile:
  6582. 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
  6583.  
  6584. Code:
  6585.  
  6586. #include <version>
  6587. using _LIBCPP_VERSION;
  6588. int main(void) { return 0; }
  6589. Cached compiler stdout:
  6590.  
  6591. Cached compiler stderr:
  6592. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6593. 3 | using _LIBCPP_VERSION;
  6594. | ^~~~~~~~~~~~~~~
  6595.  
  6596. Using cached compile:
  6597. 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
  6598.  
  6599. Code:
  6600.  
  6601. #ifdef __has_include
  6602. #if !__has_include("version")
  6603. #error "Header 'version' could not be found"
  6604. #endif
  6605. #else
  6606. #include <version>
  6607. #endif
  6608. Cached compiler stdout:
  6609.  
  6610. Cached compiler stderr:
  6611.  
  6612. Using cached compile:
  6613. 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
  6614.  
  6615. Code:
  6616.  
  6617. #include <version>
  6618. int main(void) {
  6619. /* If it's not defined as a macro, try to use as a symbol */
  6620. #ifndef _LIBCPP_VERSION
  6621. _LIBCPP_VERSION;
  6622. #endif
  6623. return 0;
  6624. }
  6625. Cached compiler stdout:
  6626.  
  6627. Cached compiler stderr:
  6628. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6629. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6630. 6 | _LIBCPP_VERSION;
  6631. | ^~~~~~~~~~~~~~~
  6632.  
  6633. Using cached compile:
  6634. 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
  6635.  
  6636. Code:
  6637.  
  6638. #include <version>
  6639. using _LIBCPP_VERSION;
  6640. int main(void) { return 0; }
  6641. Cached compiler stdout:
  6642.  
  6643. Cached compiler stderr:
  6644. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6645. 3 | using _LIBCPP_VERSION;
  6646. | ^~~~~~~~~~~~~~~
  6647.  
  6648. Using cached compile:
  6649. 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
  6650.  
  6651. Code:
  6652.  
  6653. #ifdef __has_include
  6654. #if !__has_include("version")
  6655. #error "Header 'version' could not be found"
  6656. #endif
  6657. #else
  6658. #include <version>
  6659. #endif
  6660. Cached compiler stdout:
  6661.  
  6662. Cached compiler stderr:
  6663.  
  6664. Using cached compile:
  6665. 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
  6666.  
  6667. Code:
  6668.  
  6669. #include <version>
  6670. int main(void) {
  6671. /* If it's not defined as a macro, try to use as a symbol */
  6672. #ifndef _LIBCPP_VERSION
  6673. _LIBCPP_VERSION;
  6674. #endif
  6675. return 0;
  6676. }
  6677. Cached compiler stdout:
  6678.  
  6679. Cached compiler stderr:
  6680. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6681. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6682. 6 | _LIBCPP_VERSION;
  6683. | ^~~~~~~~~~~~~~~
  6684.  
  6685. Using cached compile:
  6686. 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
  6687.  
  6688. Code:
  6689.  
  6690. #include <version>
  6691. using _LIBCPP_VERSION;
  6692. int main(void) { return 0; }
  6693. Cached compiler stdout:
  6694.  
  6695. Cached compiler stderr:
  6696. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6697. 3 | using _LIBCPP_VERSION;
  6698. | ^~~~~~~~~~~~~~~
  6699.  
  6700. Using cached compile:
  6701. 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
  6702.  
  6703. Code:
  6704.  
  6705. #ifdef __has_include
  6706. #if !__has_include("version")
  6707. #error "Header 'version' could not be found"
  6708. #endif
  6709. #else
  6710. #include <version>
  6711. #endif
  6712. Cached compiler stdout:
  6713.  
  6714. Cached compiler stderr:
  6715.  
  6716. Using cached compile:
  6717. 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
  6718.  
  6719. Code:
  6720.  
  6721. #include <version>
  6722. int main(void) {
  6723. /* If it's not defined as a macro, try to use as a symbol */
  6724. #ifndef _LIBCPP_VERSION
  6725. _LIBCPP_VERSION;
  6726. #endif
  6727. return 0;
  6728. }
  6729. Cached compiler stdout:
  6730.  
  6731. Cached compiler stderr:
  6732. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6733. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6734. 6 | _LIBCPP_VERSION;
  6735. | ^~~~~~~~~~~~~~~
  6736.  
  6737. Using cached compile:
  6738. 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
  6739.  
  6740. Code:
  6741.  
  6742. #include <version>
  6743. using _LIBCPP_VERSION;
  6744. int main(void) { return 0; }
  6745. Cached compiler stdout:
  6746.  
  6747. Cached compiler stderr:
  6748. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6749. 3 | using _LIBCPP_VERSION;
  6750. | ^~~~~~~~~~~~~~~
  6751.  
  6752. Using cached compile:
  6753. 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
  6754.  
  6755. Code:
  6756.  
  6757. #ifdef __has_include
  6758. #if !__has_include("version")
  6759. #error "Header 'version' could not be found"
  6760. #endif
  6761. #else
  6762. #include <version>
  6763. #endif
  6764. Cached compiler stdout:
  6765.  
  6766. Cached compiler stderr:
  6767.  
  6768. Using cached compile:
  6769. 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
  6770.  
  6771. Code:
  6772.  
  6773. #include <version>
  6774. int main(void) {
  6775. /* If it's not defined as a macro, try to use as a symbol */
  6776. #ifndef _LIBCPP_VERSION
  6777. _LIBCPP_VERSION;
  6778. #endif
  6779. return 0;
  6780. }
  6781. Cached compiler stdout:
  6782.  
  6783. Cached compiler stderr:
  6784. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6785. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6786. 6 | _LIBCPP_VERSION;
  6787. | ^~~~~~~~~~~~~~~
  6788.  
  6789. Using cached compile:
  6790. 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
  6791.  
  6792. Code:
  6793.  
  6794. #include <version>
  6795. using _LIBCPP_VERSION;
  6796. int main(void) { return 0; }
  6797. Cached compiler stdout:
  6798.  
  6799. Cached compiler stderr:
  6800. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6801. 3 | using _LIBCPP_VERSION;
  6802. | ^~~~~~~~~~~~~~~
  6803.  
  6804. Using cached compile:
  6805. 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
  6806.  
  6807. Code:
  6808.  
  6809. #ifdef __has_include
  6810. #if !__has_include("version")
  6811. #error "Header 'version' could not be found"
  6812. #endif
  6813. #else
  6814. #include <version>
  6815. #endif
  6816. Cached compiler stdout:
  6817.  
  6818. Cached compiler stderr:
  6819.  
  6820. Using cached compile:
  6821. 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
  6822.  
  6823. Code:
  6824.  
  6825. #include <version>
  6826. int main(void) {
  6827. /* If it's not defined as a macro, try to use as a symbol */
  6828. #ifndef _LIBCPP_VERSION
  6829. _LIBCPP_VERSION;
  6830. #endif
  6831. return 0;
  6832. }
  6833. Cached compiler stdout:
  6834.  
  6835. Cached compiler stderr:
  6836. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6837. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6838. 6 | _LIBCPP_VERSION;
  6839. | ^~~~~~~~~~~~~~~
  6840.  
  6841. Using cached compile:
  6842. 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
  6843.  
  6844. Code:
  6845.  
  6846. #include <version>
  6847. using _LIBCPP_VERSION;
  6848. int main(void) { return 0; }
  6849. Cached compiler stdout:
  6850.  
  6851. Cached compiler stderr:
  6852. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6853. 3 | using _LIBCPP_VERSION;
  6854. | ^~~~~~~~~~~~~~~
  6855.  
  6856. Using cached compile:
  6857. 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
  6858.  
  6859. Code:
  6860.  
  6861. #ifdef __has_include
  6862. #if !__has_include("version")
  6863. #error "Header 'version' could not be found"
  6864. #endif
  6865. #else
  6866. #include <version>
  6867. #endif
  6868. Cached compiler stdout:
  6869.  
  6870. Cached compiler stderr:
  6871.  
  6872. Using cached compile:
  6873. 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
  6874.  
  6875. Code:
  6876.  
  6877. #include <version>
  6878. int main(void) {
  6879. /* If it's not defined as a macro, try to use as a symbol */
  6880. #ifndef _LIBCPP_VERSION
  6881. _LIBCPP_VERSION;
  6882. #endif
  6883. return 0;
  6884. }
  6885. Cached compiler stdout:
  6886.  
  6887. Cached compiler stderr:
  6888. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6889. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6890. 6 | _LIBCPP_VERSION;
  6891. | ^~~~~~~~~~~~~~~
  6892.  
  6893. Using cached compile:
  6894. 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
  6895.  
  6896. Code:
  6897.  
  6898. #include <version>
  6899. using _LIBCPP_VERSION;
  6900. int main(void) { return 0; }
  6901. Cached compiler stdout:
  6902.  
  6903. Cached compiler stderr:
  6904. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6905. 3 | using _LIBCPP_VERSION;
  6906. | ^~~~~~~~~~~~~~~
  6907.  
  6908. Using cached compile:
  6909. 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
  6910.  
  6911. Code:
  6912.  
  6913. #ifdef __has_include
  6914. #if !__has_include("version")
  6915. #error "Header 'version' could not be found"
  6916. #endif
  6917. #else
  6918. #include <version>
  6919. #endif
  6920. Cached compiler stdout:
  6921.  
  6922. Cached compiler stderr:
  6923.  
  6924. Using cached compile:
  6925. 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
  6926.  
  6927. Code:
  6928.  
  6929. #include <version>
  6930. int main(void) {
  6931. /* If it's not defined as a macro, try to use as a symbol */
  6932. #ifndef _LIBCPP_VERSION
  6933. _LIBCPP_VERSION;
  6934. #endif
  6935. return 0;
  6936. }
  6937. Cached compiler stdout:
  6938.  
  6939. Cached compiler stderr:
  6940. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6941. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6942. 6 | _LIBCPP_VERSION;
  6943. | ^~~~~~~~~~~~~~~
  6944.  
  6945. Using cached compile:
  6946. 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
  6947.  
  6948. Code:
  6949.  
  6950. #include <version>
  6951. using _LIBCPP_VERSION;
  6952. int main(void) { return 0; }
  6953. Cached compiler stdout:
  6954.  
  6955. Cached compiler stderr:
  6956. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  6957. 3 | using _LIBCPP_VERSION;
  6958. | ^~~~~~~~~~~~~~~
  6959.  
  6960. Using cached compile:
  6961. 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
  6962.  
  6963. Code:
  6964.  
  6965. #ifdef __has_include
  6966. #if !__has_include("version")
  6967. #error "Header 'version' could not be found"
  6968. #endif
  6969. #else
  6970. #include <version>
  6971. #endif
  6972. Cached compiler stdout:
  6973.  
  6974. Cached compiler stderr:
  6975.  
  6976. Using cached compile:
  6977. 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
  6978.  
  6979. Code:
  6980.  
  6981. #include <version>
  6982. int main(void) {
  6983. /* If it's not defined as a macro, try to use as a symbol */
  6984. #ifndef _LIBCPP_VERSION
  6985. _LIBCPP_VERSION;
  6986. #endif
  6987. return 0;
  6988. }
  6989. Cached compiler stdout:
  6990.  
  6991. Cached compiler stderr:
  6992. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  6993. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  6994. 6 | _LIBCPP_VERSION;
  6995. | ^~~~~~~~~~~~~~~
  6996.  
  6997. Using cached compile:
  6998. 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
  6999.  
  7000. Code:
  7001.  
  7002. #include <version>
  7003. using _LIBCPP_VERSION;
  7004. int main(void) { return 0; }
  7005. Cached compiler stdout:
  7006.  
  7007. Cached compiler stderr:
  7008. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7009. 3 | using _LIBCPP_VERSION;
  7010. | ^~~~~~~~~~~~~~~
  7011.  
  7012. Using cached compile:
  7013. 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
  7014.  
  7015. Code:
  7016.  
  7017. #ifdef __has_include
  7018. #if !__has_include("version")
  7019. #error "Header 'version' could not be found"
  7020. #endif
  7021. #else
  7022. #include <version>
  7023. #endif
  7024. Cached compiler stdout:
  7025.  
  7026. Cached compiler stderr:
  7027.  
  7028. Using cached compile:
  7029. 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
  7030.  
  7031. Code:
  7032.  
  7033. #include <version>
  7034. int main(void) {
  7035. /* If it's not defined as a macro, try to use as a symbol */
  7036. #ifndef _LIBCPP_VERSION
  7037. _LIBCPP_VERSION;
  7038. #endif
  7039. return 0;
  7040. }
  7041. Cached compiler stdout:
  7042.  
  7043. Cached compiler stderr:
  7044. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7045. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7046. 6 | _LIBCPP_VERSION;
  7047. | ^~~~~~~~~~~~~~~
  7048.  
  7049. Using cached compile:
  7050. 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
  7051.  
  7052. Code:
  7053.  
  7054. #include <version>
  7055. using _LIBCPP_VERSION;
  7056. int main(void) { return 0; }
  7057. Cached compiler stdout:
  7058.  
  7059. Cached compiler stderr:
  7060. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7061. 3 | using _LIBCPP_VERSION;
  7062. | ^~~~~~~~~~~~~~~
  7063.  
  7064. Using cached compile:
  7065. 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
  7066.  
  7067. Code:
  7068.  
  7069. #ifdef __has_include
  7070. #if !__has_include("version")
  7071. #error "Header 'version' could not be found"
  7072. #endif
  7073. #else
  7074. #include <version>
  7075. #endif
  7076. Cached compiler stdout:
  7077.  
  7078. Cached compiler stderr:
  7079.  
  7080. Using cached compile:
  7081. 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
  7082.  
  7083. Code:
  7084.  
  7085. #include <version>
  7086. int main(void) {
  7087. /* If it's not defined as a macro, try to use as a symbol */
  7088. #ifndef _LIBCPP_VERSION
  7089. _LIBCPP_VERSION;
  7090. #endif
  7091. return 0;
  7092. }
  7093. Cached compiler stdout:
  7094.  
  7095. Cached compiler stderr:
  7096. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7097. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7098. 6 | _LIBCPP_VERSION;
  7099. | ^~~~~~~~~~~~~~~
  7100.  
  7101. Using cached compile:
  7102. 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
  7103.  
  7104. Code:
  7105.  
  7106. #include <version>
  7107. using _LIBCPP_VERSION;
  7108. int main(void) { return 0; }
  7109. Cached compiler stdout:
  7110.  
  7111. Cached compiler stderr:
  7112. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7113. 3 | using _LIBCPP_VERSION;
  7114. | ^~~~~~~~~~~~~~~
  7115.  
  7116. Using cached compile:
  7117. 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
  7118.  
  7119. Code:
  7120.  
  7121. #ifdef __has_include
  7122. #if !__has_include("version")
  7123. #error "Header 'version' could not be found"
  7124. #endif
  7125. #else
  7126. #include <version>
  7127. #endif
  7128. Cached compiler stdout:
  7129.  
  7130. Cached compiler stderr:
  7131.  
  7132. Using cached compile:
  7133. 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
  7134.  
  7135. Code:
  7136.  
  7137. #include <version>
  7138. int main(void) {
  7139. /* If it's not defined as a macro, try to use as a symbol */
  7140. #ifndef _LIBCPP_VERSION
  7141. _LIBCPP_VERSION;
  7142. #endif
  7143. return 0;
  7144. }
  7145. Cached compiler stdout:
  7146.  
  7147. Cached compiler stderr:
  7148. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7149. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7150. 6 | _LIBCPP_VERSION;
  7151. | ^~~~~~~~~~~~~~~
  7152.  
  7153. Using cached compile:
  7154. 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
  7155.  
  7156. Code:
  7157.  
  7158. #include <version>
  7159. using _LIBCPP_VERSION;
  7160. int main(void) { return 0; }
  7161. Cached compiler stdout:
  7162.  
  7163. Cached compiler stderr:
  7164. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7165. 3 | using _LIBCPP_VERSION;
  7166. | ^~~~~~~~~~~~~~~
  7167.  
  7168. Using cached compile:
  7169. 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
  7170.  
  7171. Code:
  7172.  
  7173. #ifdef __has_include
  7174. #if !__has_include("version")
  7175. #error "Header 'version' could not be found"
  7176. #endif
  7177. #else
  7178. #include <version>
  7179. #endif
  7180. Cached compiler stdout:
  7181.  
  7182. Cached compiler stderr:
  7183.  
  7184. Using cached compile:
  7185. 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
  7186.  
  7187. Code:
  7188.  
  7189. #include <version>
  7190. int main(void) {
  7191. /* If it's not defined as a macro, try to use as a symbol */
  7192. #ifndef _LIBCPP_VERSION
  7193. _LIBCPP_VERSION;
  7194. #endif
  7195. return 0;
  7196. }
  7197. Cached compiler stdout:
  7198.  
  7199. Cached compiler stderr:
  7200. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7201. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7202. 6 | _LIBCPP_VERSION;
  7203. | ^~~~~~~~~~~~~~~
  7204.  
  7205. Using cached compile:
  7206. 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
  7207.  
  7208. Code:
  7209.  
  7210. #include <version>
  7211. using _LIBCPP_VERSION;
  7212. int main(void) { return 0; }
  7213. Cached compiler stdout:
  7214.  
  7215. Cached compiler stderr:
  7216. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7217. 3 | using _LIBCPP_VERSION;
  7218. | ^~~~~~~~~~~~~~~
  7219.  
  7220. Using cached compile:
  7221. 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
  7222.  
  7223. Code:
  7224.  
  7225. #ifdef __has_include
  7226. #if !__has_include("version")
  7227. #error "Header 'version' could not be found"
  7228. #endif
  7229. #else
  7230. #include <version>
  7231. #endif
  7232. Cached compiler stdout:
  7233.  
  7234. Cached compiler stderr:
  7235.  
  7236. Using cached compile:
  7237. 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
  7238.  
  7239. Code:
  7240.  
  7241. #include <version>
  7242. int main(void) {
  7243. /* If it's not defined as a macro, try to use as a symbol */
  7244. #ifndef _LIBCPP_VERSION
  7245. _LIBCPP_VERSION;
  7246. #endif
  7247. return 0;
  7248. }
  7249. Cached compiler stdout:
  7250.  
  7251. Cached compiler stderr:
  7252. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7253. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7254. 6 | _LIBCPP_VERSION;
  7255. | ^~~~~~~~~~~~~~~
  7256.  
  7257. Using cached compile:
  7258. 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
  7259.  
  7260. Code:
  7261.  
  7262. #include <version>
  7263. using _LIBCPP_VERSION;
  7264. int main(void) { return 0; }
  7265. Cached compiler stdout:
  7266.  
  7267. Cached compiler stderr:
  7268. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7269. 3 | using _LIBCPP_VERSION;
  7270. | ^~~~~~~~~~~~~~~
  7271.  
  7272. Using cached compile:
  7273. 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
  7274.  
  7275. Code:
  7276.  
  7277. #ifdef __has_include
  7278. #if !__has_include("version")
  7279. #error "Header 'version' could not be found"
  7280. #endif
  7281. #else
  7282. #include <version>
  7283. #endif
  7284. Cached compiler stdout:
  7285.  
  7286. Cached compiler stderr:
  7287.  
  7288. Using cached compile:
  7289. 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
  7290.  
  7291. Code:
  7292.  
  7293. #include <version>
  7294. int main(void) {
  7295. /* If it's not defined as a macro, try to use as a symbol */
  7296. #ifndef _LIBCPP_VERSION
  7297. _LIBCPP_VERSION;
  7298. #endif
  7299. return 0;
  7300. }
  7301. Cached compiler stdout:
  7302.  
  7303. Cached compiler stderr:
  7304. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7305. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7306. 6 | _LIBCPP_VERSION;
  7307. | ^~~~~~~~~~~~~~~
  7308.  
  7309. Using cached compile:
  7310. 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
  7311.  
  7312. Code:
  7313.  
  7314. #include <version>
  7315. using _LIBCPP_VERSION;
  7316. int main(void) { return 0; }
  7317. Cached compiler stdout:
  7318.  
  7319. Cached compiler stderr:
  7320. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7321. 3 | using _LIBCPP_VERSION;
  7322. | ^~~~~~~~~~~~~~~
  7323.  
  7324. Using cached compile:
  7325. 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
  7326.  
  7327. Code:
  7328.  
  7329. #ifdef __has_include
  7330. #if !__has_include("version")
  7331. #error "Header 'version' could not be found"
  7332. #endif
  7333. #else
  7334. #include <version>
  7335. #endif
  7336. Cached compiler stdout:
  7337.  
  7338. Cached compiler stderr:
  7339.  
  7340. Using cached compile:
  7341. 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
  7342.  
  7343. Code:
  7344.  
  7345. #include <version>
  7346. int main(void) {
  7347. /* If it's not defined as a macro, try to use as a symbol */
  7348. #ifndef _LIBCPP_VERSION
  7349. _LIBCPP_VERSION;
  7350. #endif
  7351. return 0;
  7352. }
  7353. Cached compiler stdout:
  7354.  
  7355. Cached compiler stderr:
  7356. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7357. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7358. 6 | _LIBCPP_VERSION;
  7359. | ^~~~~~~~~~~~~~~
  7360.  
  7361. Using cached compile:
  7362. 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
  7363.  
  7364. Code:
  7365.  
  7366. #include <version>
  7367. using _LIBCPP_VERSION;
  7368. int main(void) { return 0; }
  7369. Cached compiler stdout:
  7370.  
  7371. Cached compiler stderr:
  7372. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7373. 3 | using _LIBCPP_VERSION;
  7374. | ^~~~~~~~~~~~~~~
  7375.  
  7376. Using cached compile:
  7377. 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
  7378.  
  7379. Code:
  7380.  
  7381. #ifdef __has_include
  7382. #if !__has_include("version")
  7383. #error "Header 'version' could not be found"
  7384. #endif
  7385. #else
  7386. #include <version>
  7387. #endif
  7388. Cached compiler stdout:
  7389.  
  7390. Cached compiler stderr:
  7391.  
  7392. Using cached compile:
  7393. 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
  7394.  
  7395. Code:
  7396.  
  7397. #include <version>
  7398. int main(void) {
  7399. /* If it's not defined as a macro, try to use as a symbol */
  7400. #ifndef _LIBCPP_VERSION
  7401. _LIBCPP_VERSION;
  7402. #endif
  7403. return 0;
  7404. }
  7405. Cached compiler stdout:
  7406.  
  7407. Cached compiler stderr:
  7408. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7409. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7410. 6 | _LIBCPP_VERSION;
  7411. | ^~~~~~~~~~~~~~~
  7412.  
  7413. Using cached compile:
  7414. 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
  7415.  
  7416. Code:
  7417.  
  7418. #include <version>
  7419. using _LIBCPP_VERSION;
  7420. int main(void) { return 0; }
  7421. Cached compiler stdout:
  7422.  
  7423. Cached compiler stderr:
  7424. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7425. 3 | using _LIBCPP_VERSION;
  7426. | ^~~~~~~~~~~~~~~
  7427.  
  7428. Using cached compile:
  7429. 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
  7430.  
  7431. Code:
  7432.  
  7433. #ifdef __has_include
  7434. #if !__has_include("version")
  7435. #error "Header 'version' could not be found"
  7436. #endif
  7437. #else
  7438. #include <version>
  7439. #endif
  7440. Cached compiler stdout:
  7441.  
  7442. Cached compiler stderr:
  7443.  
  7444. Using cached compile:
  7445. 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
  7446.  
  7447. Code:
  7448.  
  7449. #include <version>
  7450. int main(void) {
  7451. /* If it's not defined as a macro, try to use as a symbol */
  7452. #ifndef _LIBCPP_VERSION
  7453. _LIBCPP_VERSION;
  7454. #endif
  7455. return 0;
  7456. }
  7457. Cached compiler stdout:
  7458.  
  7459. Cached compiler stderr:
  7460. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7461. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7462. 6 | _LIBCPP_VERSION;
  7463. | ^~~~~~~~~~~~~~~
  7464.  
  7465. Using cached compile:
  7466. 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
  7467.  
  7468. Code:
  7469.  
  7470. #include <version>
  7471. using _LIBCPP_VERSION;
  7472. int main(void) { return 0; }
  7473. Cached compiler stdout:
  7474.  
  7475. Cached compiler stderr:
  7476. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7477. 3 | using _LIBCPP_VERSION;
  7478. | ^~~~~~~~~~~~~~~
  7479.  
  7480. Using cached compile:
  7481. 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
  7482.  
  7483. Code:
  7484.  
  7485. #ifdef __has_include
  7486. #if !__has_include("version")
  7487. #error "Header 'version' could not be found"
  7488. #endif
  7489. #else
  7490. #include <version>
  7491. #endif
  7492. Cached compiler stdout:
  7493.  
  7494. Cached compiler stderr:
  7495.  
  7496. Using cached compile:
  7497. 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
  7498.  
  7499. Code:
  7500.  
  7501. #include <version>
  7502. int main(void) {
  7503. /* If it's not defined as a macro, try to use as a symbol */
  7504. #ifndef _LIBCPP_VERSION
  7505. _LIBCPP_VERSION;
  7506. #endif
  7507. return 0;
  7508. }
  7509. Cached compiler stdout:
  7510.  
  7511. Cached compiler stderr:
  7512. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7513. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7514. 6 | _LIBCPP_VERSION;
  7515. | ^~~~~~~~~~~~~~~
  7516.  
  7517. Using cached compile:
  7518. 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
  7519.  
  7520. Code:
  7521.  
  7522. #include <version>
  7523. using _LIBCPP_VERSION;
  7524. int main(void) { return 0; }
  7525. Cached compiler stdout:
  7526.  
  7527. Cached compiler stderr:
  7528. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7529. 3 | using _LIBCPP_VERSION;
  7530. | ^~~~~~~~~~~~~~~
  7531.  
  7532. Using cached compile:
  7533. 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
  7534.  
  7535. Code:
  7536.  
  7537. #ifdef __has_include
  7538. #if !__has_include("version")
  7539. #error "Header 'version' could not be found"
  7540. #endif
  7541. #else
  7542. #include <version>
  7543. #endif
  7544. Cached compiler stdout:
  7545.  
  7546. Cached compiler stderr:
  7547.  
  7548. Using cached compile:
  7549. 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
  7550.  
  7551. Code:
  7552.  
  7553. #include <version>
  7554. int main(void) {
  7555. /* If it's not defined as a macro, try to use as a symbol */
  7556. #ifndef _LIBCPP_VERSION
  7557. _LIBCPP_VERSION;
  7558. #endif
  7559. return 0;
  7560. }
  7561. Cached compiler stdout:
  7562.  
  7563. Cached compiler stderr:
  7564. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7565. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7566. 6 | _LIBCPP_VERSION;
  7567. | ^~~~~~~~~~~~~~~
  7568.  
  7569. Using cached compile:
  7570. 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
  7571.  
  7572. Code:
  7573.  
  7574. #include <version>
  7575. using _LIBCPP_VERSION;
  7576. int main(void) { return 0; }
  7577. Cached compiler stdout:
  7578.  
  7579. Cached compiler stderr:
  7580. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7581. 3 | using _LIBCPP_VERSION;
  7582. | ^~~~~~~~~~~~~~~
  7583.  
  7584. Using cached compile:
  7585. 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
  7586.  
  7587. Code:
  7588.  
  7589. #ifdef __has_include
  7590. #if !__has_include("version")
  7591. #error "Header 'version' could not be found"
  7592. #endif
  7593. #else
  7594. #include <version>
  7595. #endif
  7596. Cached compiler stdout:
  7597.  
  7598. Cached compiler stderr:
  7599.  
  7600. Using cached compile:
  7601. 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
  7602.  
  7603. Code:
  7604.  
  7605. #include <version>
  7606. int main(void) {
  7607. /* If it's not defined as a macro, try to use as a symbol */
  7608. #ifndef _LIBCPP_VERSION
  7609. _LIBCPP_VERSION;
  7610. #endif
  7611. return 0;
  7612. }
  7613. Cached compiler stdout:
  7614.  
  7615. Cached compiler stderr:
  7616. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7617. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7618. 6 | _LIBCPP_VERSION;
  7619. | ^~~~~~~~~~~~~~~
  7620.  
  7621. Using cached compile:
  7622. 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
  7623.  
  7624. Code:
  7625.  
  7626. #include <version>
  7627. using _LIBCPP_VERSION;
  7628. int main(void) { return 0; }
  7629. Cached compiler stdout:
  7630.  
  7631. Cached compiler stderr:
  7632. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7633. 3 | using _LIBCPP_VERSION;
  7634. | ^~~~~~~~~~~~~~~
  7635.  
  7636. Using cached compile:
  7637. 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
  7638.  
  7639. Code:
  7640.  
  7641. #ifdef __has_include
  7642. #if !__has_include("version")
  7643. #error "Header 'version' could not be found"
  7644. #endif
  7645. #else
  7646. #include <version>
  7647. #endif
  7648. Cached compiler stdout:
  7649.  
  7650. Cached compiler stderr:
  7651.  
  7652. Using cached compile:
  7653. 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
  7654.  
  7655. Code:
  7656.  
  7657. #include <version>
  7658. int main(void) {
  7659. /* If it's not defined as a macro, try to use as a symbol */
  7660. #ifndef _LIBCPP_VERSION
  7661. _LIBCPP_VERSION;
  7662. #endif
  7663. return 0;
  7664. }
  7665. Cached compiler stdout:
  7666.  
  7667. Cached compiler stderr:
  7668. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7669. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7670. 6 | _LIBCPP_VERSION;
  7671. | ^~~~~~~~~~~~~~~
  7672.  
  7673. Using cached compile:
  7674. 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
  7675.  
  7676. Code:
  7677.  
  7678. #include <version>
  7679. using _LIBCPP_VERSION;
  7680. int main(void) { return 0; }
  7681. Cached compiler stdout:
  7682.  
  7683. Cached compiler stderr:
  7684. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7685. 3 | using _LIBCPP_VERSION;
  7686. | ^~~~~~~~~~~~~~~
  7687.  
  7688. Using cached compile:
  7689. 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
  7690.  
  7691. Code:
  7692.  
  7693. #ifdef __has_include
  7694. #if !__has_include("version")
  7695. #error "Header 'version' could not be found"
  7696. #endif
  7697. #else
  7698. #include <version>
  7699. #endif
  7700. Cached compiler stdout:
  7701.  
  7702. Cached compiler stderr:
  7703.  
  7704. Using cached compile:
  7705. 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
  7706.  
  7707. Code:
  7708.  
  7709. #include <version>
  7710. int main(void) {
  7711. /* If it's not defined as a macro, try to use as a symbol */
  7712. #ifndef _LIBCPP_VERSION
  7713. _LIBCPP_VERSION;
  7714. #endif
  7715. return 0;
  7716. }
  7717. Cached compiler stdout:
  7718.  
  7719. Cached compiler stderr:
  7720. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7721. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7722. 6 | _LIBCPP_VERSION;
  7723. | ^~~~~~~~~~~~~~~
  7724.  
  7725. Using cached compile:
  7726. 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
  7727.  
  7728. Code:
  7729.  
  7730. #include <version>
  7731. using _LIBCPP_VERSION;
  7732. int main(void) { return 0; }
  7733. Cached compiler stdout:
  7734.  
  7735. Cached compiler stderr:
  7736. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7737. 3 | using _LIBCPP_VERSION;
  7738. | ^~~~~~~~~~~~~~~
  7739.  
  7740. Using cached compile:
  7741. 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
  7742.  
  7743. Code:
  7744.  
  7745. #ifdef __has_include
  7746. #if !__has_include("version")
  7747. #error "Header 'version' could not be found"
  7748. #endif
  7749. #else
  7750. #include <version>
  7751. #endif
  7752. Cached compiler stdout:
  7753.  
  7754. Cached compiler stderr:
  7755.  
  7756. Using cached compile:
  7757. 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
  7758.  
  7759. Code:
  7760.  
  7761. #include <version>
  7762. int main(void) {
  7763. /* If it's not defined as a macro, try to use as a symbol */
  7764. #ifndef _LIBCPP_VERSION
  7765. _LIBCPP_VERSION;
  7766. #endif
  7767. return 0;
  7768. }
  7769. Cached compiler stdout:
  7770.  
  7771. Cached compiler stderr:
  7772. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7773. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7774. 6 | _LIBCPP_VERSION;
  7775. | ^~~~~~~~~~~~~~~
  7776.  
  7777. Using cached compile:
  7778. 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
  7779.  
  7780. Code:
  7781.  
  7782. #include <version>
  7783. using _LIBCPP_VERSION;
  7784. int main(void) { return 0; }
  7785. Cached compiler stdout:
  7786.  
  7787. Cached compiler stderr:
  7788. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7789. 3 | using _LIBCPP_VERSION;
  7790. | ^~~~~~~~~~~~~~~
  7791.  
  7792. Using cached compile:
  7793. 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
  7794.  
  7795. Code:
  7796.  
  7797. #ifdef __has_include
  7798. #if !__has_include("version")
  7799. #error "Header 'version' could not be found"
  7800. #endif
  7801. #else
  7802. #include <version>
  7803. #endif
  7804. Cached compiler stdout:
  7805.  
  7806. Cached compiler stderr:
  7807.  
  7808. Using cached compile:
  7809. 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
  7810.  
  7811. Code:
  7812.  
  7813. #include <version>
  7814. int main(void) {
  7815. /* If it's not defined as a macro, try to use as a symbol */
  7816. #ifndef _LIBCPP_VERSION
  7817. _LIBCPP_VERSION;
  7818. #endif
  7819. return 0;
  7820. }
  7821. Cached compiler stdout:
  7822.  
  7823. Cached compiler stderr:
  7824. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7825. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7826. 6 | _LIBCPP_VERSION;
  7827. | ^~~~~~~~~~~~~~~
  7828.  
  7829. Using cached compile:
  7830. 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
  7831.  
  7832. Code:
  7833.  
  7834. #include <version>
  7835. using _LIBCPP_VERSION;
  7836. int main(void) { return 0; }
  7837. Cached compiler stdout:
  7838.  
  7839. Cached compiler stderr:
  7840. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7841. 3 | using _LIBCPP_VERSION;
  7842. | ^~~~~~~~~~~~~~~
  7843.  
  7844. Using cached compile:
  7845. 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
  7846.  
  7847. Code:
  7848.  
  7849. #ifdef __has_include
  7850. #if !__has_include("version")
  7851. #error "Header 'version' could not be found"
  7852. #endif
  7853. #else
  7854. #include <version>
  7855. #endif
  7856. Cached compiler stdout:
  7857.  
  7858. Cached compiler stderr:
  7859.  
  7860. Using cached compile:
  7861. 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
  7862.  
  7863. Code:
  7864.  
  7865. #include <version>
  7866. int main(void) {
  7867. /* If it's not defined as a macro, try to use as a symbol */
  7868. #ifndef _LIBCPP_VERSION
  7869. _LIBCPP_VERSION;
  7870. #endif
  7871. return 0;
  7872. }
  7873. Cached compiler stdout:
  7874.  
  7875. Cached compiler stderr:
  7876. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7877. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7878. 6 | _LIBCPP_VERSION;
  7879. | ^~~~~~~~~~~~~~~
  7880.  
  7881. Using cached compile:
  7882. 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
  7883.  
  7884. Code:
  7885.  
  7886. #include <version>
  7887. using _LIBCPP_VERSION;
  7888. int main(void) { return 0; }
  7889. Cached compiler stdout:
  7890.  
  7891. Cached compiler stderr:
  7892. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7893. 3 | using _LIBCPP_VERSION;
  7894. | ^~~~~~~~~~~~~~~
  7895.  
  7896. Using cached compile:
  7897. 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
  7898.  
  7899. Code:
  7900.  
  7901. #ifdef __has_include
  7902. #if !__has_include("version")
  7903. #error "Header 'version' could not be found"
  7904. #endif
  7905. #else
  7906. #include <version>
  7907. #endif
  7908. Cached compiler stdout:
  7909.  
  7910. Cached compiler stderr:
  7911.  
  7912. Using cached compile:
  7913. 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
  7914.  
  7915. Code:
  7916.  
  7917. #include <version>
  7918. int main(void) {
  7919. /* If it's not defined as a macro, try to use as a symbol */
  7920. #ifndef _LIBCPP_VERSION
  7921. _LIBCPP_VERSION;
  7922. #endif
  7923. return 0;
  7924. }
  7925. Cached compiler stdout:
  7926.  
  7927. Cached compiler stderr:
  7928. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7929. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7930. 6 | _LIBCPP_VERSION;
  7931. | ^~~~~~~~~~~~~~~
  7932.  
  7933. Using cached compile:
  7934. 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
  7935.  
  7936. Code:
  7937.  
  7938. #include <version>
  7939. using _LIBCPP_VERSION;
  7940. int main(void) { return 0; }
  7941. Cached compiler stdout:
  7942.  
  7943. Cached compiler stderr:
  7944. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7945. 3 | using _LIBCPP_VERSION;
  7946. | ^~~~~~~~~~~~~~~
  7947.  
  7948. Using cached compile:
  7949. 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
  7950.  
  7951. Code:
  7952.  
  7953. #ifdef __has_include
  7954. #if !__has_include("version")
  7955. #error "Header 'version' could not be found"
  7956. #endif
  7957. #else
  7958. #include <version>
  7959. #endif
  7960. Cached compiler stdout:
  7961.  
  7962. Cached compiler stderr:
  7963.  
  7964. Using cached compile:
  7965. 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
  7966.  
  7967. Code:
  7968.  
  7969. #include <version>
  7970. int main(void) {
  7971. /* If it's not defined as a macro, try to use as a symbol */
  7972. #ifndef _LIBCPP_VERSION
  7973. _LIBCPP_VERSION;
  7974. #endif
  7975. return 0;
  7976. }
  7977. Cached compiler stdout:
  7978.  
  7979. Cached compiler stderr:
  7980. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  7981. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  7982. 6 | _LIBCPP_VERSION;
  7983. | ^~~~~~~~~~~~~~~
  7984.  
  7985. Using cached compile:
  7986. 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
  7987.  
  7988. Code:
  7989.  
  7990. #include <version>
  7991. using _LIBCPP_VERSION;
  7992. int main(void) { return 0; }
  7993. Cached compiler stdout:
  7994.  
  7995. Cached compiler stderr:
  7996. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  7997. 3 | using _LIBCPP_VERSION;
  7998. | ^~~~~~~~~~~~~~~
  7999.  
  8000. Using cached compile:
  8001. 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
  8002.  
  8003. Code:
  8004.  
  8005. #ifdef __has_include
  8006. #if !__has_include("version")
  8007. #error "Header 'version' could not be found"
  8008. #endif
  8009. #else
  8010. #include <version>
  8011. #endif
  8012. Cached compiler stdout:
  8013.  
  8014. Cached compiler stderr:
  8015.  
  8016. Using cached compile:
  8017. 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
  8018.  
  8019. Code:
  8020.  
  8021. #include <version>
  8022. int main(void) {
  8023. /* If it's not defined as a macro, try to use as a symbol */
  8024. #ifndef _LIBCPP_VERSION
  8025. _LIBCPP_VERSION;
  8026. #endif
  8027. return 0;
  8028. }
  8029. Cached compiler stdout:
  8030.  
  8031. Cached compiler stderr:
  8032. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8033. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8034. 6 | _LIBCPP_VERSION;
  8035. | ^~~~~~~~~~~~~~~
  8036.  
  8037. Using cached compile:
  8038. 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
  8039.  
  8040. Code:
  8041.  
  8042. #include <version>
  8043. using _LIBCPP_VERSION;
  8044. int main(void) { return 0; }
  8045. Cached compiler stdout:
  8046.  
  8047. Cached compiler stderr:
  8048. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8049. 3 | using _LIBCPP_VERSION;
  8050. | ^~~~~~~~~~~~~~~
  8051.  
  8052. Using cached compile:
  8053. 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
  8054.  
  8055. Code:
  8056.  
  8057. #ifdef __has_include
  8058. #if !__has_include("version")
  8059. #error "Header 'version' could not be found"
  8060. #endif
  8061. #else
  8062. #include <version>
  8063. #endif
  8064. Cached compiler stdout:
  8065.  
  8066. Cached compiler stderr:
  8067.  
  8068. Using cached compile:
  8069. 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
  8070.  
  8071. Code:
  8072.  
  8073. #include <version>
  8074. int main(void) {
  8075. /* If it's not defined as a macro, try to use as a symbol */
  8076. #ifndef _LIBCPP_VERSION
  8077. _LIBCPP_VERSION;
  8078. #endif
  8079. return 0;
  8080. }
  8081. Cached compiler stdout:
  8082.  
  8083. Cached compiler stderr:
  8084. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8085. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8086. 6 | _LIBCPP_VERSION;
  8087. | ^~~~~~~~~~~~~~~
  8088.  
  8089. Using cached compile:
  8090. 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
  8091.  
  8092. Code:
  8093.  
  8094. #include <version>
  8095. using _LIBCPP_VERSION;
  8096. int main(void) { return 0; }
  8097. Cached compiler stdout:
  8098.  
  8099. Cached compiler stderr:
  8100. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8101. 3 | using _LIBCPP_VERSION;
  8102. | ^~~~~~~~~~~~~~~
  8103.  
  8104. Using cached compile:
  8105. 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
  8106.  
  8107. Code:
  8108.  
  8109. #ifdef __has_include
  8110. #if !__has_include("version")
  8111. #error "Header 'version' could not be found"
  8112. #endif
  8113. #else
  8114. #include <version>
  8115. #endif
  8116. Cached compiler stdout:
  8117.  
  8118. Cached compiler stderr:
  8119.  
  8120. Using cached compile:
  8121. 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
  8122.  
  8123. Code:
  8124.  
  8125. #include <version>
  8126. int main(void) {
  8127. /* If it's not defined as a macro, try to use as a symbol */
  8128. #ifndef _LIBCPP_VERSION
  8129. _LIBCPP_VERSION;
  8130. #endif
  8131. return 0;
  8132. }
  8133. Cached compiler stdout:
  8134.  
  8135. Cached compiler stderr:
  8136. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8137. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8138. 6 | _LIBCPP_VERSION;
  8139. | ^~~~~~~~~~~~~~~
  8140.  
  8141. Using cached compile:
  8142. 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
  8143.  
  8144. Code:
  8145.  
  8146. #include <version>
  8147. using _LIBCPP_VERSION;
  8148. int main(void) { return 0; }
  8149. Cached compiler stdout:
  8150.  
  8151. Cached compiler stderr:
  8152. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8153. 3 | using _LIBCPP_VERSION;
  8154. | ^~~~~~~~~~~~~~~
  8155.  
  8156. Using cached compile:
  8157. 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
  8158.  
  8159. Code:
  8160.  
  8161. #ifdef __has_include
  8162. #if !__has_include("version")
  8163. #error "Header 'version' could not be found"
  8164. #endif
  8165. #else
  8166. #include <version>
  8167. #endif
  8168. Cached compiler stdout:
  8169.  
  8170. Cached compiler stderr:
  8171.  
  8172. Using cached compile:
  8173. 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
  8174.  
  8175. Code:
  8176.  
  8177. #include <version>
  8178. int main(void) {
  8179. /* If it's not defined as a macro, try to use as a symbol */
  8180. #ifndef _LIBCPP_VERSION
  8181. _LIBCPP_VERSION;
  8182. #endif
  8183. return 0;
  8184. }
  8185. Cached compiler stdout:
  8186.  
  8187. Cached compiler stderr:
  8188. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8189. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8190. 6 | _LIBCPP_VERSION;
  8191. | ^~~~~~~~~~~~~~~
  8192.  
  8193. Using cached compile:
  8194. 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
  8195.  
  8196. Code:
  8197.  
  8198. #include <version>
  8199. using _LIBCPP_VERSION;
  8200. int main(void) { return 0; }
  8201. Cached compiler stdout:
  8202.  
  8203. Cached compiler stderr:
  8204. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8205. 3 | using _LIBCPP_VERSION;
  8206. | ^~~~~~~~~~~~~~~
  8207.  
  8208. Using cached compile:
  8209. 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
  8210.  
  8211. Code:
  8212.  
  8213. #ifdef __has_include
  8214. #if !__has_include("version")
  8215. #error "Header 'version' could not be found"
  8216. #endif
  8217. #else
  8218. #include <version>
  8219. #endif
  8220. Cached compiler stdout:
  8221.  
  8222. Cached compiler stderr:
  8223.  
  8224. Using cached compile:
  8225. 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
  8226.  
  8227. Code:
  8228.  
  8229. #include <version>
  8230. int main(void) {
  8231. /* If it's not defined as a macro, try to use as a symbol */
  8232. #ifndef _LIBCPP_VERSION
  8233. _LIBCPP_VERSION;
  8234. #endif
  8235. return 0;
  8236. }
  8237. Cached compiler stdout:
  8238.  
  8239. Cached compiler stderr:
  8240. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8241. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8242. 6 | _LIBCPP_VERSION;
  8243. | ^~~~~~~~~~~~~~~
  8244.  
  8245. Using cached compile:
  8246. 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
  8247.  
  8248. Code:
  8249.  
  8250. #include <version>
  8251. using _LIBCPP_VERSION;
  8252. int main(void) { return 0; }
  8253. Cached compiler stdout:
  8254.  
  8255. Cached compiler stderr:
  8256. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8257. 3 | using _LIBCPP_VERSION;
  8258. | ^~~~~~~~~~~~~~~
  8259.  
  8260. Using cached compile:
  8261. 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
  8262.  
  8263. Code:
  8264.  
  8265. #ifdef __has_include
  8266. #if !__has_include("version")
  8267. #error "Header 'version' could not be found"
  8268. #endif
  8269. #else
  8270. #include <version>
  8271. #endif
  8272. Cached compiler stdout:
  8273.  
  8274. Cached compiler stderr:
  8275.  
  8276. Using cached compile:
  8277. 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
  8278.  
  8279. Code:
  8280.  
  8281. #include <version>
  8282. int main(void) {
  8283. /* If it's not defined as a macro, try to use as a symbol */
  8284. #ifndef _LIBCPP_VERSION
  8285. _LIBCPP_VERSION;
  8286. #endif
  8287. return 0;
  8288. }
  8289. Cached compiler stdout:
  8290.  
  8291. Cached compiler stderr:
  8292. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8293. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8294. 6 | _LIBCPP_VERSION;
  8295. | ^~~~~~~~~~~~~~~
  8296.  
  8297. Using cached compile:
  8298. 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
  8299.  
  8300. Code:
  8301.  
  8302. #include <version>
  8303. using _LIBCPP_VERSION;
  8304. int main(void) { return 0; }
  8305. Cached compiler stdout:
  8306.  
  8307. Cached compiler stderr:
  8308. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8309. 3 | using _LIBCPP_VERSION;
  8310. | ^~~~~~~~~~~~~~~
  8311.  
  8312. Using cached compile:
  8313. 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
  8314.  
  8315. Code:
  8316.  
  8317. #ifdef __has_include
  8318. #if !__has_include("version")
  8319. #error "Header 'version' could not be found"
  8320. #endif
  8321. #else
  8322. #include <version>
  8323. #endif
  8324. Cached compiler stdout:
  8325.  
  8326. Cached compiler stderr:
  8327.  
  8328. Using cached compile:
  8329. 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
  8330.  
  8331. Code:
  8332.  
  8333. #include <version>
  8334. int main(void) {
  8335. /* If it's not defined as a macro, try to use as a symbol */
  8336. #ifndef _LIBCPP_VERSION
  8337. _LIBCPP_VERSION;
  8338. #endif
  8339. return 0;
  8340. }
  8341. Cached compiler stdout:
  8342.  
  8343. Cached compiler stderr:
  8344. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8345. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8346. 6 | _LIBCPP_VERSION;
  8347. | ^~~~~~~~~~~~~~~
  8348.  
  8349. Using cached compile:
  8350. 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
  8351.  
  8352. Code:
  8353.  
  8354. #include <version>
  8355. using _LIBCPP_VERSION;
  8356. int main(void) { return 0; }
  8357. Cached compiler stdout:
  8358.  
  8359. Cached compiler stderr:
  8360. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8361. 3 | using _LIBCPP_VERSION;
  8362. | ^~~~~~~~~~~~~~~
  8363.  
  8364. Using cached compile:
  8365. 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
  8366.  
  8367. Code:
  8368.  
  8369. #ifdef __has_include
  8370. #if !__has_include("version")
  8371. #error "Header 'version' could not be found"
  8372. #endif
  8373. #else
  8374. #include <version>
  8375. #endif
  8376. Cached compiler stdout:
  8377.  
  8378. Cached compiler stderr:
  8379.  
  8380. Using cached compile:
  8381. 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
  8382.  
  8383. Code:
  8384.  
  8385. #include <version>
  8386. int main(void) {
  8387. /* If it's not defined as a macro, try to use as a symbol */
  8388. #ifndef _LIBCPP_VERSION
  8389. _LIBCPP_VERSION;
  8390. #endif
  8391. return 0;
  8392. }
  8393. Cached compiler stdout:
  8394.  
  8395. Cached compiler stderr:
  8396. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8397. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8398. 6 | _LIBCPP_VERSION;
  8399. | ^~~~~~~~~~~~~~~
  8400.  
  8401. Using cached compile:
  8402. 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
  8403.  
  8404. Code:
  8405.  
  8406. #include <version>
  8407. using _LIBCPP_VERSION;
  8408. int main(void) { return 0; }
  8409. Cached compiler stdout:
  8410.  
  8411. Cached compiler stderr:
  8412. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8413. 3 | using _LIBCPP_VERSION;
  8414. | ^~~~~~~~~~~~~~~
  8415.  
  8416. Using cached compile:
  8417. 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
  8418.  
  8419. Code:
  8420.  
  8421. #ifdef __has_include
  8422. #if !__has_include("version")
  8423. #error "Header 'version' could not be found"
  8424. #endif
  8425. #else
  8426. #include <version>
  8427. #endif
  8428. Cached compiler stdout:
  8429.  
  8430. Cached compiler stderr:
  8431.  
  8432. Using cached compile:
  8433. 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
  8434.  
  8435. Code:
  8436.  
  8437. #include <version>
  8438. int main(void) {
  8439. /* If it's not defined as a macro, try to use as a symbol */
  8440. #ifndef _LIBCPP_VERSION
  8441. _LIBCPP_VERSION;
  8442. #endif
  8443. return 0;
  8444. }
  8445. Cached compiler stdout:
  8446.  
  8447. Cached compiler stderr:
  8448. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp: In function 'int main()':
  8449. /home/minikea/dev/NVEnc/build/meson-private/tmpu1avfrrr/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
  8450. 6 | _LIBCPP_VERSION;
  8451. | ^~~~~~~~~~~~~~~
  8452.  
  8453. Using cached compile:
  8454. 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
  8455.  
  8456. Code:
  8457.  
  8458. #include <version>
  8459. using _LIBCPP_VERSION;
  8460. int main(void) { return 0; }
  8461. Cached compiler stdout:
  8462.  
  8463. Cached compiler stderr:
  8464. /home/minikea/dev/NVEnc/build/meson-private/tmp_zljlurx/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
  8465. 3 | using _LIBCPP_VERSION;
  8466. | ^~~~~~~~~~~~~~~
  8467.  
  8468. Rewriting module 'cudart_static' to '['-cudart', 'static']'
  8469.  
Advertisement
Comments
  • Lerlirin
    12 days
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1ifNm-s74mX7GChaEzSJ1dVQCy1SrSxlMVRYi8ys0rgQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
Add Comment
Please, Sign In to add comment