-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.log
More file actions
1180 lines (1180 loc) · 103 KB
/
build.log
File metadata and controls
1180 lines (1180 loc) · 103 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ninja: Entering directory `build'
[1/1106] Building CXX object CMakeFiles/t81_core.dir/isa/encoding.cpp.o
[2/1106] Building CXX object CMakeFiles/t81_core.dir/fs/canonfs_interchange.cpp.o
[3/1106] Building CXX object CMakeFiles/t81_core.dir/fs/in_memory_driver.cpp.o
[4/1106] Building CXX object CMakeFiles/t81_core.dir/isa/types/bigint.cpp.o
[5/1106] Building CXX object CMakeFiles/t81_core.dir/isa/types/fraction.cpp.o
[6/1106] Building CXX object CMakeFiles/t81_core.dir/vm/determinism/canon_hash81.cpp.o
[7/1106] Building CXX object CMakeFiles/t81_core.dir/fs/block_backed_driver.cpp.o
[8/1106] Building CXX object CMakeFiles/t81_core.dir/codec/base81.cpp.o
[9/1106] Building CXX object CMakeFiles/t81_core.dir/fs/persistent_driver.cpp.o
[10/1106] Building CXX object CMakeFiles/t81_core.dir/fs/canonfs_interchange_ops.cpp.o
[11/1106] Building CXX object CMakeFiles/t81_core.dir/codec/base81_packed.cpp.o
[12/1106] Building CXX object CMakeFiles/t81_core.dir/codec/metadata.cpp.o
[13/1106] Building CXX object CMakeFiles/t81_core.dir/codec/base81_balanced.cpp.o
[14/1106] Building CXX object CMakeFiles/t81_core.dir/isa/math/t81_soft_math/t81_soft_math.cpp.o
[15/1106] Building CXX object CMakeFiles/t81_core.dir/crypto/sha3.cpp.o
[16/1106] Building CXX object CMakeFiles/t81_core.dir/codec/base243.cpp.o
[17/1106] Building CXX object CMakeFiles/t81_tracing.dir/vm/tracing/canonhash81.cpp.o
[18/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/hanoi/error.cpp.o
[19/1106] Building CXX object CMakeFiles/t81_core.dir/inference/simd/base81_digits_avx2.cpp.o
[20/1106] Building CXX object CMakeFiles/t81_core.dir/codec/trit_packing.cpp.o
[21/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/tiers/cog/tier3/recursive.cpp.o
[22/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/hanoi/in_memory_kernel.cpp.o
[23/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/tiers/cog/tier2/reflective.cpp.o
[24/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/tiers/cog/promotion.cpp.o
[25/1106] Building CXX object CMakeFiles/t81_math_quantization.dir/isa/math/quantization/ternary_codec.cpp.o
[26/1106] Building CXX object CMakeFiles/t81_core.dir/experimental/cog/v1/symbolic_graph.cpp.o
[27/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/distributed/distributed.cpp.o
[28/1106] Building CXX object CMakeFiles/t81_core.dir/experimental/setun/bridge.cpp.o
[29/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/ethics.cpp.o
[30/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/axion_api.cpp.o
[31/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/engine.cpp.o
[32/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/tiers/cog/tier4/tier4_loop.cpp.o
[33/1106] Building CXX object CMakeFiles/t81_experimental.dir/experimental/tiers/cog/tier5/infinite.cpp.o
[34/1106] Linking CXX static library libt81_core.a
[35/1106] Linking CXX static library libt81_experimental.a
[36/1106] Linking CXX static library libt81_math_quantization.a
[37/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/nondeterminism_detector.cpp.o
[38/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/policy_serialization.cpp.o
[39/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/ai_hooks.cpp.o
[40/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/ai_model_loader.cpp.o
[41/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/policy_engine.cpp.o
[42/1106] Building CXX object CMakeFiles/t81_tool_model.dir/tools/model/gguf_import_bridge.cpp.o
[43/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/canonfs_hook.cpp.o
[44/1106] Building CXX object CMakeFiles/t81_io.dir/vm/io/tensor_loader.cpp.o
[45/1106] Linking CXX static library libt81_io.a
[46/1106] Building CXX object CMakeFiles/t81_axion.dir/kernel/axion/policy_validator.cpp.o
[47/1106] Building CXX object CMakeFiles/t81_tool_model.dir/tools/model/weights_t81w_emitter.cpp.o
[48/1106] Linking CXX static library libt81_axion.a
[49/1106] Building CXX object CMakeFiles/t81_lang_frontend.dir/lang/frontend/lexer.cpp.o
[50/1106] Building CXX object CMakeFiles/t81_lang_frontend.dir/lang/frontend/builtin_registry.cpp.o
[51/1106] Building CXX object CMakeFiles/t81_c_api.dir/ffi/c_api/t81_c_api.cpp.o
[52/1106] Linking CXX static library libt81_c_api.a
[53/1106] Building CXX object CMakeFiles/t81_ffi.dir/ffi/ffi_dispatcher.cpp.o
[54/1106] Linking CXX static library libt81_ffi.a
[55/1106] Building CXX object CMakeFiles/t81_lang_frontend.dir/lang/frontend/symbol_table.cpp.o
[56/1106] Building CXX object CMakeFiles/t81_isa.dir/isa/pretty_printer.cpp.o
[57/1106] Building CXX object CMakeFiles/t81_tool_model.dir/tools/model/weights.cpp.o
[58/1106] Linking CXX static library libt81_tool_model.a
[59/1106] Building CXX object CMakeFiles/t81_lang_frontend.dir/lang/frontend/parser.cpp.o
[60/1106] Building CXX object CMakeFiles/t81_isa.dir/isa/binary_emitter.cpp.o
[61/1106] Building CXX object CMakeFiles/t81_isa.dir/isa/binary_io.cpp.o
[62/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/value_ops.cpp.o
[63/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/tier_limits.cpp.o
[64/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/memory_segments.cpp.o
[65/1106] Building CXX object CMakeFiles/t81_isa.dir/isa/base81_view.cpp.o
[66/1106] Linking CXX static library libt81_isa.a
[67/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/policy_trace_bridge.cpp.o
[68/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/runtime_state_helpers.cpp.o
[69/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/gc_helpers.cpp.o
[70/1106] Building CXX object CMakeFiles/t81_lang_frontend.dir/lang/frontend/ir_generator.cpp.o
[71/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/ai_backend/backend_adapter.cpp.o
[72/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/ffi_dispatcher.cpp.o
[73/1106] Building CXX object CMakeFiles/t81_lang_frontend.dir/lang/frontend/semantic_analyzer.cpp.o
[74/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/decode_state.cpp.o
[75/1106] Linking CXX static library libt81_lang_frontend.a
[76/1106] Building CXX object CMakeFiles/t81_vm.dir/ffi/ffi_dispatcher.cpp.o
[77/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/tensor_helpers.cpp.o
[78/1106] Building CXX object CMakeFiles/t81_jit.dir/vm/jit/jit_trace_cache.cpp.o
[79/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/hosted_stub.cpp.o
[80/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/interrupt_table.cpp.o
[81/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/hal_main.cpp.o
[82/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/virtualbox_platform.cpp.o
[83/1106] Building CXX object CMakeFiles/t81_jit.dir/vm/jit/jit_compiler.cpp.o
[84/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/virtualbox_guest_devices.cpp.o
[85/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/qemu_platform.cpp.o
[86/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/hal_c_abi.cpp.o
[87/1106] Building CXX object CMakeFiles/t81_vm.dir/vm/vm.cpp.o
[88/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/qemu_kernel_entry.cpp.o
[89/1106] Linking CXX static library libt81_vm.a
[90/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_runtime.cpp.o
[91/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_actions.cpp.o
[92/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_executable.cpp.o
[93/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_abi_wire.cpp.o
[94/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_faults.cpp.o
[95/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_interrupts.cpp.o
[96/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_abi.cpp.o
[97/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_interrupt_policy.cpp.o
[98/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_loader.cpp.o
[99/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_trap_shim.cpp.o
[100/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/hal/aarch64_trap_entry.cpp.o
[101/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/hosted_block_dev.cpp.o
[102/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_pager.cpp.o
[103/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/virtio_blk_mmio.cpp.o
[104/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_lifecycle.cpp.o
[105/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/virtualbox_vmsvga_dev.cpp.o
[106/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/virtualbox_ahci_dev.cpp.o
[107/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/framebuffer.cpp.o
[108/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/virtualbox_e1000_dev.cpp.o
[109/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_queries.cpp.o
[110/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/pl011_uart.cpp.o
[111/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/gicv3.cpp.o
[112/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/ttf.cpp.o
[113/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/dev/canon_store.cpp.o
[114/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/mmu/ternary_page_alloc.cpp.o
[115/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_runtime_utils.cpp.o
[116/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/mmu/page_table.cpp.o
[117/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_views.cpp.o
[118/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/sched/context_switch.cpp.o
[119/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/sched/run_queue.cpp.o
[120/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/sched/scheduler.cpp.o
[121/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/ipc/canon_message.cpp.o
[122/1106] Building CXX object CMakeFiles/t81_ternaryos_shell_demo.dir/ternaryos/apps/shell_demo.cpp.o
[123/1106] Building CXX object CMakeFiles/t81_ternaryos_demo.dir/ternaryos/apps/demo.cpp.o
[124/1106] Building CXX object CMakeFiles/t81_ternaryos_shell_startup_snapshot.dir/ternaryos/shell/shell_startup_snapshot.cpp.o
[125/1106] Building CXX object CMakeFiles/t81_ternaryos_phase4_startup_snapshot.dir/ternaryos/dev/phase4_startup_snapshot.cpp.o
[126/1106] Building CXX object CMakeFiles/t81_ternaryos_userenv.dir/kernel/axion/userenv/user_env.cpp.o
/app/kernel/axion/userenv/user_env.cpp: In member function ‘t81::ternaryos::userenv::LogoutResult t81::ternaryos::userenv::SessionManager::logout(uint64_t, uint32_t)’:
/app/kernel/axion/userenv/user_env.cpp:412:45: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘long long unsigned int’ [-Wformat=]
412 | std::snprintf(hash_buf, sizeof(hash_buf), "%016" PRIx64,
| ^
413 | fnv1a_session(rec) ^ 0xdeadbeefULL);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| long long unsigned int
[127/1106] Building CXX object CMakeFiles/t81_ternaryos_hal.dir/ternaryos/kernel/kernel_epoch.cpp.o
[128/1106] Building CXX object CMakeFiles/t81_ternaryos_page_alloc_test.dir/ternaryos/tests/ternary_page_alloc_test.cpp.o
[129/1106] Building CXX object CMakeFiles/t81_ternaryos_mmu_test.dir/ternaryos/tests/mmu_test.cpp.o
[130/1106] Building CXX object CMakeFiles/t81_ternaryos_qemu_slice6_snapshot.dir/ternaryos/dev/qemu_slice6_startup_snapshot.cpp.o
[131/1106] Building CXX object CMakeFiles/t81_ternaryos_shell.dir/kernel/axion/shell/shell_session.cpp.o
/app/kernel/axion/shell/shell_session.cpp: In constructor ‘t81::ternaryos::{anonymous}::StdoutSilencer::StdoutSilencer(bool)’:
/app/kernel/axion/shell/shell_session.cpp:629:17: warning: ignoring return value of ‘FILE* freopen(const char*, const char*, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
629 | std::freopen("/dev/null", "w", stdout);
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
[132/1106] Building CXX object CMakeFiles/t81_ternaryos_shell_tui.dir/ternaryos/apps/shell_tui.cpp.o
[133/1106] Building CXX object CMakeFiles/t81_ternaryos_context_switch_test.dir/ternaryos/tests/context_switch_test.cpp.o
[134/1106] Building CXX object CMakeFiles/t81_ternaryos_ipc_test.dir/ternaryos/tests/ipc_test.cpp.o
[135/1106] Building CXX object CMakeFiles/t81_ternaryos_scheduler_test.dir/ternaryos/tests/scheduler_test.cpp.o
[136/1106] Building CXX object CMakeFiles/t81_ternaryos_shell_session_test.dir/ternaryos/tests/shell_session_test.cpp.o
[137/1106] Building CXX object CMakeFiles/t81_ternaryos_device_driver_test.dir/ternaryos/tests/device_driver_test.cpp.o
[138/1106] Building CXX object CMakeFiles/t81_axion_userenv_include_surface_test.dir/tests/cpp/axion_userenv_include_surface_test.cpp.o
[139/1106] Building CXX object CMakeFiles/t81_ternaryos_user_env_test.dir/ternaryos/tests/user_env_test.cpp.o
[140/1106] Building CXX object CMakeFiles/t81_ternaryos_epoch_policy_test.dir/ternaryos/tests/epoch_policy_test.cpp.o
[141/1106] Building CXX object CMakeFiles/t81_ternaryos_epoch_submission_test.dir/ternaryos/tests/epoch_submission_test.cpp.o
[142/1106] Building CXX object CMakeFiles/t81_ternaryos_epoch_timeout_test.dir/ternaryos/tests/epoch_timeout_test.cpp.o
[143/1106] Building CXX object CMakeFiles/t81_ternaryos_epoch_syscall_test.dir/ternaryos/tests/epoch_syscall_test.cpp.o
[144/1106] Building CXX object CMakeFiles/t81_ternaryos_epoch_audit_test.dir/ternaryos/tests/epoch_audit_test.cpp.o
[145/1106] Building CXX object CMakeFiles/t81_dpe.dir/vm/dpe/task_graph.cpp.o
[146/1106] Building CXX object CMakeFiles/t81_ternaryos_hal_boot_test.dir/ternaryos/tests/hal_boot_test.cpp.o
/app/ternaryos/tests/hal_boot_test.cpp: In function ‘void test_kernel_abi_wire_blocks()’:
/app/ternaryos/tests/hal_boot_test.cpp:8945:3: warning: missing initializer for member ‘t81::ternaryos::kernel::KernelCallResult::thread_label’ [-Wmissing-field-initializers]
8945 | };
| ^
/app/ternaryos/tests/hal_boot_test.cpp:8945:3: warning: missing initializer for member ‘t81::ternaryos::kernel::KernelCallResult::supervisor_capability_transition_history’ [-Wmissing-field-initializers]
/app/ternaryos/tests/hal_boot_test.cpp:8945:3: warning: missing initializer for member ‘t81::ternaryos::kernel::KernelCallResult::supervisor_services’ [-Wmissing-field-initializers]
/app/ternaryos/tests/hal_boot_test.cpp:8945:3: warning: missing initializer for member ‘t81::ternaryos::kernel::KernelCallResult::supervisor_delegation_entries’ [-Wmissing-field-initializers]
/app/ternaryos/tests/hal_boot_test.cpp: In function ‘void test_kernel_user_space_isolation()’:
/app/ternaryos/tests/hal_boot_test.cpp:2143:56: warning: ‘*(const unsigned int*)((char*)&user_as + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ may be used uninitialized [-Wmaybe-uninitialized]
2143 | const auto* user_as_state = state->find_address_space(*user_as);
| ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp:2135:14: note: ‘*(const unsigned int*)((char*)&user_as + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ was declared here
2135 | const auto user_as =
| ^~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp: In function ‘void test_kernel_call_tva_c_bridge()’:
/app/ternaryos/tests/hal_boot_test.cpp:10457:37: warning: ‘*(const unsigned int*)((char*)&caller_address_space + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ may be used uninitialized [-Wmaybe-uninitialized]
10457 | check(t81::ternaryos::mmu::mmu_map(
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
10458 | state->page_table,
| ~~~~~~~~~~~~~~~~~~
10459 | state->allocator,
| ~~~~~~~~~~~~~~~~~
10460 | request_tva,
| ~~~~~~~~~~~~
10461 | *caller_address_space,
| ~~~~~~~~~~~~~~~~~~~~~~
10462 | {.readable = true, .writable = true, .executable = false}),
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp:10445:14: note: ‘*(const unsigned int*)((char*)&caller_address_space + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ was declared here
10445 | const auto caller_address_space =
| ^~~~~~~~~~~~~~~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp:10773:41: warning: ‘*(const unsigned int*)((char*)&outsider_address_space + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ may be used uninitialized [-Wmaybe-uninitialized]
10773 | check(t81::ternaryos::mmu::mmu_map(
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
10774 | state->page_table,
| ~~~~~~~~~~~~~~~~~~
10775 | state->allocator,
| ~~~~~~~~~~~~~~~~~
10776 | t81::ternaryos::mmu::tva_from_vpn_offset(84, 0),
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10777 | *outsider_address_space,
| ~~~~~~~~~~~~~~~~~~~~~~~~
10778 | {.readable = true, .writable = true, .executable = false}),
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp:10766:16: note: ‘*(const unsigned int*)((char*)&outsider_address_space + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ was declared here
10766 | const auto outsider_address_space =
| ^~~~~~~~~~~~~~~~~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp: In function ‘void test_kernel_syscall_trap_wiring()’:
/app/ternaryos/tests/hal_boot_test.cpp:2017:37: warning: ‘*(const unsigned int*)((char*)&caller_as + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ may be used uninitialized [-Wmaybe-uninitialized]
2017 | check(t81::ternaryos::mmu::mmu_map(state->page_table, state->allocator,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018 | req_tva, *caller_as,
| ~~~~~~~~~~~~~~~~~~~~
2019 | {.readable = true, .writable = true, .executable = false}),
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/app/ternaryos/tests/hal_boot_test.cpp:2007:14: note: ‘*(const unsigned int*)((char*)&caller_as + offsetof(const std::optional<unsigned int>,std::optional<unsigned int>::<unnamed>.std::_Optional_base<unsigned int, true, true>::<unnamed>))’ was declared here
2007 | const auto caller_as =
| ^~~~~~~~~
[147/1106] Building CXX object CMakeFiles/t81_dpe.dir/vm/dpe/thread_pool.cpp.o
[148/1106] Building CXX object CMakeFiles/t81_dpe.dir/vm/dpe/task_runner.cpp.o
[149/1106] Building CXX object CMakeFiles/t81_dpe_task_graph_test.dir/tests/cpp/dpe/task_graph_test.cpp.o
[150/1106] Building CXX object CMakeFiles/t81_dpe.dir/vm/dpe/epoch_commit.cpp.o
[151/1106] Linking CXX static library libt81_dpe.a
[152/1106] Building CXX object CMakeFiles/t81_dpe_epoch_commit_test.dir/tests/cpp/dpe/epoch_commit_test.cpp.o
[153/1106] Linking CXX executable t81_dpe_task_graph_test
[154/1106] Linking CXX executable t81_dpe_epoch_commit_test
[155/1106] Linking CXX static library libt81_ternaryos_hal.a
[156/1106] Linking CXX static library libt81_ternaryos_userenv.a
[157/1106] Linking CXX static library libt81_ternaryos_shell.a
[158/1106] Building CXX object CMakeFiles/t81_ternaryos_device_arbitration_syscall_test.dir/ternaryos/tests/device_arbitration_syscall_test.cpp.o
[159/1106] Building CXX object CMakeFiles/t81_ternaryos_epoch_history_test.dir/ternaryos/tests/epoch_history_test.cpp.o
[160/1106] Linking CXX executable t81_ternaryos_demo
[161/1106] Linking CXX executable t81_ternaryos_shell_demo
[162/1106] Linking CXX executable t81_ternaryos_phase4_startup_snapshot
[163/1106] Linking CXX executable t81_ternaryos_shell_startup_snapshot
[164/1106] Linking CXX executable t81_ternaryos_page_alloc_test
[165/1106] Linking CXX executable t81_ternaryos_context_switch_test
[166/1106] Linking CXX executable t81_ternaryos_qemu_slice6_snapshot
[167/1106] Linking CXX executable t81_ternaryos_mmu_test
[168/1106] Linking CXX executable t81_ternaryos_ipc_test
[169/1106] Linking CXX executable t81_ternaryos_scheduler_test
[170/1106] Building CXX object CMakeFiles/t81_dpe_task_runner_test.dir/tests/cpp/dpe/task_runner_test.cpp.o
[171/1106] Linking CXX executable t81_ternaryos_device_driver_test
[172/1106] Linking CXX executable t81_ternaryos_user_env_test
[173/1106] Linking CXX executable t81_ternaryos_hal_boot_test
[174/1106] Linking CXX executable t81_ternaryos_epoch_submission_test
[175/1106] Linking CXX executable t81_axion_userenv_include_surface_test
[176/1106] Linking CXX executable t81_ternaryos_shell_session_test
[177/1106] Linking CXX executable t81_ternaryos_epoch_policy_test
[178/1106] Building CXX object CMakeFiles/t81_dpe_epoch_dag_test.dir/tests/cpp/dpe/epoch_dag_test.cpp.o
[179/1106] Building CXX object CMakeFiles/t81_dpe_epoch_parallel_test.dir/tests/cpp/dpe/epoch_parallel_test.cpp.o
[180/1106] Linking CXX executable t81_ternaryos_epoch_audit_test
[181/1106] Linking CXX executable t81_ternaryos_epoch_syscall_test
[182/1106] Linking CXX executable t81_ternaryos_epoch_history_test
[183/1106] Linking CXX executable t81_ternaryos_epoch_timeout_test
[184/1106] Linking CXX executable t81_dpe_epoch_dag_test
[185/1106] Linking CXX executable t81_dpe_epoch_parallel_test
[186/1106] Linking CXX executable t81_dpe_task_runner_test
[187/1106] Linking CXX executable t81_ternaryos_device_arbitration_syscall_test
[188/1106] Building CXX object CMakeFiles/t81_dpe_include_surface_test.dir/tests/cpp/dpe/include_surface_test.cpp.o
[189/1106] Linking CXX executable t81_dpe_include_surface_test
[190/1106] Building CXX object CMakeFiles/t81_tool_cli.dir/tools/cli/canonize_tensor.cpp.o
[191/1106] Building CXX object CMakeFiles/t81_dpe_float_reduction_test.dir/tests/cpp/dpe/dpe_float_reduction_test.cpp.o
[192/1106] Linking CXX executable t81_dpe_float_reduction_test
[193/1106] Building CXX object CMakeFiles/t81_dpe_thread_pool_test.dir/tests/cpp/dpe/thread_pool_test.cpp.o
[194/1106] Building CXX object CMakeFiles/t81_tool_cli.dir/tools/cli/debugger.cpp.o
[195/1106] Linking CXX executable t81_dpe_thread_pool_test
[196/1106] Building CXX object CMakeFiles/t81_tui.dir/tools/tui/common.cpp.o
[197/1106] Building CXX object CMakeFiles/tui_snapshot_test.dir/tests/cpp/tui_snapshot_test.cpp.o
[198/1106] Building CXX object CMakeFiles/t81_decode.dir/vm/decoder.cpp.o
[199/1106] Building CXX object CMakeFiles/t81_tui.dir/tools/tui/agent.cpp.o
[200/1106] Building CXX object CMakeFiles/t81_tool_cli.dir/tools/cli/driver.cpp.o
[201/1106] Linking CXX static library libt81_tool_cli.a
[202/1106] Linking CXX static library libt81_decode.a
[203/1106] Building CXX object CMakeFiles/t81_tui.dir/tools/tui/studio.cpp.o
[204/1106] Building CXX object CMakeFiles/t81_demo.dir/examples/compiler-and-ffi/demo.cpp.o
[205/1106] Linking CXX executable t81_demo
[206/1106] Building CXX object CMakeFiles/t81_make_demo_model.dir/examples/ai-and-inference/model-load-canonfs/make_demo_model.cpp.o
[207/1106] Linking CXX executable t81_make_demo_model
[208/1106] Building CXX object CMakeFiles/t81_tensor_ops.dir/examples/ai-and-inference/tensor_ops.cpp.o
[209/1106] Building CXX object CMakeFiles/t81_make_demo_model_gov.dir/examples/governance/governance-demo/make_demo_model_gov.cpp.o
[210/1106] Linking CXX executable t81_tensor_ops
[211/1106] Building CXX object CMakeFiles/t81_ir_roundtrip.dir/examples/compiler-and-ffi/ir_roundtrip.cpp.o
[212/1106] Linking CXX executable t81_make_demo_model_gov
[213/1106] Linking CXX executable t81_ir_roundtrip
[214/1106] Building CXX object CMakeFiles/t81_make_guarded_llama_demo.dir/examples/ai-and-inference/model-load-canonfs/make_guarded_llama_demo.cpp.o
[215/1106] Linking CXX executable t81_make_guarded_llama_demo
[216/1106] Building CXX object CMakeFiles/t81_make_degraded_llama_demo.dir/examples/ai-and-inference/model-load-canonfs/make_degraded_llama_demo.cpp.o
[217/1106] Building CXX object CMakeFiles/t81_make_demo_safetensors.dir/examples/ai-and-inference/model-load-canonfs/make_demo_safetensors.cpp.o
[218/1106] Building CXX object CMakeFiles/t81_make_demo_float_safetensors.dir/examples/ai-and-inference/model-load-canonfs/make_demo_float_safetensors.cpp.o
[219/1106] Linking CXX executable t81_make_degraded_llama_demo
[220/1106] Linking CXX executable t81_make_demo_float_safetensors
[221/1106] Linking CXX executable t81_make_demo_safetensors
[222/1106] Building CXX object CMakeFiles/t81_make_demo_gguf.dir/examples/ai-and-inference/model-load-canonfs/make_demo_gguf.cpp.o
[223/1106] Linking CXX executable t81_make_demo_gguf
[224/1106] Building CXX object CMakeFiles/axion_guard_trace.dir/examples/governance/axion_guard_trace.cpp.o
[225/1106] Linking CXX executable axion_guard_trace
[226/1106] Building CXX object CMakeFiles/t81.dir/tools/cli/ai/ai_cli_shared.cpp.o
[227/1106] Building CXX object CMakeFiles/axion_demo.dir/examples/governance/axion_demo.cpp.o
[228/1106] Linking CXX executable axion_demo
[229/1106] Building CXX object CMakeFiles/axion_policy_trace.dir/examples/governance/axion_policy_trace.cpp.o
[230/1106] Building CXX object CMakeFiles/canonfs_trace_demo.dir/examples/storage-and-canonfs/canonfs_trace_demo.cpp.o
[231/1106] Linking CXX executable canonfs_trace_demo
[232/1106] Building CXX object CMakeFiles/t81_ai_cli.dir/tools/cli/ai/t81_ai_cli.cpp.o
[233/1106] Linking CXX executable axion_policy_trace
[234/1106] Building CXX object CMakeFiles/axion_policy_runner.dir/examples/governance/axion_policy_runner.cpp.o
[235/1106] Linking CXX executable axion_policy_runner
[236/1106] Building CXX object CMakeFiles/llama32_demo.dir/examples/ai-and-inference/ai-integration/llama32_demo.cpp.o
[237/1106] Linking CXX executable llama32_demo
[238/1106] Building CXX object CMakeFiles/t81_bigint_test.dir/tests/cpp/bigint_roundtrip.cpp.o
[239/1106] Linking CXX executable t81_bigint_test
[240/1106] Building CXX object CMakeFiles/t81_fraction_test.dir/tests/cpp/fraction_roundtrip.cpp.o
[241/1106] Linking CXX executable t81_fraction_test
[242/1106] Building CXX object CMakeFiles/t81_prob_properties_test.dir/tests/cpp/prob_properties_test.cpp.o
[243/1106] Linking CXX executable t81_prob_properties_test
[244/1106] Building CXX object CMakeFiles/t81_bigint_properties_test.dir/tests/cpp/bigint_properties_test.cpp.o
[245/1106] Linking CXX executable t81_bigint_properties_test
[246/1106] Building CXX object CMakeFiles/t81_t81int_properties_test.dir/tests/cpp/t81int_properties_test.cpp.o
[247/1106] Linking CXX executable t81_t81int_properties_test
[248/1106] Building CXX object CMakeFiles/complex_demo.dir/examples/compiler-and-ffi/complex_demo.cpp.o
[249/1106] Building CXX object CMakeFiles/t81_bigint_division_semantics_test.dir/tests/cpp/bigint_division_semantics_test.cpp.o
[250/1106] Linking CXX executable complex_demo
[251/1106] Linking CXX executable t81_bigint_division_semantics_test
[252/1106] Building CXX object CMakeFiles/t81_bigint_division_edge_properties_test.dir/tests/cpp/bigint_division_edge_properties_test.cpp.o
[253/1106] Linking CXX executable t81_bigint_division_edge_properties_test
[254/1106] Building CXX object CMakeFiles/t81_bigint_gcd_divmod_property_test.dir/tests/cpp/bigint_gcd_divmod_property_test.cpp.o
[255/1106] Linking CXX executable t81_bigint_gcd_divmod_property_test
[256/1106] Building CXX object CMakeFiles/t81_bigint_mod_test.dir/tests/cpp/test_T81BigInt_mod.cpp.o
[257/1106] Linking CXX executable t81_bigint_mod_test
[258/1106] Building CXX object CMakeFiles/t81_bigint_modular_inverse_test.dir/tests/cpp/bigint_modular_inverse_test.cpp.o
[259/1106] Linking CXX executable t81_bigint_modular_inverse_test
[260/1106] Building CXX object CMakeFiles/t81_bigint_sqrt_test.dir/tests/cpp/test_T81BigInt_sqrt.cpp.o
[261/1106] Linking CXX executable t81_bigint_sqrt_test
[262/1106] Building CXX object CMakeFiles/t81_ai_cli.dir/tools/cli/ai/ai_cli_shared.cpp.o
[263/1106] Building CXX object CMakeFiles/fuzz_bigint_div.dir/tests/cpp/fuzz_bigint_div.cpp.o
[264/1106] Linking CXX executable fuzz_bigint_div
[265/1106] Building CXX object CMakeFiles/t81.dir/tools/cli/main.cpp.o
[266/1106] Building CXX object CMakeFiles/t81_core_numeric_compat_test.dir/tests/cpp/core_numeric_compat_test.cpp.o
[267/1106] Linking CXX executable t81_core_numeric_compat_test
[268/1106] Linking CXX executable t81_ai_cli
[269/1106] Building CXX object CMakeFiles/fuzz_bigint_libfuzzer.dir/tests/cpp/fuzz_bigint_libfuzzer.cpp.o
[270/1106] Linking CXX executable fuzz_bigint_libfuzzer
[271/1106] Building CXX object CMakeFiles/t81_fraction_properties_test.dir/tests/cpp/fraction_properties_test.cpp.o
[272/1106] Linking CXX executable t81_fraction_properties_test
[273/1106] Building CXX object CMakeFiles/t81_tensor_transpose_test.dir/tests/cpp/tensor_transpose_test.cpp.o
[274/1106] Linking CXX executable t81_tensor_transpose_test
[275/1106] Building CXX object CMakeFiles/t81_v1_canonical_numeric_contract_test.dir/tests/cpp/v1_canonical_numeric_contract_test.cpp.o
[276/1106] Linking CXX executable t81_v1_canonical_numeric_contract_test
[277/1106] Building CXX object CMakeFiles/t81_core_fraction_compat_properties_test.dir/tests/cpp/core_fraction_compat_properties_test.cpp.o
[278/1106] Building CXX object CMakeFiles/t81_core_bigint_compat_properties_test.dir/tests/cpp/core_bigint_compat_properties_test.cpp.o
[279/1106] Linking CXX executable t81_core_fraction_compat_properties_test
[280/1106] Linking CXX executable t81_core_bigint_compat_properties_test
[281/1106] Building CXX object CMakeFiles/t81_tensor_slice_test.dir/tests/cpp/tensor_slice_test.cpp.o
[282/1106] Linking CXX executable t81_tensor_slice_test
[283/1106] Building CXX object CMakeFiles/t81_core_improvements_test.dir/tests/cpp/test_core_improvements.cpp.o
[284/1106] Linking CXX executable t81_core_improvements_test
[285/1106] Building CXX object CMakeFiles/t81_weights_quantize_test.dir/tests/cpp/weights_quantize_test.cpp.o
[286/1106] Building CXX object CMakeFiles/t81_canonfs_io_test.dir/tests/cpp/canonfs_io_test.cpp.o
[287/1106] Linking CXX executable t81_weights_quantize_test
[288/1106] Linking CXX executable t81_canonfs_io_test
[289/1106] Building CXX object CMakeFiles/t81_tensor_reshape_test.dir/tests/cpp/tensor_reshape_test.cpp.o
[290/1106] Linking CXX executable t81_tensor_reshape_test
[291/1106] Building CXX object CMakeFiles/t81_tensor_loader_test.dir/tests/cpp/tensor_loader_test.cpp.o
[292/1106] Linking CXX executable t81_tensor_loader_test
[293/1106] Building CXX object CMakeFiles/canonfs_persistent_driver_test.dir/tests/cpp/canonfs_persistent_driver_test.cpp.o
[294/1106] Building CXX object CMakeFiles/canonfs_read_verify_test.dir/tests/cpp/canonfs_read_verify_test.cpp.o
[295/1106] Linking CXX executable canonfs_persistent_driver_test
[296/1106] Building CXX object CMakeFiles/canonfs_axion_trace_test.dir/tests/cpp/canonfs_axion_trace_test.cpp.o
[297/1106] Linking CXX executable canonfs_read_verify_test
[298/1106] Linking CXX executable canonfs_axion_trace_test
[299/1106] Building CXX object CMakeFiles/t81_core_features_test.dir/tests/cpp/test_core_features.cpp.o
[300/1106] Linking CXX executable t81_core_features_test
[301/1106] Building CXX object CMakeFiles/canonfs_read_verify_env_contract_test.dir/tests/cpp/canonfs_read_verify_env_contract_test.cpp.o
[302/1106] Linking CXX executable canonfs_read_verify_env_contract_test
[303/1106] Building CXX object CMakeFiles/t81_ir_encoding_test.dir/tests/cpp/ir_encoding_test.cpp.o
[304/1106] Building CXX object CMakeFiles/canonfs_integrity_matrix_test.dir/tests/cpp/canonfs_integrity_matrix_test.cpp.o
[305/1106] Linking CXX executable t81_ir_encoding_test
[306/1106] Linking CXX executable canonfs_integrity_matrix_test
[307/1106] Building CXX object CMakeFiles/canonfs_identity_contract_test.dir/tests/cpp/canonfs_identity_contract_test.cpp.o
[308/1106] Linking CXX executable canonfs_identity_contract_test
[309/1106] Building CXX object CMakeFiles/t81_isa_encoding_test.dir/tests/cpp/tisc_encoding_test.cpp.o
[310/1106] Linking CXX executable t81_isa_encoding_test
[311/1106] Building CXX object CMakeFiles/t81_vm_tloadhash_custom_driver_test.dir/tests/cpp/vm_tloadhash_custom_driver_test.cpp.o
[312/1106] Building CXX object CMakeFiles/t81_vm_canonfs_root_env_contract_test.dir/tests/cpp/vm_canonfs_root_env_contract_test.cpp.o
[313/1106] Linking CXX executable t81_vm_canonfs_root_env_contract_test
[314/1106] Linking CXX executable t81_vm_tloadhash_custom_driver_test
[315/1106] Building CXX object CMakeFiles/t81_vm_tloadhash_canonical_fixed_test.dir/tests/cpp/vm_tloadhash_canonical_fixed_test.cpp.o
[316/1106] Building CXX object CMakeFiles/t81_vm_tloadhash_conformance_test.dir/tests/cpp/vm_tloadhash_conformance_test.cpp.o
[317/1106] Linking CXX executable t81_vm_tloadhash_canonical_fixed_test
[318/1106] Linking CXX executable t81_vm_tloadhash_conformance_test
[319/1106] Building CXX object CMakeFiles/t81_vm_tloadhash_decodefault_determinism_matrix_test.dir/tests/cpp/vm_tloadhash_decodefault_determinism_matrix_test.cpp.o
[320/1106] Linking CXX executable t81_vm_tloadhash_decodefault_determinism_matrix_test
[321/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_embed_conformance_test.dir/tests/cpp/vm_ai_phase1_embed_conformance_test.cpp.o
[322/1106] Building CXX object CMakeFiles/t81_vm_tensor_test.dir/tests/cpp/vm_tensor_test.cpp.o
[323/1106] Linking CXX executable t81_vm_tensor_test
[324/1106] Linking CXX executable t81_vm_ai_phase1_embed_conformance_test
[325/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_attention_conformance_test.dir/tests/cpp/vm_ai_phase1_attention_conformance_test.cpp.o
[326/1106] Linking CXX executable t81_vm_ai_phase1_attention_conformance_test
[327/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_qmatmul_conformance_test.dir/tests/cpp/vm_ai_phase1_qmatmul_conformance_test.cpp.o
[328/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_wload_conformance_test.dir/tests/cpp/vm_ai_phase1_wload_conformance_test.cpp.o
[329/1106] Linking CXX executable t81_vm_ai_phase1_qmatmul_conformance_test
[330/1106] Linking CXX executable t81_vm_ai_phase1_wload_conformance_test
[331/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_shared_helper_parity_test.dir/tests/cpp/vm_ai_phase1_shared_helper_parity_test.cpp.o
[332/1106] Linking CXX executable t81_vm_ai_phase1_shared_helper_parity_test
[333/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_scatter_conformance_test.dir/tests/cpp/vm_ai_phase1_scatter_conformance_test.cpp.o
[334/1106] Linking CXX executable t81_vm_ai_phase1_scatter_conformance_test
[335/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_wload_canonfs_audit_test.dir/tests/cpp/vm_ai_phase1_wload_canonfs_audit_test.cpp.o
[336/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_gather_conformance_test.dir/tests/cpp/vm_ai_phase1_gather_conformance_test.cpp.o
[337/1106] Linking CXX executable t81_vm_ai_phase1_wload_canonfs_audit_test
[338/1106] Linking CXX executable t81_vm_ai_phase1_gather_conformance_test
[339/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_scatter_aliasing_test.dir/tests/cpp/vm_ai_phase1_scatter_aliasing_test.cpp.o
[340/1106] Linking CXX executable t81_vm_ai_phase1_scatter_aliasing_test
[341/1106] Building CXX object CMakeFiles/t81_vm_ai_phase1_gather_axis1_test.dir/tests/cpp/vm_ai_phase1_gather_axis1_test.cpp.o
[342/1106] Linking CXX executable t81_vm_ai_phase1_gather_axis1_test
[343/1106] Building CXX object CMakeFiles/t81_vm_rfc0034_ternary_native_test.dir/tests/cpp/vm_rfc0034_ternary_native_test.cpp.o
[344/1106] Linking CXX executable t81_vm_rfc0034_ternary_native_test
[345/1106] Building CXX object CMakeFiles/t81_vm_tensor_shape_faults_test.dir/tests/cpp/vm_tensor_shape_faults_test.cpp.o
[346/1106] Linking CXX executable t81_vm_tensor_shape_faults_test
[347/1106] Building CXX object CMakeFiles/t81_vm_rfc0040_swar_test.dir/tests/cpp/vm_rfc0040_swar_test.cpp.o
[348/1106] Linking CXX executable t81_vm_rfc0040_swar_test
[349/1106] Building CXX object CMakeFiles/t81_lang_ai_m6_annotation_lowering_test.dir/tests/cpp/lang_ai_m6_annotation_lowering_test.cpp.o
[350/1106] Linking CXX executable t81_lang_ai_m6_annotation_lowering_test
[351/1106] Building CXX object CMakeFiles/t81_vm_tisc_v04_extensions_test.dir/tests/cpp/vm_tisc_v04_extensions_test.cpp.o
[352/1106] Linking CXX executable t81_vm_tisc_v04_extensions_test
[353/1106] Building CXX object CMakeFiles/t81_vm_tensor_provenance_trace_test.dir/tests/cpp/vm_tensor_provenance_trace_test.cpp.o
[354/1106] Linking CXX executable t81_vm_tensor_provenance_trace_test
[355/1106] Building CXX object CMakeFiles/t81_vm_tensor_helper_predicates_test.dir/tests/cpp/vm_tensor_helper_predicates_test.cpp.o
[356/1106] Linking CXX executable t81_vm_tensor_helper_predicates_test
[357/1106] Building CXX object CMakeFiles/t81_vm_predispatch_policy_deny_logging_test.dir/tests/cpp/vm_predispatch_policy_deny_logging_test.cpp.o
[358/1106] Linking CXX executable t81_vm_predispatch_policy_deny_logging_test
[359/1106] Building CXX object CMakeFiles/t81_vm_fault_test.dir/tests/cpp/vm_fault_test.cpp.o
[360/1106] Building CXX object CMakeFiles/t81_vm_ai_predispatch_deny_audit_test.dir/tests/cpp/vm_ai_predispatch_deny_audit_test.cpp.o
[361/1106] Linking CXX executable t81_vm_fault_test
[362/1106] Linking CXX executable t81_vm_ai_predispatch_deny_audit_test
[363/1106] Building CXX object CMakeFiles/t81_vm_tensor_get_set_conformance_test.dir/tests/cpp/vm_tensor_get_set_conformance_test.cpp.o
[364/1106] Building CXX object CMakeFiles/t81_test_axion_m6_canonical_reason.dir/tests/cpp/test_axion_m6_canonical_reason.cpp.o
[365/1106] Linking CXX executable t81_vm_tensor_get_set_conformance_test
[366/1106] Linking CXX executable t81_test_axion_m6_canonical_reason
[367/1106] Building CXX object CMakeFiles/t81_vm_deterministic_fault_test.dir/tests/cpp/test_vm_deterministic_fault.cpp.o
[368/1106] Linking CXX executable t81_vm_deterministic_fault_test
[369/1106] Building CXX object CMakeFiles/t81_vm_new_opcodes_test.dir/tests/cpp/vm_new_opcodes_test.cpp.o
[370/1106] Linking CXX executable t81_vm_new_opcodes_test
[371/1106] Building CXX object CMakeFiles/t81_test_axion_opcodes.dir/tests/cpp/test_axion_opcodes.cpp.o
[372/1106] Building CXX object CMakeFiles/t81_vm_fault_family_determinism_matrix_test.dir/tests/cpp/vm_fault_family_determinism_matrix_test.cpp.o
[373/1106] Building CXX object CMakeFiles/t81_vm_neural_opcodes_test.dir/tests/cpp/test_vm_neural_opcodes.cpp.o
[374/1106] Linking CXX executable t81_test_axion_opcodes
[375/1106] Linking CXX executable t81_vm_neural_opcodes_test
[376/1106] Building CXX object CMakeFiles/test_bitwise.dir/tests/cpp/test_bitwise.cpp.o
[377/1106] Linking CXX executable t81_vm_fault_family_determinism_matrix_test
[378/1106] Linking CXX executable test_bitwise
[379/1106] Building CXX object CMakeFiles/t81_vm_memory_test.dir/tests/cpp/vm_memory_test.cpp.o
[380/1106] Building CXX object CMakeFiles/t81_vm_resource_monitoring_test.dir/tests/cpp/test_resource_monitoring.cpp.o
[381/1106] Building CXX object CMakeFiles/t81_axion_log_determinism_test.dir/tests/cpp/axion_log_determinism_test.cpp.o
[382/1106] Linking CXX executable t81_vm_resource_monitoring_test
[383/1106] Linking CXX executable t81_vm_memory_test
[384/1106] Building CXX object CMakeFiles/t81_reflection_non_interference_test.dir/tests/cpp/reflection_non_interference_test.cpp.o
[385/1106] Linking CXX executable t81_axion_log_determinism_test
[386/1106] Building CXX object CMakeFiles/t81_weights_load_test.dir/tests/cpp/weights_load_test.cpp.o
[387/1106] Linking CXX executable t81_reflection_non_interference_test
[388/1106] Linking CXX executable t81_weights_load_test
[389/1106] Building CXX object CMakeFiles/t81_hash_stub_test.dir/tests/cpp/hash_stub_test.cpp.o
[390/1106] Linking CXX executable t81_hash_stub_test
[391/1106] Building CXX object CMakeFiles/t81_sha3_test.dir/tests/cpp/test_sha3.cpp.o
[392/1106] Linking CXX executable t81_sha3_test
[393/1106] Building CXX object CMakeFiles/t81_native_weights_metrics_test.dir/tests/cpp/native_weights_metrics_test.cpp.o
[394/1106] Building CXX object CMakeFiles/t81_vm_decoder_test.dir/tests/cpp/vm_decoder_test.cpp.o
[395/1106] Linking CXX executable t81_native_weights_metrics_test
[396/1106] Building CXX object CMakeFiles/t81_safetensors_import_test.dir/tests/cpp/safetensors_import_test.cpp.o
[397/1106] Linking CXX executable t81_safetensors_import_test
[398/1106] Building CXX object CMakeFiles/t81_codec_base81_test.dir/tests/cpp/codec_base81_test.cpp.o
[399/1106] Linking CXX executable t81_codec_base81_test
[400/1106] Building CXX object CMakeFiles/t81_check_tier_test.dir/tests/cpp/test_check_tier.cpp.o
[401/1106] Linking CXX executable t81_vm_decoder_test
[402/1106] Linking CXX executable t81_check_tier_test
[403/1106] Building CXX object CMakeFiles/t81_codec_base243_test.dir/tests/cpp/codec_base243_test.cpp.o
[404/1106] Linking CXX executable t81_codec_base243_test
[405/1106] Building CXX object CMakeFiles/t81_axion_stub_test.dir/tests/cpp/axion_stub_test.cpp.o
[406/1106] Linking CXX executable t81_axion_stub_test
[407/1106] Building CXX object CMakeFiles/t81_trit_packing_test.dir/tests/cpp/trit_packing_test.cpp.o
[408/1106] Linking CXX executable t81_trit_packing_test
[409/1106] Building CXX object CMakeFiles/t81_arithmetic_backend_equivalence_test.dir/tests/cpp/test_arithmetic_backend_equivalence.cpp.o
[410/1106] Building CXX object CMakeFiles/t81_phase2c_truth_table_test.dir/tests/cpp/test_phase2c_truth_table.cpp.o
[411/1106] Linking CXX executable t81_arithmetic_backend_equivalence_test
[412/1106] Linking CXX executable t81_phase2c_truth_table_test
[413/1106] Building CXX object CMakeFiles/t81_packed_trit_vector_test.dir/tests/cpp/test_packed_trit_vector.cpp.o
[414/1106] Linking CXX executable t81_packed_trit_vector_test
[415/1106] Building CXX object CMakeFiles/t81_simd_api_test.dir/tests/cpp/simd_api_test.cpp.o
[416/1106] Linking CXX executable t81_simd_api_test
[417/1106] Building CXX object CMakeFiles/t81_base81_simd_test.dir/tests/cpp/test_base81_simd.cpp.o
[418/1106] Linking CXX executable t81_base81_simd_test
[419/1106] Building CXX object CMakeFiles/t81_base81_packed_test.dir/tests/cpp/test_base81_packed.cpp.o
[420/1106] Linking CXX executable t81_base81_packed_test
[421/1106] Building CXX object CMakeFiles/t81_base81_balanced_test.dir/tests/cpp/test_base81_balanced.cpp.o
[422/1106] Building CXX object CMakeFiles/t81_tritwise_backend_equivalence_test.dir/tests/cpp/test_tritwise_backend_equivalence.cpp.o
[423/1106] Linking CXX executable t81_base81_balanced_test
[424/1106] Linking CXX executable t81_tritwise_backend_equivalence_test
[425/1106] Building CXX object CMakeFiles/t81_metadata_test.dir/tests/cpp/test_metadata.cpp.o
[426/1106] Linking CXX executable t81_metadata_test
[427/1106] Building CXX object CMakeFiles/t81_packed_trit_vector_stress_test.dir/tests/cpp/test_packed_trit_vector_stress.cpp.o
[428/1106] Linking CXX executable t81_packed_trit_vector_stress_test
[429/1106] Building CXX object CMakeFiles/setun_bridge_test.dir/tests/cpp/setun_bridge_test.cpp.o
[430/1106] Linking CXX executable setun_bridge_test
[431/1106] Building CXX object CMakeFiles/t81_isa_base81_view_test.dir/tests/cpp/test_tisc_base81_view.cpp.o
[432/1106] Linking CXX executable t81_isa_base81_view_test
[433/1106] Building CXX object CMakeFiles/tisc_opcode_matrix_test.dir/tests/cpp/tisc_opcode_matrix_test.cpp.o
[434/1106] Linking CXX executable tisc_opcode_matrix_test
[435/1106] Building CXX object CMakeFiles/t81lang_conformance_baseline_test.dir/tests/cpp/t81lang_conformance_baseline_test.cpp.o
[436/1106] Linking CXX executable t81lang_conformance_baseline_test
[437/1106] Building CXX object CMakeFiles/t81lang_surface_gate_test.dir/tests/cpp/t81lang_surface_gate_test.cpp.o
[438/1106] Linking CXX executable t81lang_surface_gate_test
[439/1106] Building CXX object CMakeFiles/t81lang_conformance_edge_semantics_test.dir/tests/cpp/t81lang_conformance_edge_semantics_test.cpp.o
[440/1106] Linking CXX executable t81lang_conformance_edge_semantics_test
[441/1106] Building CXX object CMakeFiles/tisc_base81.dir/tools/tisc_base81.cpp.o
[442/1106] Linking CXX executable tisc_base81
[443/1106] Building CXX object CMakeFiles/t81_ternary_arith_test.dir/tests/cpp/ternary_arith_test.cpp.o
[444/1106] Building CXX object CMakeFiles/t81_numeric_format_test.dir/tests/cpp/t81_numeric_format_test.cpp.o
[445/1106] Linking CXX executable t81_ternary_arith_test
[446/1106] Linking CXX executable t81_numeric_format_test
[447/1106] Building CXX object CMakeFiles/axion_recursion_guardrails_test.dir/tests/cpp/axion_recursion_guardrails_test.cpp.o
[448/1106] Building CXX object CMakeFiles/t81_tensor_shape_test.dir/tests/cpp/tensor_shape_test.cpp.o
[449/1106] Linking CXX executable t81_tensor_shape_test
[450/1106] Linking CXX executable axion_recursion_guardrails_test
[451/1106] Building CXX object CMakeFiles/t81_tensor_serialization_canonical_fixed_test.dir/tests/cpp/tensor_serialization_canonical_fixed_test.cpp.o
[452/1106] Linking CXX executable t81_tensor_serialization_canonical_fixed_test
[453/1106] Building CXX object CMakeFiles/t81_tensor_conv_test.dir/tests/cpp/test_T81Tensor_conv.cpp.o
[454/1106] Linking CXX executable t81_tensor_conv_test
[455/1106] Building CXX object CMakeFiles/t81_tensor_native_decode_test.dir/tests/cpp/tensor_native_decode_test.cpp.o
[456/1106] Linking CXX executable t81_tensor_native_decode_test
[457/1106] Building CXX object CMakeFiles/t81_tensor_reduce_test.dir/tests/cpp/tensor_reduce_test.cpp.o
[458/1106] Linking CXX executable t81_tensor_reduce_test
[459/1106] Building CXX object CMakeFiles/t81_tensor_broadcast_test.dir/tests/cpp/tensor_broadcast_test.cpp.o
[460/1106] Linking CXX executable t81_tensor_broadcast_test
[461/1106] Building CXX object CMakeFiles/t81_ethics_test.dir/tests/cpp/test_ethics.cpp.o
[462/1106] Linking CXX executable t81_ethics_test
[463/1106] Building CXX object CMakeFiles/t81_entropy_test.dir/tests/cpp/entropy_test.cpp.o
[464/1106] Linking CXX executable t81_entropy_test
[465/1106] Building CXX object CMakeFiles/t81_tensor_matmul_test.dir/tests/cpp/tensor_matmul_test.cpp.o
[466/1106] Linking CXX executable t81_tensor_matmul_test
[467/1106] Building CXX object CMakeFiles/t81_ethics_invariants_test.dir/tests/cpp/test_ethics_invariants.cpp.o
[468/1106] Linking CXX executable t81_ethics_invariants_test
[469/1106] Building CXX object CMakeFiles/t81_expected_test.dir/tests/cpp/expected_test.cpp.o
[470/1106] Linking CXX executable t81_expected_test
[471/1106] Building CXX object CMakeFiles/t81_tensor_nn_test.dir/tests/cpp/test_T81Tensor_nn.cpp.o
[472/1106] Linking CXX executable t81_tensor_nn_test
[473/1106] Building CXX object CMakeFiles/test_tier3_opcodes.dir/tests/cpp/test_tier3_opcodes.cpp.o
[474/1106] Building CXX object CMakeFiles/test_resource_monitoring.dir/tests/cpp/test_resource_monitoring.cpp.o
[475/1106] Linking CXX executable test_resource_monitoring
[476/1106] Linking CXX executable test_tier3_opcodes
[477/1106] Building CXX object CMakeFiles/t81_tensor_ternary_test.dir/tests/cpp/tensor_ternary_test.cpp.o
[478/1106] Linking CXX executable t81_tensor_ternary_test
[479/1106] Building CXX object CMakeFiles/t81_t729_tensor_test.dir/tests/cpp/test_t729_tensor.cpp.o
[480/1106] Linking CXX executable t81_t729_tensor_test
[481/1106] Building CXX object CMakeFiles/t81_tensor_elementwise_test.dir/tests/cpp/tensor_elementwise_test.cpp.o
[482/1106] Linking CXX executable t81_tensor_elementwise_test
[483/1106] Building C object CMakeFiles/t81_c_api_bigint_test.dir/tests/cpp/c_api_bigint_test.c.o
[484/1106] Linking CXX executable t81_c_api_bigint_test
[485/1106] Building CXX object CMakeFiles/t81_semantic_graph_test.dir/tests/cpp/test_semantic_graph.cpp.o
[486/1106] Building CXX object CMakeFiles/t81_symbolic_algebra_test.dir/tests/cpp/test_symbolic_algebra.cpp.o
[487/1106] Linking CXX executable t81_semantic_graph_test
[488/1106] Linking CXX executable t81_symbolic_algebra_test
[489/1106] Building CXX object CMakeFiles/t81_neural_primitives_test.dir/tests/cpp/test_neural_primitives.cpp.o
[490/1106] Linking CXX executable t81_neural_primitives_test
[491/1106] Building CXX object CMakeFiles/t81_frontend_neural_test.dir/tests/cpp/test_frontend_neural.cpp.o
[492/1106] Building CXX object CMakeFiles/t81_hanoi_integration_test.dir/tests/cpp/hanoi_integration_test.cpp.o
[493/1106] Linking CXX executable t81_hanoi_integration_test
[494/1106] Linking CXX executable t81_frontend_neural_test
[495/1106] Building CXX object CMakeFiles/t81_hanoi_command_surface_test.dir/tests/cpp/hanoi_command_surface_test.cpp.o
[496/1106] Linking CXX executable t81_hanoi_command_surface_test
[497/1106] Building CXX object CMakeFiles/t81_vm_illegal_test.dir/tests/cpp/vm_illegal_test.cpp.o
[498/1106] Building CXX object CMakeFiles/t81_tensor_unary_test.dir/tests/cpp/tensor_unary_test.cpp.o
[499/1106] Building CXX object CMakeFiles/t81_vm_load_store_test.dir/tests/cpp/vm_load_store_test.cpp.o
[500/1106] Linking CXX executable t81_tensor_unary_test
[501/1106] Linking CXX executable t81_vm_illegal_test
[502/1106] Linking CXX executable t81_vm_load_store_test
[503/1106] Building CXX object CMakeFiles/t81_vm_bounds_test.dir/tests/cpp/vm_bounds_test.cpp.o
[504/1106] Building CXX object CMakeFiles/t81_canonfs_driver_test.dir/tests/cpp/canonfs_driver_test.cpp.o
[505/1106] Linking CXX executable t81_canonfs_driver_test
[506/1106] Building CXX object CMakeFiles/vm_bounds_trace_test.dir/tests/cpp/vm_bounds_trace_test.cpp.o
[507/1106] Linking CXX executable t81_vm_bounds_test
[508/1106] Linking CXX executable vm_bounds_trace_test
[509/1106] Building CXX object CMakeFiles/t81_canonhash81_reference_vectors_test.dir/tests/cpp/canonhash81_reference_vectors_test.cpp.o
[510/1106] Linking CXX executable t81_canonhash81_reference_vectors_test
[511/1106] Building CXX object CMakeFiles/canonfs_interchange_test.dir/tests/cpp/canonfs_interchange_test.cpp.o
[512/1106] Linking CXX executable canonfs_interchange_test
[513/1106] Building CXX object CMakeFiles/t81_canonfs_rs_repair_test.dir/tests/cpp/canonfs_rs_repair_test.cpp.o
[514/1106] Linking CXX executable t81_canonfs_rs_repair_test
[515/1106] Building CXX object CMakeFiles/t81_vm_trace_test.dir/tests/cpp/vm_trace_test.cpp.o
[516/1106] Linking CXX executable t81_vm_trace_test
[517/1106] Building CXX object CMakeFiles/t81_vm_state_transition_invariants_test.dir/tests/cpp/vm_state_transition_invariants_test.cpp.o
[518/1106] Linking CXX executable t81_vm_state_transition_invariants_test
[519/1106] Building CXX object CMakeFiles/t81_vm_workload_determinism_tiers_test.dir/tests/cpp/vm_workload_determinism_tiers_test.cpp.o
[520/1106] Linking CXX executable t81_vm_workload_determinism_tiers_test
[521/1106] Building CXX object CMakeFiles/t81_vm_determinism_property_test.dir/tests/cpp/vm_determinism_property_test.cpp.o
[522/1106] Linking CXX executable t81_vm_determinism_property_test
[523/1106] Building CXX object CMakeFiles/t81_vm_mixed_workload_conformance_matrix_test.dir/tests/cpp/vm_mixed_workload_conformance_matrix_test.cpp.o
[524/1106] Linking CXX executable t81_vm_mixed_workload_conformance_matrix_test
[525/1106] Building CXX object CMakeFiles/t81_vm_state_transition_conformance_matrix_test.dir/tests/cpp/vm_state_transition_conformance_matrix_test.cpp.o
[526/1106] Linking CXX executable t81_vm_state_transition_conformance_matrix_test
[527/1106] Building CXX object CMakeFiles/t81_vm_policy_parse_fail_closed_test.dir/tests/cpp/vm_policy_parse_fail_closed_test.cpp.o
[528/1106] Linking CXX executable t81_vm_policy_parse_fail_closed_test
[529/1106] Building CXX object CMakeFiles/t81_vm_axreport_policy_deny_fail_closed_test.dir/tests/cpp/vm_axreport_policy_deny_fail_closed_test.cpp.o
[530/1106] Linking CXX executable t81_vm_axreport_policy_deny_fail_closed_test
[531/1106] Building CXX object CMakeFiles/t81_vm_stubbed_opcode_fail_closed_test.dir/tests/cpp/vm_stubbed_opcode_fail_closed_test.cpp.o
[532/1106] Building CXX object CMakeFiles/t81_vm_system_registers_deterministic_test.dir/tests/cpp/vm_system_registers_deterministic_test.cpp.o
[533/1106] Linking CXX executable t81_vm_stubbed_opcode_fail_closed_test
[534/1106] Linking CXX executable t81_vm_system_registers_deterministic_test
[535/1106] Building CXX object CMakeFiles/vm_extended_ops_test.dir/tests/cpp/vm_extended_ops_test.cpp.o
[536/1106] Linking CXX executable vm_extended_ops_test
[537/1106] Building CXX object CMakeFiles/t81_vm_jump_flags_test.dir/tests/cpp/vm_jump_flags_test.cpp.o
[538/1106] Linking CXX executable t81_vm_jump_flags_test
[539/1106] Building CXX object CMakeFiles/t81_vm_neg_jumps_test.dir/tests/cpp/vm_neg_jumps_test.cpp.o
[540/1106] Building CXX object CMakeFiles/llama_kernels_test.dir/tests/cpp/llama_kernels_test.cpp.o
[541/1106] Linking CXX executable llama_kernels_test
[542/1106] Building CXX object CMakeFiles/t81_frontend_lexer_test.dir/tests/cpp/frontend_lexer_test.cpp.o
[543/1106] Linking CXX executable t81_frontend_lexer_test
[544/1106] Linking CXX executable t81_vm_neg_jumps_test
[545/1106] Building CXX object CMakeFiles/t81_vm_float_fraction_ops_test.dir/tests/cpp/vm_float_fraction_ops_test.cpp.o
[546/1106] Building CXX object CMakeFiles/t81_parser_regression_audit_test.dir/tests/cpp/test_parser_regression_audit.cpp.o
[547/1106] Linking CXX executable t81_parser_regression_audit_test
[548/1106] Linking CXX executable t81_vm_float_fraction_ops_test
[549/1106] Building CXX object CMakeFiles/t81_vm_literal_pool_extension_test.dir/tests/cpp/test_vm_literal_pool_extension.cpp.o
[550/1106] Linking CXX executable t81_vm_literal_pool_extension_test
[551/1106] Building CXX object CMakeFiles/t81_spec_compliance_test.dir/tests/cpp/spec_compliance_test.cpp.o
[552/1106] Linking CXX executable t81_spec_compliance_test
[553/1106] Building CXX object CMakeFiles/t81_vm_print_test.dir/tests/cpp/vm_print_test.cpp.o
[554/1106] Building CXX object CMakeFiles/t81_frontend_parser_test.dir/tests/cpp/frontend_parser_test.cpp.o
[555/1106] Linking CXX executable t81_frontend_parser_test
[556/1106] Linking CXX executable t81_vm_print_test
[557/1106] Building CXX object CMakeFiles/t81_frontend_parser_appendix_coverage_test.dir/tests/cpp/frontend_parser_appendix_coverage_test.cpp.o
[558/1106] Linking CXX executable t81_frontend_parser_appendix_coverage_test
[559/1106] Building CXX object CMakeFiles/t81_frontend_parser_recovery_test.dir/tests/cpp/frontend_parser_recovery_test.cpp.o
[560/1106] Linking CXX executable t81_frontend_parser_recovery_test
[561/1106] Building CXX object CMakeFiles/tisc_semantic_equivalence_test.dir/tests/cpp/tisc_semantic_equivalence_test.cpp.o
[562/1106] Linking CXX executable tisc_semantic_equivalence_test
[563/1106] Building CXX object CMakeFiles/t81_frontend_parser_legacy_rejection_test.dir/tests/cpp/frontend_parser_legacy_rejection_test.cpp.o
[564/1106] Linking CXX executable t81_frontend_parser_legacy_rejection_test
[565/1106] Building CXX object CMakeFiles/t81_frontend_parser_generics_test.dir/tests/cpp/frontend_parser_generics_test.cpp.o
[566/1106] Linking CXX executable t81_frontend_parser_generics_test
[567/1106] Building CXX object CMakeFiles/t81_frontend_expression_features_test.dir/tests/cpp/frontend_expression_features_test.cpp.o
[568/1106] Linking CXX executable t81_frontend_expression_features_test
[569/1106] Building CXX object CMakeFiles/t81_frontend_logical_lowering_test.dir/tests/cpp/test_frontend_logical_lowering.cpp.o
[570/1106] Linking CXX executable t81_frontend_logical_lowering_test
[571/1106] Building CXX object CMakeFiles/tisc_opcode_family_semantics_test.dir/tests/cpp/tisc_opcode_family_semantics_test.cpp.o
[572/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_option_result_test.dir/tests/cpp/semantic_analyzer_option_result_test.cpp.o
[573/1106] Linking CXX executable t81_semantic_analyzer_option_result_test
[574/1106] Linking CXX executable tisc_opcode_family_semantics_test
[575/1106] Building CXX object CMakeFiles/t81_ir_snapshot_audit_test.dir/tests/cpp/test_ir_snapshot_audit.cpp.o
[576/1106] Linking CXX executable t81_ir_snapshot_audit_test
[577/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_match_test.dir/tests/cpp/semantic_analyzer_match_test.cpp.o
[578/1106] Building CXX object CMakeFiles/t81_frontend_ir_generator_test.dir/tests/cpp/frontend_ir_generator_test.cpp.o
[579/1106] Linking CXX executable t81_semantic_analyzer_match_test
[580/1106] Linking CXX executable t81_frontend_ir_generator_test
[581/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_indexing_test.dir/tests/cpp/semantic_analyzer_indexing_test.cpp.o
[582/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_generic_test.dir/tests/cpp/semantic_analyzer_generic_test.cpp.o
[583/1106] Building CXX object CMakeFiles/test_std_option_result.dir/tests/cpp/test_std_option_result.cpp.o
[584/1106] Linking CXX executable t81_semantic_analyzer_indexing_test
[585/1106] Linking CXX executable t81_semantic_analyzer_generic_test
[586/1106] Linking CXX executable test_std_option_result
[587/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_vector_literal_test.dir/tests/cpp/semantic_analyzer_vector_literal_test.cpp.o
[588/1106] Linking CXX executable t81_semantic_analyzer_vector_literal_test
[589/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_record_enum_test.dir/tests/cpp/semantic_analyzer_record_enum_test.cpp.o
[590/1106] Linking CXX executable t81_semantic_analyzer_record_enum_test
[591/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_stage3_rules_test.dir/tests/cpp/semantic_analyzer_stage3_rules_test.cpp.o
[592/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_numeric_test.dir/tests/cpp/semantic_analyzer_numeric_test.cpp.o
[593/1106] Linking CXX executable t81_semantic_analyzer_stage3_rules_test
[594/1106] Linking CXX executable t81_semantic_analyzer_numeric_test
[595/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_equality_test.dir/tests/cpp/semantic_analyzer_equality_test.cpp.o
[596/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_diagnostic_location_test.dir/tests/cpp/semantic_analyzer_diagnostic_location_test.cpp.o
[597/1106] Linking CXX executable t81_semantic_analyzer_equality_test
[598/1106] Linking CXX executable t81_semantic_analyzer_diagnostic_location_test
[599/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_cascade_suppression_test.dir/tests/cpp/semantic_analyzer_cascade_suppression_test.cpp.o
[600/1106] Linking CXX executable t81_semantic_analyzer_cascade_suppression_test
[601/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_diagnostic_precision_test.dir/tests/cpp/semantic_analyzer_diagnostic_precision_test.cpp.o
[602/1106] Linking CXX executable t81_semantic_analyzer_diagnostic_precision_test
[603/1106] Building CXX object CMakeFiles/t81_isa_binary_emitter_test.dir/tests/cpp/tisc_binary_emitter_test.cpp.o
[604/1106] Linking CXX executable t81_isa_binary_emitter_test
[605/1106] Building CXX object CMakeFiles/t81_isa_type_alias_io_test.dir/tests/cpp/tisc_type_alias_io_test.cpp.o
[606/1106] Linking CXX executable t81_isa_type_alias_io_test
[607/1106] Building CXX object CMakeFiles/t81_semantic_analyzer_loop_test.dir/tests/cpp/semantic_analyzer_loop_test.cpp.o
[608/1106] Linking CXX executable t81_semantic_analyzer_loop_test
[609/1106] Building CXX object CMakeFiles/t81_isa_binary_io_determinism_test.dir/tests/cpp/tisc_binary_io_determinism_test.cpp.o
[610/1106] Linking CXX executable t81_isa_binary_io_determinism_test
[611/1106] Building CXX object CMakeFiles/ir_inspector.dir/tools/ir_inspector.cpp.o
[612/1106] Linking CXX executable ir_inspector
[613/1106] Building CXX object CMakeFiles/e2e_let_statement_test.dir/tests/cpp/e2e_let_statement_test.cpp.o
[614/1106] Building CXX object CMakeFiles/t81_isa_binary_metadata_roundtrip_property_test.dir/tests/cpp/tisc_binary_metadata_roundtrip_property_test.cpp.o
[615/1106] Linking CXX executable t81_isa_binary_metadata_roundtrip_property_test
[616/1106] Building CXX object CMakeFiles/e2e_arithmetic_test.dir/tests/cpp/e2e_arithmetic_test.cpp.o
[617/1106] Linking CXX executable e2e_let_statement_test
[618/1106] Linking CXX executable e2e_arithmetic_test
[619/1106] Building CXX object CMakeFiles/e2e_if_statement_test.dir/tests/cpp/e2e_if_statement_test.cpp.o
[620/1106] Linking CXX executable e2e_if_statement_test
[621/1106] Building CXX object CMakeFiles/t81_cli_check_test.dir/tests/cpp/cli_check_test.cpp.o
[622/1106] Building CXX object CMakeFiles/security_package_init_test.dir/tests/cpp/security_package_init_test.cpp.o
[623/1106] Linking CXX executable t81_cli_check_test
[624/1106] Linking CXX executable security_package_init_test
[625/1106] Building CXX object CMakeFiles/e2e_option_type_test.dir/tests/cpp/e2e_option_type_test.cpp.o
[626/1106] Building CXX object CMakeFiles/e2e_option_result_test.dir/tests/cpp/e2e_option_result_test.cpp.o
[627/1106] Linking CXX executable e2e_option_result_test
[628/1106] Linking CXX executable e2e_option_type_test
[629/1106] Building CXX object CMakeFiles/e2e_option_result_function_test.dir/tests/cpp/e2e_option_result_function_test.cpp.o
[630/1106] Building CXX object CMakeFiles/t81_cli_pipeline_test.dir/tests/cpp/cli_pipeline_test.cpp.o
[631/1106] Linking CXX executable e2e_option_result_function_test
[632/1106] Building CXX object CMakeFiles/t81_cli_disasm_test.dir/tests/cpp/cli_disasm_test.cpp.o
[633/1106] Linking CXX executable t81_cli_pipeline_test
[634/1106] Linking CXX executable t81_cli_disasm_test
[635/1106] Building CXX object CMakeFiles/t81_cli_option_result_test.dir/tests/cpp/cli_option_result_test.cpp.o
[636/1106] Linking CXX executable t81_cli_option_result_test
[637/1106] Building CXX object CMakeFiles/t81_cli_debugger_test.dir/tests/cpp/cli_debugger_test.cpp.o
[638/1106] Building CXX object CMakeFiles/t81_cli_diagnostic_context_test.dir/tests/cpp/cli_diagnostic_context_test.cpp.o
[639/1106] Linking CXX executable t81_cli_debugger_test
[640/1106] Linking CXX executable t81_cli_diagnostic_context_test
[641/1106] Building CXX object CMakeFiles/t81_cli_trace_export_test.dir/tests/cpp/cli_trace_export_test.cpp.o
[642/1106] Linking CXX executable t81_cli_trace_export_test
[643/1106] Building CXX object CMakeFiles/t81_cli_model_resolution_test.dir/tests/cpp/cli_model_resolution_test.cpp.o
[644/1106] Linking CXX executable t81_cli_model_resolution_test
[645/1106] Building CXX object CMakeFiles/t81_cli_structural_types_test.dir/tests/cpp/cli_structural_types_test.cpp.o
[646/1106] Linking CXX executable t81_cli_structural_types_test
[647/1106] Building CXX object CMakeFiles/t81_cli_repl_test.dir/tests/cpp/cli_repl_test.cpp.o
[648/1106] Building CXX object CMakeFiles/cli_repro_hash_test.dir/tests/cpp/cli_repro_hash_test.cpp.o
[649/1106] Linking CXX executable cli_repro_hash_test
[650/1106] Building CXX object CMakeFiles/t81_cli_stress_test.dir/tests/cpp/cli_stress_test.cpp.o
[651/1106] Linking CXX executable t81_cli_repl_test
[652/1106] Linking CXX executable t81_cli_stress_test
[653/1106] Building CXX object CMakeFiles/cli_canonize_tensor_test.dir/tests/cpp/cli_canonize_tensor_test.cpp.o
[654/1106] Linking CXX executable cli_canonize_tensor_test
[655/1106] Building CXX object CMakeFiles/t81_cli_record_enum_test.dir/tests/cpp/cli_record_enum_test.cpp.o
[656/1106] Linking CXX executable t81_cli_record_enum_test
[657/1106] Building CXX object CMakeFiles/t81_tier4_test.dir/tests/cpp/tier4_test.cpp.o
[658/1106] Linking CXX executable t81_tier4_test
[659/1106] Building CXX object CMakeFiles/cli_std_collections_determinism_test.dir/tests/cpp/cli_std_collections_determinism_test.cpp.o
[660/1106] Linking CXX executable cli_std_collections_determinism_test
[661/1106] Building CXX object CMakeFiles/cli_stdlib_fixtures_test.dir/tests/cpp/cli_stdlib_fixtures_test.cpp.o
[662/1106] Building CXX object CMakeFiles/t81_tier5_test.dir/tests/cpp/tier5_test.cpp.o
[663/1106] Linking CXX executable t81_tier5_test
[664/1106] Linking CXX executable cli_stdlib_fixtures_test
[665/1106] Building CXX object CMakeFiles/t81_infinite_opcodes_test.dir/tests/cpp/test_infinite_opcodes.cpp.o
[666/1106] Linking CXX executable t81_infinite_opcodes_test
[667/1106] Building CXX object CMakeFiles/t81_tier4_distributed_test.dir/tests/cpp/test_tier4_distributed.cpp.o
[668/1106] Building CXX object CMakeFiles/reflective_evidence_replay_test.dir/tests/cpp/reflective_evidence_replay_test.cpp.o
[669/1106] Linking CXX executable reflective_evidence_replay_test
[670/1106] Linking CXX executable t81_tier4_distributed_test
[671/1106] Building CXX object CMakeFiles/tiers_structure_test.dir/tests/cpp/tiers_structure_test.cpp.o
[672/1106] Linking CXX executable tiers_structure_test
[673/1106] Building CXX object CMakeFiles/vm_reflection_tier2_test.dir/tests/cpp/vm_reflection_tier2_test.cpp.o
[674/1106] Linking CXX executable vm_reflection_tier2_test
[675/1106] Building CXX object CMakeFiles/t81_jit_test.dir/tests/cpp/jit_test.cpp.o
[676/1106] Building CXX object CMakeFiles/t81_cli_contract_test.dir/tests/cpp/cli_contract_test.cpp.o
[677/1106] Linking CXX executable t81_cli_contract_test
[678/1106] Linking CXX executable t81_jit_test
[679/1106] Building CXX object CMakeFiles/jit_trace_equivalence_test.dir/tests/cpp/jit_trace_equivalence_test.cpp.o
[680/1106] Building CXX object CMakeFiles/jit_repro_oracle_test.dir/tests/cpp/jit_repro_oracle_test.cpp.o
[681/1106] Building CXX object CMakeFiles/t81_tier4_vm_test.dir/tests/cpp/tier4_vm_test.cpp.o
[682/1106] Linking CXX executable jit_repro_oracle_test
[683/1106] Linking CXX executable t81_tier4_vm_test
[684/1106] Linking CXX executable jit_trace_equivalence_test
[685/1106] Building CXX object CMakeFiles/ffi_bridge_testlib.dir/tests/cpp/ffi_bridge_testlib.cpp.o
[686/1106] Linking CXX shared library libffi_bridge_testlib.so
[687/1106] Building CXX object CMakeFiles/vm_gc_safepoint_test.dir/tests/cpp/vm_gc_safepoint_test.cpp.o
[688/1106] Linking CXX executable vm_gc_safepoint_test
[689/1106] Building CXX object CMakeFiles/agent_constructs_test.dir/tests/cpp/agent_constructs_test.cpp.o
[690/1106] Linking CXX executable agent_constructs_test
[691/1106] Building CXX object CMakeFiles/t81lang_foreign_ffi_test.dir/tests/cpp/t81lang_foreign_ffi_test.cpp.o
[692/1106] Linking CXX executable t81lang_foreign_ffi_test
[693/1106] Building CXX object CMakeFiles/jit_canonfs_cache_test.dir/tests/cpp/jit_canonfs_cache_test.cpp.o
[694/1106] Linking CXX executable jit_canonfs_cache_test
[695/1106] Building CXX object CMakeFiles/axion_agent_invoke_policy_test.dir/tests/cpp/axion_agent_invoke_policy_test.cpp.o
[696/1106] Building CXX object CMakeFiles/vm_ffi_bridge_test.dir/tests/cpp/vm_ffi_bridge_test.cpp.o
[697/1106] Linking CXX executable vm_ffi_bridge_test
[698/1106] Linking CXX executable axion_agent_invoke_policy_test
[699/1106] Building CXX object CMakeFiles/tnn_stdlib_test.dir/tests/cpp/tnn_stdlib_test.cpp.o
[700/1106] Linking CXX executable tnn_stdlib_test
[701/1106] Building CXX object CMakeFiles/vm_jit_per_instruction_policy_test.dir/tests/cpp/vm_jit_per_instruction_policy_test.cpp.o
[702/1106] Linking CXX executable vm_jit_per_instruction_policy_test
[703/1106] Building CXX object CMakeFiles/lattice_crypto_test.dir/tests/cpp/lattice_crypto_test.cpp.o
[704/1106] Linking CXX executable lattice_crypto_test
[705/1106] Building CXX object CMakeFiles/jit_tensor_trace_equivalence_test.dir/tests/cpp/jit_tensor_trace_equivalence_test.cpp.o
[706/1106] Linking CXX executable jit_tensor_trace_equivalence_test
[707/1106] Building CXX object CMakeFiles/ntru_kem_test.dir/tests/cpp/ntru_kem_test.cpp.o
[708/1106] Building CXX object CMakeFiles/axion_match_metadata_test.dir/tests/cpp/axion_match_metadata_test.cpp.o
[709/1106] Linking CXX executable ntru_kem_test
[710/1106] Linking CXX executable axion_match_metadata_test
[711/1106] Building CXX object CMakeFiles/axion_loop_metadata_test.dir/tests/cpp/axion_loop_metadata_test.cpp.o
[712/1106] Building CXX object CMakeFiles/axion_enum_guard_test.dir/tests/cpp/axion_enum_guard_test.cpp.o
[713/1106] Linking CXX executable axion_loop_metadata_test
[714/1106] Linking CXX executable axion_enum_guard_test
[715/1106] Building CXX object CMakeFiles/axion_policy_match_guard_test.dir/tests/cpp/axion_policy_match_guard_test.cpp.o
[716/1106] Building CXX object CMakeFiles/axion_policy_bytecode_test.dir/tests/cpp/axion_policy_bytecode_test.cpp.o
[717/1106] Linking CXX executable axion_policy_bytecode_test
[718/1106] Building CXX object CMakeFiles/axion_hybrid_mlp_policy_test.dir/tests/cpp/axion_hybrid_mlp_policy_test.cpp.o
[719/1106] Building CXX object CMakeFiles/axion_policy_gc_trace_test.dir/tests/cpp/axion_policy_gc_trace_test.cpp.o
[720/1106] Linking CXX executable axion_hybrid_mlp_policy_test
[721/1106] Linking CXX executable axion_policy_match_guard_test
[722/1106] Linking CXX executable axion_policy_gc_trace_test
[723/1106] Building CXX object CMakeFiles/axion_ai_hooks_test.dir/tests/cpp/axion_ai_hooks_test.cpp.o
[724/1106] Building CXX object CMakeFiles/axion_policy_segment_event_test.dir/tests/cpp/axion_policy_segment_event_test.cpp.o
[725/1106] Linking CXX executable axion_ai_hooks_test
[726/1106] Building CXX object CMakeFiles/axion_policy_invariants_test.dir/tests/cpp/axion_policy_invariants_test.cpp.o
[727/1106] Linking CXX executable axion_policy_segment_event_test
[728/1106] Linking CXX executable axion_policy_invariants_test
[729/1106] Building CXX object CMakeFiles/backend_adapter_test.dir/tests/cpp/backend_adapter_test.cpp.o
[730/1106] Linking CXX executable backend_adapter_test
[731/1106] Building CXX object CMakeFiles/t81_determinism_evidence_test.dir/tests/determinism/evidence_collector.cpp.o
[732/1106] Linking CXX executable t81_determinism_evidence_test
[733/1106] Building CXX object CMakeFiles/axion_policy_allow_deny_determinism_test.dir/tests/cpp/axion_policy_allow_deny_determinism_test.cpp.o
[734/1106] Linking CXX executable axion_policy_allow_deny_determinism_test
[735/1106] Building CXX object CMakeFiles/axion_instruction_counter_test.dir/tests/cpp/axion_instruction_counter_test.cpp.o
[736/1106] Building CXX object CMakeFiles/axion_policy_conformance_matrix_test.dir/tests/cpp/axion_policy_conformance_matrix_test.cpp.o
[737/1106] Linking CXX executable axion_instruction_counter_test
[738/1106] Linking CXX executable axion_policy_conformance_matrix_test
[739/1106] Building CXX object CMakeFiles/e2e_match_expression_test.dir/tests/cpp/e2e_match_expression_test.cpp.o
[740/1106] Building CXX object CMakeFiles/e2e_loop_statement_test.dir/tests/cpp/e2e_loop_statement_test.cpp.o
[741/1106] Linking CXX executable e2e_match_expression_test
[742/1106] Linking CXX executable e2e_loop_statement_test
[743/1106] Building CXX object CMakeFiles/e2e_print_runtime_test.dir/tests/cpp/e2e_print_runtime_test.cpp.o
[744/1106] Building CXX object CMakeFiles/e2e_advanced_features_test.dir/tests/cpp/e2e_advanced_features_test.cpp.o
[745/1106] Linking CXX executable e2e_print_runtime_test
[746/1106] Building CXX object CMakeFiles/e2e_match_metadata_determinism_test.dir/tests/cpp/e2e_match_metadata_determinism_test.cpp.o
[747/1106] Building CXX object CMakeFiles/e2e_compile_determinism_test.dir/tests/cpp/e2e_compile_determinism_test.cpp.o
[748/1106] Building CXX object CMakeFiles/e2e_enum_metadata_determinism_test.dir/tests/cpp/e2e_enum_metadata_determinism_test.cpp.o
[749/1106] Linking CXX executable e2e_advanced_features_test
[750/1106] Linking CXX executable e2e_match_metadata_determinism_test
[751/1106] Linking CXX executable e2e_compile_determinism_test
[752/1106] Linking CXX executable e2e_enum_metadata_determinism_test
[753/1106] Building CXX object CMakeFiles/cli_e2e_test.dir/tests/cpp/cli_e2e_test.cpp.o
[754/1106] Building CXX object CMakeFiles/fuzz_parser.dir/tests/fuzz/fuzz_parser.cpp.o
[755/1106] Linking CXX executable fuzz_parser
[756/1106] Linking CXX executable cli_e2e_test
[757/1106] Building CXX object CMakeFiles/t81_t81int_test.dir/tests/cpp/test_t81int.cpp.o
[758/1106] Building CXX object CMakeFiles/t81_t81int_generic_div_test.dir/tests/cpp/test_t81int_generic_div.cpp.o
[759/1106] Linking CXX executable t81_t81int_test
[760/1106] Building CXX object CMakeFiles/t81_t81int_overflow_test.dir/tests/cpp/test_t81int_overflow.cpp.o
[761/1106] Linking CXX executable t81_t81int_generic_div_test
[762/1106] Linking CXX executable t81_t81int_overflow_test
[763/1106] Building CXX object CMakeFiles/fuzz_vm.dir/tests/fuzz/fuzz_vm.cpp.o
[764/1106] Linking CXX executable fuzz_vm
[765/1106] Building CXX object CMakeFiles/e2e_ast_ir_canonical_determinism_test.dir/tests/cpp/e2e_ast_ir_canonical_determinism_test.cpp.o
[766/1106] Linking CXX executable e2e_ast_ir_canonical_determinism_test
[767/1106] Building CXX object CMakeFiles/t81_division_test.dir/tests/cpp/test_division.cpp.o
[768/1106] Linking CXX executable t81_division_test
[769/1106] Building CXX object CMakeFiles/t81_frontend_fuzz_test.dir/tests/cpp/frontend_fuzz_test.cpp.o
[770/1106] Linking CXX executable t81_frontend_fuzz_test
[771/1106] Building CXX object CMakeFiles/t81_int_sign_trit_test.dir/tests/cpp/test_t81int_sign_trit.cpp.o
[772/1106] Linking CXX executable t81_int_sign_trit_test
[773/1106] Building CXX object CMakeFiles/t81_float_test.dir/tests/cpp/test_T81Float.cpp.o
[774/1106] Building CXX object CMakeFiles/t81_t81int_to_binary_test.dir/tests/cpp/test_t81int_to_binary.cpp.o
[775/1106] Linking CXX executable t81_float_test
[776/1106] Linking CXX executable t81_t81int_to_binary_test
[777/1106] Building CXX object CMakeFiles/t81_complex_test.dir/tests/cpp/test_T81Complex.cpp.o
[778/1106] Linking CXX executable t81_complex_test
[779/1106] Building CXX object CMakeFiles/t81_symbol_test.dir/tests/cpp/test_T81Symbol.cpp.o
[780/1106] Linking CXX executable t81_symbol_test
[781/1106] Building CXX object CMakeFiles/t81_float_deterministic_test.dir/tests/cpp/test_T81Float.cpp.o
[782/1106] Linking CXX executable t81_float_deterministic_test
[783/1106] Building CXX object CMakeFiles/t81_float_properties_test.dir/tests/cpp/float_properties_test.cpp.o
[784/1106] Linking CXX executable t81_float_properties_test
[785/1106] Building CXX object CMakeFiles/t81_bigint_float_conversion_test.dir/tests/cpp/test_T81BigInt_Float_conversion.cpp.o
[786/1106] Linking CXX executable t81_bigint_float_conversion_test
[787/1106] Building CXX object CMakeFiles/t81_prob_test.dir/tests/cpp/test_T81Prob.cpp.o
[788/1106] Building CXX object CMakeFiles/t81_string_test.dir/tests/cpp/test_T81String.cpp.o
[789/1106] Linking CXX executable t81_prob_test
[790/1106] Linking CXX executable t81_string_test
[791/1106] Building CXX object CMakeFiles/t81_qutrit_test.dir/tests/cpp/test_T81Qutrit.cpp.o
[792/1106] Linking CXX executable t81_qutrit_test
[793/1106] Building CXX object CMakeFiles/t81_fixed_test.dir/tests/cpp/test_T81Fixed.cpp.o
[794/1106] Building CXX object CMakeFiles/t81_uint_test.dir/tests/cpp/test_T81Uint.cpp.o
[795/1106] Linking CXX executable t81_fixed_test
[796/1106] Linking CXX executable t81_uint_test
[797/1106] Building CXX object CMakeFiles/t81_list_test.dir/tests/cpp/test_T81List.cpp.o
[798/1106] Linking CXX executable t81_list_test
[799/1106] Building CXX object CMakeFiles/t81_map_test.dir/tests/cpp/test_T81Map.cpp.o
[800/1106] Linking CXX executable t81_map_test
[801/1106] Building CXX object CMakeFiles/t81_set_test.dir/tests/cpp/test_T81Set.cpp.o
[802/1106] Linking CXX executable t81_set_test
[803/1106] Building CXX object CMakeFiles/t81_vector_test.dir/tests/cpp/test_T81Vector.cpp.o
[804/1106] Linking CXX executable t81_vector_test
[805/1106] Building CXX object CMakeFiles/t81_maybe_test.dir/tests/cpp/test_T81Maybe.cpp.o
[806/1106] Linking CXX executable t81_maybe_test
[807/1106] Building CXX object CMakeFiles/t81_simd_add_helpers_test.dir/tests/cpp/test_t81_simd_add_helpers.cpp.o
[808/1106] Linking CXX executable t81_simd_add_helpers_test
[809/1106] Building CXX object CMakeFiles/t81_result_test.dir/tests/cpp/test_T81Result.cpp.o
[810/1106] Building CXX object CMakeFiles/t81_matrix_singular_test.dir/tests/cpp/test_T81Matrix_singular.cpp.o
[811/1106] Linking CXX executable t81_result_test
[812/1106] Linking CXX executable t81_matrix_singular_test
[813/1106] Building CXX object CMakeFiles/t81_bytes_test.dir/tests/cpp/test_T81Bytes.cpp.o
[814/1106] Linking CXX executable t81_bytes_test
[815/1106] Building CXX object CMakeFiles/t81_time_test.dir/tests/cpp/test_T81Time.cpp.o
[816/1106] Linking CXX executable t81_time_test
[817/1106] Building CXX object CMakeFiles/t81_matrix_test.dir/tests/cpp/test_T81Matrix.cpp.o
[818/1106] Linking CXX executable t81_matrix_test
[819/1106] Building CXX object CMakeFiles/t81_quaternion_test.dir/tests/cpp/test_T81Quaternion.cpp.o
[820/1106] Linking CXX executable t81_quaternion_test
[821/1106] Building CXX object CMakeFiles/t81_tree_test.dir/tests/cpp/test_T81Tree.cpp.o
[822/1106] Linking CXX executable t81_tree_test
[823/1106] Building CXX object CMakeFiles/t81_limb_bohemian_add_test.dir/tests/cpp/test_t81_limb_bohemian_add.cpp.o
[824/1106] Building CXX object CMakeFiles/t81_limb_bohemian_mul_test.dir/tests/cpp/test_t81_limb_bohemian_mul.cpp.o
[825/1106] Building CXX object CMakeFiles/t81_native_property_test.dir/tests/cpp/t81_native_property_test.cpp.o
[826/1106] Linking CXX executable t81_limb_bohemian_mul_test
[827/1106] Linking CXX executable t81_native_property_test
[828/1106] Linking CXX executable t81_limb_bohemian_add_test
[829/1106] Building CXX object CMakeFiles/t81_limb54_add_test.dir/tests/cpp/test_t81_limb54_add.cpp.o
[830/1106] Linking CXX executable t81_limb54_add_test
[831/1106] Building CXX object CMakeFiles/debug_matrix_crash.dir/tests/cpp/debug_matrix_crash.cpp.o
[832/1106] Linking CXX executable debug_matrix_crash
[833/1106] Building CXX object CMakeFiles/t81_native_conversion_test.dir/tests/cpp/test_t81_native_conversion.cpp.o
[834/1106] Linking CXX executable t81_native_conversion_test
[835/1106] Building CXX object CMakeFiles/t81_limb54_booth_mul_test.dir/tests/cpp/test_t81_limb54_booth_mul.cpp.o
[836/1106] Linking CXX executable t81_limb54_booth_mul_test
[837/1106] Building CXX object CMakeFiles/t81_native_arith_test.dir/tests/cpp/test_t81_native_arith.cpp.o
[838/1106] Linking CXX executable t81_native_arith_test
[839/1106] Building CXX object CMakeFiles/t81_limb_booth_mul_test.dir/tests/cpp/test_t81_limb_booth_mul.cpp.o
[840/1106] Building CXX object CMakeFiles/t81_limb_mul_wide_high_test.dir/tests/cpp/test_t81_limb_mul_wide_high.cpp.o
[841/1106] Linking CXX executable t81_limb_booth_mul_test
[842/1106] Linking CXX executable t81_limb_mul_wide_high_test
[843/1106] Building CXX object CMakeFiles/t81_limb_add_test.dir/tests/cpp/test_t81_limb_add.cpp.o
[844/1106] Linking CXX executable t81_limb_add_test
[845/1106] Building CXX object CMakeFiles/t81_bigint_v1_perf.dir/tests/cpp/test_bigint_v1_perf.cpp.o
[846/1106] Linking CXX executable t81_bigint_v1_perf
[847/1106] Building CXX object CMakeFiles/test_T81Tensor_transpose.dir/tests/cpp/test_T81Tensor_transpose.cpp.o
[848/1106] Linking CXX executable test_T81Tensor_transpose
[849/1106] Building CXX object CMakeFiles/t81_bigint_v1_baseline_test.dir/tests/cpp/test_bigint_v1_baseline.cpp.o
[850/1106] Linking CXX executable t81_bigint_v1_baseline_test
[851/1106] Building CXX object CMakeFiles/test_bigint_multilimb_ext.dir/tests/cpp/test_bigint_multilimb_ext.cpp.o
[852/1106] Linking CXX executable test_bigint_multilimb_ext
[853/1106] Building CXX object CMakeFiles/test_bigint_robust_features.dir/tests/cpp/test_bigint_robust_features.cpp.o
[854/1106] Linking CXX executable test_bigint_robust_features
[855/1106] Building CXX object CMakeFiles/t81_distributed_tensor_test.dir/tests/cpp/distributed_tensor_test.cpp.o
[856/1106] Linking CXX executable t81_distributed_tensor_test
[857/1106] Building CXX object CMakeFiles/performance_advancements_test.dir/tests/cpp/performance_advancements_test.cpp.o
[858/1106] Linking CXX executable performance_advancements_test
[859/1106] Building CXX object CMakeFiles/t81_bigint_allocation_pathology_test.dir/tests/cpp/test_bigint_allocation_pathology.cpp.o
[860/1106] Linking CXX executable t81_bigint_allocation_pathology_test
[861/1106] Building CXX object CMakeFiles/bigint_perf_guardrail_test.dir/tests/cpp/bigint_perf_guardrail_test.cpp.o
[862/1106] Linking CXX executable bigint_perf_guardrail_test
[863/1106] Building CXX object CMakeFiles/t81_vm_tier_promotion_test.dir/tests/cpp/vm_tier_promotion_test.cpp.o
[864/1106] Building CXX object CMakeFiles/t81_bigint_allocation_guardrail_test.dir/tests/cpp/bigint_allocation_guardrail_test.cpp.o
[865/1106] Building CXX object CMakeFiles/tensor_backend_parity_test.dir/tests/cpp/tensor_backend_parity_test.cpp.o
[866/1106] Linking CXX executable tensor_backend_parity_test
[867/1106] Linking CXX executable t81_bigint_allocation_guardrail_test
[868/1106] Linking CXX executable t81_vm_tier_promotion_test
[869/1106] Building CXX object CMakeFiles/t81_code_protection_test.dir/tests/cpp/test_code_protection.cpp.o
[870/1106] Linking CXX executable t81_code_protection_test
[871/1106] Building CXX object CMakeFiles/axion_heap_compaction_trace_test.dir/tests/cpp/axion_heap_compaction_trace_test.cpp.o
[872/1106] Linking CXX executable axion_heap_compaction_trace_test
[873/1106] Building CXX object CMakeFiles/axion_nested_guard_test.dir/tests/cpp/axion_nested_guard_test.cpp.o
[874/1106] Building CXX object CMakeFiles/t81_graph_components_test.dir/tests/cpp/test_T81Graph_components.cpp.o
[875/1106] Linking CXX executable axion_nested_guard_test
[876/1106] Linking CXX executable t81_graph_components_test
[877/1106] Building CXX object CMakeFiles/e2e_axion_trace_test.dir/tests/cpp/e2e_axion_trace_test.cpp.o
[878/1106] Linking CXX executable e2e_axion_trace_test
[879/1106] Building CXX object CMakeFiles/t81_map_regression_test.dir/tests/cpp/test_T81Map_regression.cpp.o
[880/1106] Linking CXX executable t81_map_regression_test
[881/1106] Building CXX object CMakeFiles/t81_graph_shortest_path_test.dir/tests/cpp/test_T81Graph_shortest_path.cpp.o
[882/1106] Linking CXX executable t81_graph_shortest_path_test
[883/1106] Building CXX object CMakeFiles/t81_graph_test.dir/tests/cpp/test_T81Graph.cpp.o
[884/1106] Building CXX object CMakeFiles/t81_polynomial_test.dir/tests/cpp/test_T81Polynomial.cpp.o
[885/1106] Linking CXX executable t81_graph_test
[886/1106] Linking CXX executable t81_polynomial_test
[887/1106] Building CXX object CMakeFiles/t81_stream_test.dir/tests/cpp/test_T81Stream.cpp.o
[888/1106] Linking CXX executable t81_stream_test
[889/1106] Building CXX object CMakeFiles/t81_graph_large_test.dir/tests/cpp/test_T81Graph_large.cpp.o
[890/1106] Linking CXX executable t81_graph_large_test
[891/1106] Building CXX object CMakeFiles/t81_agent_neural_test.dir/tests/cpp/test_T81Agent_neural.cpp.o
[892/1106] Linking CXX executable t81_agent_neural_test
[893/1106] Building CXX object CMakeFiles/t81_agent_test.dir/tests/cpp/test_T81Agent.cpp.o
[894/1106] Linking CXX executable t81_agent_test
[895/1106] Building CXX object CMakeFiles/t81_promise_test.dir/tests/cpp/test_T81Promise.cpp.o
[896/1106] Linking CXX executable t81_promise_test
[897/1106] Building CXX object CMakeFiles/t81_thread_test.dir/tests/cpp/test_T81Thread.cpp.o
[898/1106] Linking CXX executable t81_thread_test
[899/1106] Building CXX object CMakeFiles/t81_category_test.dir/tests/cpp/test_T81Category.cpp.o
[900/1106] Linking CXX executable t81_category_test
[901/1106] Building CXX object CMakeFiles/t81_tensor_slice_static_test.dir/tests/cpp/test_T81Tensor_slice_static.cpp.o
[902/1106] Linking CXX executable t81_tensor_slice_static_test
[903/1106] Building CXX object CMakeFiles/t81_tensor_concat_static_test.dir/tests/cpp/test_T81Tensor_concat_static.cpp.o
[904/1106] Linking CXX executable t81_tensor_concat_static_test
[905/1106] Building CXX object CMakeFiles/t81_proof_test.dir/tests/cpp/test_T81Proof.cpp.o
[906/1106] Linking CXX executable t81_proof_test
[907/1106] Building CXX object CMakeFiles/t81_tensor_activations_static_test.dir/tests/cpp/test_T81Tensor_activations_static.cpp.o
[908/1106] Building CXX object CMakeFiles/t81_tensor_permute_static_test.dir/tests/cpp/test_T81Tensor_permute_static.cpp.o
[909/1106] Linking CXX executable t81_tensor_activations_static_test
[910/1106] Linking CXX executable t81_tensor_permute_static_test
[911/1106] Building CXX object CMakeFiles/t81_tensor_pad_static_test.dir/tests/cpp/test_T81Tensor_pad_static.cpp.o
[912/1106] Linking CXX executable t81_tensor_pad_static_test
[913/1106] Building CXX object CMakeFiles/t81_network_test.dir/tests/cpp/test_T81Network.cpp.o
[914/1106] Linking CXX executable t81_network_test
[915/1106] Building CXX object CMakeFiles/t81_tensor_softmax_static_test.dir/tests/cpp/test_T81Tensor_softmax_static.cpp.o
[916/1106] Linking CXX executable t81_tensor_softmax_static_test
[917/1106] Building CXX object CMakeFiles/t81_discovery_test.dir/tests/cpp/test_T81Discovery.cpp.o
[918/1106] Linking CXX executable t81_discovery_test
[919/1106] Building CXX object CMakeFiles/t81_float_rounding_test.dir/tests/cpp/test_T81Float_rounding.cpp.o
[920/1106] Linking CXX executable t81_float_rounding_test
[921/1106] Building CXX object CMakeFiles/t81_int_pow_test.dir/tests/cpp/test_T81Int_pow.cpp.o
[922/1106] Linking CXX executable t81_int_pow_test
[923/1106] Building CXX object CMakeFiles/t81_graph_bfs_test.dir/tests/cpp/test_T81Graph_bfs.cpp.o
[924/1106] Building CXX object CMakeFiles/t81_float_clamp_test.dir/tests/cpp/test_T81Float_clamp.cpp.o
[925/1106] Linking CXX executable t81_graph_bfs_test
[926/1106] Linking CXX executable t81_float_clamp_test
[927/1106] Building CXX object CMakeFiles/t81_int_gcd_lcm_test.dir/tests/cpp/test_T81Int_gcd_lcm.cpp.o
[928/1106] Linking CXX executable t81_int_gcd_lcm_test
[929/1106] Building CXX object CMakeFiles/t81_int_shift_test.dir/tests/cpp/test_t81int_shift.cpp.o