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
==> Making package: warp 0.6.2-1 (Thu 21 Mar 2024 12:29:19 PM CET)
==> Retrieving sources...
  -> Downloading warp-v0.6.2.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  465k    0  465k    0     0   264k      0 --:--:--  0:00:01 --:--:--  264k
==> Validating source files with b2sums...
    warp-v0.6.2.tar.gz ... Passed
==> Making package: warp 0.6.2-1 (Thu 21 Mar 2024 12:29:25 PM CET)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found warp-v0.6.2.tar.gz
==> Validating source files with b2sums...
    warp-v0.6.2.tar.gz ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Extracting warp-v0.6.2.tar.gz with bsdtar
==> Starting prepare()...
==> Sources are ready.
warp-0.6.2-1: parsing pkg list...
==> Making package: warp 0.6.2-1 (Thu 21 Mar 2024 12:29:33 PM CET)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
+ exec meson setup --prefix /usr --libexecdir lib --sbindir bin --buildtype plain --auto-features enabled --wrap-mode nodownload -D b_pie=true -D python.bytecompile=1 warp-v0.6.2 build
The Meson build system
Version: 1.4.0
Source dir: /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2
Build dir: /home/olk/.cache/paru/clone/warp/src/build
Build type: native build
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Project name: warp
Project version: 0.6.2
Rust compiler for the host machine: rustc -C linker=cc (rustc 1.76.0)
Rust linker for the host machine: rustc -C linker=cc ld.bfd 2.42.0
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Program /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py found: YES (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/build-aux/meson-cargo-manifest.py)
Found pkg-config: YES (/usr/bin/pkg-config) 2.1.1
Run-time dependency glib-2.0 found: YES 2.78.4
Run-time dependency gio-2.0 found: YES 2.78.4
Run-time dependency gtk4 found: YES 4.12.5
Run-time dependency libadwaita-1 found: YES 1.4.4
Program glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Program desktop-file-validate found: YES (/usr/bin/desktop-file-validate)
Program appstream-util found: YES (/usr/bin/appstream-util)
Program appstreamcli found: YES (/usr/bin/appstreamcli)
Program cargo found: YES (/usr/bin/cargo)
Message: Setting up git pre-commit hook
Configuring app.drey.Warp.desktop.in using configuration
Program msgfmt found: YES (/usr/bin/msgfmt)
Configuring app.drey.Warp.metainfo.xml.in using configuration
Program itstool found: YES (/usr/bin/itstool)
Program msgmerge found: YES (/usr/bin/msgmerge)
Program msgfmt found: YES (/usr/bin/msgfmt)
Program msginit found: YES (/usr/bin/msginit)
Program msgmerge found: YES (/usr/bin/msgmerge)
Program xgettext found: YES (/usr/bin/xgettext)
Message: Building in release mode
Program gtk4-update-icon-cache found: YES (/usr/bin/gtk4-update-icon-cache)
Program update-desktop-database found: YES (/usr/bin/update-desktop-database)
Build targets in project: 66

warp 0.6.2

  User defined options
    auto_features     : enabled
    buildtype         : plain
    libexecdir        : lib
    prefix            : /usr
    sbindir           : bin
    wrap_mode         : nodownload
    python.bytecompile: 1
    b_pie             : true

Found ninja-1.11.1 at /usr/bin/ninja
INFO: autodetecting backend as ninja                                                           
INFO: calculating backend command to run: /usr/bin/ninja -C /home/olk/.cache/paru/clone/warp/src/build
ninja: Entering directory `/home/olk/.cache/paru/clone/warp/src/build'
[52/53] Generating src/cargo-build with a custom command
    Updating crates.io index
  Downloaded async-io v2.2.1
  Downloaded addr2line v0.21.0
  Downloaded checked_int_cast v1.0.0
  Downloaded equivalent v1.0.1
  Downloaded color_quant v1.1.0
  Downloaded async-channel v2.1.1
  Downloaded trackable_derive v1.0.0
  Downloaded waker-fn v1.1.1
  Downloaded tinyvec_macros v0.1.1
  Downloaded enumflags2_derive v0.7.8
  Downloaded time-core v0.1.2
  Downloaded async-executor v1.8.0
  Downloaded xdg-home v1.0.0
  Downloaded urlencoding v2.1.3
  Downloaded zvariant_utils v1.0.1
  Downloaded cfg-if v1.0.0
  Downloaded autocfg v1.1.0
  Downloaded async-tls v0.12.0
  Downloaded temp-dir v0.1.11
  Downloaded concurrent-queue v2.4.0
  Downloaded bitflags v1.3.2
  Downloaded atomic-waker v1.1.2
  Downloaded crc v3.0.1
  Downloaded cairo-sys-rs v0.18.2
  Downloaded block-buffer v0.10.4
  Downloaded gdk-pixbuf v0.18.3
  Downloaded scopeguard v1.2.0
  Downloaded ctr v0.9.2
  Downloaded rustc_version v0.4.0
  Downloaded curve25519-dalek-derive v0.1.1
  Downloaded slab v0.4.9
  Downloaded sha-1 v0.10.1
  Downloaded same-file v1.0.6
  Downloaded signal-hook-registry v1.4.1
  Downloaded serde_spanned v0.6.4
  Downloaded serde_repr v0.1.17
  Downloaded byteorder v1.5.0
  Downloaded crypto-common v0.1.6
  Downloaded digest v0.10.7
  Downloaded async-fs v1.6.0
  Downloaded async-signal v0.2.5
  Downloaded async-process v1.8.1
  Downloaded form_urlencoded v1.2.1
  Downloaded rustls-pemfile v1.0.4
  Downloaded event-listener v2.5.3
  Downloaded sha1 v0.10.6
  Downloaded simple_moving_average v1.0.0
  Downloaded version-compare v0.1.1
  Downloaded fnv v1.0.7
  Downloaded filetime v0.2.22
  Downloaded futures-sink v0.3.29
  Downloaded untrusted v0.9.0
  Downloaded untrusted v0.7.1
  Downloaded futures-macro v0.3.29
  Downloaded futures-executor v0.3.29
  Downloaded cpufeatures v0.2.11
  Downloaded walkdir v2.4.0
  Downloaded universal-hash v0.5.1
  Downloaded spake2 v0.4.0
  Downloaded anyhow v1.0.75
  Downloaded gettext-rs v0.7.0
  Downloaded termcolor v1.4.0
  Downloaded subtle v2.5.0
  Downloaded async-task v4.5.0
  Downloaded chacha20 v0.9.1
  Downloaded blocking v1.5.1
  Downloaded toml_datetime v0.6.5
  Downloaded static_assertions v1.1.0
  Downloaded time-macros v0.2.15
  Downloaded version_check v0.9.4
  Downloaded async-tungstenite v0.23.0
  Downloaded async-trait v0.1.74
  Downloaded thiserror v1.0.50
  Downloaded zeroize_derive v1.4.2
  Downloaded errno v0.3.8
  Downloaded thiserror-impl v1.0.50
  Downloaded event-listener v3.1.0
  Downloaded bytecodec v0.4.15
  Downloaded event-listener v4.0.0
  Downloaded env_logger v0.10.1
  Downloaded xattr v0.2.3
  Downloaded gdk-pixbuf-sys v0.18.0
  Downloaded rmp-serde v1.1.2
  Downloaded futures-task v0.3.29
  Downloaded futures-channel v0.3.29
  Downloaded zvariant_derive v3.15.0
  Downloaded zbus_names v2.6.0
  Downloaded utf-8 v0.7.6
  Downloaded generic-array v0.14.7
  Downloaded zeroize v1.7.0
  Downloaded trackable v1.3.0
  Downloaded async-io v1.13.0
  Downloaded futures-lite v2.1.0
  Downloaded spin v0.5.2
  Downloaded deranged v0.3.10
  Downloaded async-lock v3.2.0
  Downloaded arrayvec v0.7.4
  Downloaded crc32fast v1.3.2
  Downloaded sct v0.7.1
  Downloaded opaque-debug v0.3.0
  Downloaded salsa20 v0.10.2
  Downloaded is-terminal v0.4.9
  Downloaded rustc-demangle v0.1.23
  Downloaded safe-transmute v0.11.2
  Downloaded rmp v0.8.12
  Downloaded async-lock v2.8.0
  Downloaded async-attributes v1.1.2
  Downloaded enumflags2 v0.7.8
  Downloaded futures-io v0.3.29
  Downloaded smallvec v1.11.2
  Downloaded sha2 v0.10.8
  Downloaded futures-core v0.3.29
  Downloaded field-offset v0.3.6
  Downloaded fastrand v2.0.1
  Downloaded getrandom v0.2.11
  Downloaded bytemuck v1.14.0
  Downloaded async-global-executor v2.4.0
  Downloaded fastrand v1.9.0
  Downloaded event-listener-strategy v0.4.0
  Downloaded crypto_secretbox v0.1.1
  Downloaded cfg-expr v0.15.5
  Downloaded event-listener-strategy v0.1.0
  Downloaded data-encoding v2.5.0
  Downloaded crc-catalog v2.4.0
  Downloaded cipher v0.4.4
  Downloaded async-net v1.8.0
  Downloaded async-recursion v1.0.5
  Downloaded async-channel v1.9.0
  Downloaded md5 v0.7.0
  Downloaded lazy_static v1.4.0
  Downloaded derivative v2.2.0
  Downloaded futures-lite v1.13.0
  Downloaded futures v0.3.29
  Downloaded derive_more v0.99.17
  Downloaded futures_ringbuf v0.4.0
  Downloaded blake2 v0.10.6
  Downloaded gtk4-macros v0.7.2
  Downloaded gsk4-sys v0.7.3
  Downloaded gobject-sys v0.18.0
  Downloaded tracing-attributes v0.1.27
  Downloaded ordered-stream v0.2.0
  Downloaded target-lexicon v0.12.12
  Downloaded value-bag v1.4.2
  Downloaded system-deps v6.2.0
  Downloaded cairo-rs v0.18.3
  Downloaded bitflags v2.4.1
  Downloaded crossbeam-utils v0.8.16
  Downloaded async-broadcast v0.5.1
  Downloaded graphene-sys v0.18.1
  Downloaded adler v1.0.2
  Downloaded aead v0.5.2
  Downloaded ringbuf v0.3.3
  Downloaded zbus_macros v3.14.1
  Downloaded spin v0.9.8
  Downloaded ryu v1.0.15
  Downloaded powerfmt v0.2.0
  Downloaded itoa v1.0.9
  Downloaded proc-macro-crate v2.0.0
  Downloaded ppv-lite86 v0.2.17
  Downloaded proc-macro-error-attr v1.0.4
  Downloaded parking v2.2.0
  Downloaded inout v0.1.3
  Downloaded rand_chacha v0.3.1
  Downloaded flate2 v1.0.28
  Downloaded graphene-rs v0.18.1
  Downloaded rand_core v0.6.4
  Downloaded ghash v0.5.0
  Downloaded io-lifetimes v1.0.11
  Downloaded gvdb-macros v0.1.11
  Downloaded pango-sys v0.18.0
  Downloaded quote v1.0.33
  Downloaded unicode-ident v1.0.12
  Downloaded toml v0.8.8
  Downloaded tinyvec v1.6.0
  Downloaded socket2 v0.5.5
  Downloaded tempfile v3.8.1
  Downloaded memoffset v0.7.1
  Downloaded piper v0.2.1
  Downloaded pin-utils v0.1.0
  Downloaded typenum v1.17.0
  Downloaded chacha20poly1305 v0.10.1
  Downloaded num-iter v0.1.43
  Downloaded num-integer v0.1.45
  Downloaded humantime v2.1.0
  Downloaded paste v1.0.14
  Downloaded once_cell v1.18.0
  Downloaded base64 v0.21.5
  Downloaded if-addrs v0.10.2
  Downloaded smol v1.3.0
  Downloaded bytes v1.5.0
  Downloaded memmap2 v0.9.0
  Downloaded proc-macro-crate v1.3.1
  Downloaded socket2 v0.4.10
  Downloaded kv-log-macro v1.0.7
  Downloaded percent-encoding v2.3.1
  Downloaded zvariant v3.15.0
  Downloaded locale_config v0.3.0
  Downloaded hex v0.4.3
  Downloaded cc v1.0.83
  Downloaded pkg-config v0.3.27
  Downloaded httparse v1.8.0
  Downloaded heck v0.4.1
  Downloaded pretty_env_logger v0.5.0
  Downloaded backtrace v0.3.69
  Downloaded serde_derive v1.0.193
  Downloaded pin-project-internal v1.1.3
  Downloaded pango v0.18.3
  Downloaded semver v1.0.20
  Downloaded webpki v0.22.4
  Downloaded miniz_oxide v0.7.1
  Downloaded poly1305 v0.8.0
  Downloaded pin-project-lite v0.2.13
  Downloaded memoffset v0.9.0
  Downloaded gdk4-sys v0.7.2
  Downloaded tungstenite v0.20.1
  Downloaded polyval v0.6.1
  Downloaded serde v1.0.193
  Downloaded iana-time-zone v0.1.58
  Downloaded polling v2.8.0
  Downloaded unicode-bidi v0.3.13
  Downloaded libadwaita-sys v0.5.3
  Downloaded num-rational v0.3.2
  Downloaded gvdb v0.5.3
  Downloaded log v0.4.20
  Downloaded proc-macro-error v1.0.4
  Downloaded platforms v3.2.0
  Downloaded noise-rust-crypto v0.6.2
  Downloaded trackable v0.2.24
  Downloaded gsk4 v0.7.3
  Downloaded hmac v0.12.1
  Downloaded glib-macros v0.18.3
  Downloaded qrcode v0.12.0
  Downloaded tracing-core v0.1.32
  Downloaded tracing v0.1.40
  Downloaded polling v3.3.1
  Downloaded num-traits v0.2.17
  Downloaded litrs v0.4.1
  Downloaded proc-macro2 v1.0.70
  Downloaded aes v0.8.3
  Downloaded url v2.5.0
  Downloaded noise-protocol v0.2.0
  Downloaded async_zip v0.0.15
  Downloaded glib-sys v0.18.1
  Downloaded gio-sys v0.18.1
  Downloaded indexmap v2.1.0
  Downloaded rand v0.8.5
  Downloaded x25519-dalek v2.0.0
  Downloaded async-tar v0.4.2
  Downloaded stun_codec v0.3.4
  Downloaded toml_edit v0.21.0
  Downloaded gdk4 v0.7.3
  Downloaded async-broadcast v0.6.0
  Downloaded pin-project v1.1.3
  Downloaded toml_edit v0.19.15
  Downloaded aes-gcm v0.10.3
  Downloaded gtk4-sys v0.7.3
  Downloaded memchr v2.6.4
  Downloaded unicode-normalization v0.1.22
  Downloaded time v0.3.30
  Downloaded aho-corasick v1.1.2
  Downloaded libadwaita v0.5.3
  Downloaded http v0.2.11
  Downloaded toml_edit v0.20.7
  Downloaded futures-util v0.3.29
  Downloaded serde_json v1.0.108
  Downloaded hashbrown v0.14.3
  Downloaded zbus v3.14.1
  Downloaded winnow v0.5.19
  Downloaded quick-xml v0.31.0
  Downloaded quick-xml v0.30.0
  Downloaded async-std v1.12.0
  Downloaded chrono v0.4.31
  Downloaded hkdf v0.12.3
  Downloaded image v0.23.14
  Downloaded idna v0.5.0
  Downloaded regex-syntax v0.8.2
  Downloaded object v0.32.1
  Downloaded glib v0.18.3
  Downloaded gio v0.18.3
  Downloaded syn v1.0.109
  Downloaded rustls v0.20.9
  Downloaded regex v1.10.2
  Downloaded curve25519-dalek v4.1.1
  Downloaded nix v0.26.4
  Downloaded rustix v0.37.27
  Downloaded gtk4 v0.7.3
  Downloaded rustix v0.38.26
  Downloaded regex-automata v0.4.3
  Downloaded webpki-roots v0.22.6
  Downloaded syn v2.0.39
  Downloaded gimli v0.28.1
  Downloaded libc v0.2.150
  Downloaded linux-raw-sys v0.3.8
  Downloaded magic-wormhole v0.6.1
  Downloaded linux-raw-sys v0.4.12
  Downloaded ring v0.17.6
  Downloaded ring v0.16.20
  Downloaded gettext-sys v0.21.3
  Downloaded 298 crates (35.4 MB) in 6.20s (largest was `gettext-sys` at 6.5 MB)
   Compiling proc-macro2 v1.0.70
   Compiling unicode-ident v1.0.12
   Compiling libc v0.2.150
   Compiling cfg-if v1.0.0
   Compiling serde v1.0.193
   Compiling autocfg v1.1.0
   Compiling equivalent v1.0.1
   Compiling hashbrown v0.14.3
   Compiling winnow v0.5.19
   Compiling version_check v0.9.4
   Compiling target-lexicon v0.12.12
   Compiling heck v0.4.1
   Compiling indexmap v2.1.0
   Compiling quote v1.0.33
   Compiling smallvec v1.11.2
   Compiling syn v2.0.39
   Compiling cfg-expr v0.15.5
   Compiling version-compare v0.1.1
   Compiling pkg-config v0.3.27
   Compiling pin-project-lite v0.2.13
   Compiling futures-core v0.3.29
   Compiling getrandom v0.2.11
   Compiling syn v1.0.109
   Compiling memchr v2.6.4
   Compiling futures-io v0.3.29
   Compiling typenum v1.17.0
   Compiling rand_core v0.6.4
   Compiling generic-array v0.14.7
   Compiling slab v0.4.9
   Compiling once_cell v1.18.0
   Compiling crossbeam-utils v0.8.16
   Compiling bitflags v2.4.1
   Compiling parking v2.2.0
   Compiling subtle v2.5.0
   Compiling futures-channel v0.3.29
   Compiling concurrent-queue v2.4.0
   Compiling cpufeatures v0.2.11
   Compiling pin-utils v0.1.0
   Compiling futures-task v0.3.29
   Compiling futures-util v0.3.29
   Compiling value-bag v1.4.2
   Compiling futures-sink v0.3.29
   Compiling log v0.4.20
   Compiling cc v1.0.83
   Compiling semver v1.0.20
   Compiling event-listener v4.0.0
   Compiling fastrand v2.0.1
   Compiling thiserror v1.0.50
   Compiling event-listener-strategy v0.4.0
   Compiling rustix v0.38.26
   Compiling tracing-core v0.1.32
   Compiling proc-macro-error-attr v1.0.4
   Compiling linux-raw-sys v0.4.12
   Compiling rustc_version v0.4.0
   Compiling async-lock v3.2.0
   Compiling futures-lite v2.1.0
   Compiling proc-macro-error v1.0.4
   Compiling byteorder v1.5.0
   Compiling event-listener v2.5.3
   Compiling num-traits v0.2.17
   Compiling io-lifetimes v1.0.11
   Compiling bitflags v1.3.2
   Compiling polling v2.8.0
   Compiling waker-fn v1.1.1
   Compiling async-task v4.5.0
   Compiling atomic-waker v1.1.2
   Compiling rustix v0.37.27
   Compiling fastrand v1.9.0
   Compiling futures-lite v1.13.0
   Compiling piper v0.2.1
   Compiling async-lock v2.8.0
   Compiling async-channel v2.1.1
   Compiling async-io v1.13.0
   Compiling crc32fast v1.3.2
   Compiling linux-raw-sys v0.3.8
   Compiling zvariant_utils v1.0.1
   Compiling socket2 v0.4.10
   Compiling event-listener v3.1.0
   Compiling opaque-debug v0.3.0
   Compiling untrusted v0.9.0
   Compiling serde_json v1.0.108
   Compiling gio v0.18.3
   Compiling spin v0.9.8
   Compiling async-executor v1.8.0
   Compiling signal-hook-registry v1.4.1
   Compiling tinyvec_macros v0.1.1
   Compiling platforms v3.2.0
   Compiling itoa v1.0.9
   Compiling tinyvec v1.6.0
   Compiling curve25519-dalek v4.1.1
   Compiling aho-corasick v1.1.2
   Compiling num-integer v0.1.45
   Compiling regex-syntax v0.8.2
   Compiling ppv-lite86 v0.2.17
   Compiling rand_chacha v0.3.1
   Compiling ring v0.17.6
   Compiling ring v0.16.20
   Compiling unicode-normalization v0.1.22
   Compiling async-channel v1.9.0
   Compiling memoffset v0.9.0
   Compiling memoffset v0.7.1
   Compiling paste v1.0.14
   Compiling percent-encoding v2.3.1
   Compiling regex-automata v0.4.3
   Compiling untrusted v0.7.1
   Compiling spin v0.5.2
   Compiling rustls v0.20.9
   Compiling httparse v1.8.0
   Compiling unicode-bidi v0.3.13
   Compiling anyhow v1.0.75
   Compiling regex v1.10.2
   Compiling idna v0.5.0
   Compiling form_urlencoded v1.2.1
   Compiling rand v0.8.5
   Compiling field-offset v0.3.6
   Compiling kv-log-macro v1.0.7
   Compiling async-fs v1.6.0
   Compiling num-rational v0.3.2
   Compiling num-iter v0.1.43
   Compiling fnv v1.0.7
   Compiling adler v1.0.2
   Compiling async-trait v0.1.74
   Compiling temp-dir v0.1.11
   Compiling base64 v0.21.5
   Compiling webpki v0.22.4
   Compiling sct v0.7.1
   Compiling bytes v1.5.0
   Compiling static_assertions v1.1.0
   Compiling http v0.2.11
   Compiling webpki-roots v0.22.6
   Compiling rustls-pemfile v1.0.4
   Compiling miniz_oxide v0.7.1
   Compiling gettext-sys v0.21.3
   Compiling quick-xml v0.30.0
   Compiling futures_ringbuf v0.4.0
   Compiling same-file v1.0.6
   Compiling utf-8 v0.7.6
   Compiling powerfmt v0.2.0
   Compiling ryu v1.0.15
   Compiling arrayvec v0.7.4
   Compiling crc-catalog v2.4.0
   Compiling data-encoding v2.5.0
   Compiling noise-protocol v0.2.0
   Compiling crc v3.0.1
   Compiling deranged v0.3.10
   Compiling rmp v0.8.12
   Compiling walkdir v2.4.0
   Compiling nix v0.26.4
   Compiling flate2 v1.0.28
   Compiling async-tls v0.12.0
   Compiling backtrace v0.3.69
   Compiling is-terminal v0.4.9
   Compiling ringbuf v0.3.3
   Compiling xattr v0.2.3
   Compiling filetime v0.2.22
   Compiling termcolor v1.4.0
   Compiling safe-transmute v0.11.2
   Compiling humantime v2.1.0
   Compiling md5 v0.7.0
   Compiling time-core v0.1.2
   Compiling color_quant v1.1.0
   Compiling gimli v0.28.1
   Compiling lazy_static v1.4.0
   Compiling bytemuck v1.14.0
   Compiling locale_config v0.3.0
   Compiling image v0.23.14
   Compiling time v0.3.30
   Compiling env_logger v0.10.1
   Compiling addr2line v0.21.0
   Compiling xdg-home v1.0.0
   Compiling event-listener-strategy v0.1.0
   Compiling async-broadcast v0.5.1
   Compiling object v0.32.1
   Compiling ordered-stream v0.2.0
   Compiling socket2 v0.5.5
   Compiling if-addrs v0.10.2
   Compiling litrs v0.4.1
   Compiling rustc-demangle v0.1.23
   Compiling checked_int_cast v1.0.0
   Compiling iana-time-zone v0.1.58
   Compiling chrono v0.4.31
   Compiling qrcode v0.12.0
   Compiling async-broadcast v0.6.0
   Compiling gettext-rs v0.7.0
   Compiling pretty_env_logger v0.5.0
   Compiling simple_moving_average v1.0.0
   Compiling tempfile v3.8.1
   Compiling memmap2 v0.9.0
   Compiling urlencoding v2.1.3
   Compiling scopeguard v1.2.0
   Compiling serde_derive v1.0.193
   Compiling zeroize_derive v1.4.2
   Compiling futures-macro v0.3.29
   Compiling tracing-attributes v0.1.27
   Compiling thiserror-impl v1.0.50
   Compiling enumflags2_derive v0.7.8
   Compiling curve25519-dalek-derive v0.1.1
   Compiling trackable_derive v1.0.0
   Compiling trackable v1.3.0
   Compiling async-attributes v1.1.2
   Compiling pin-project-internal v1.1.3
   Compiling trackable v0.2.24
   Compiling bytecodec v0.4.15
   Compiling zeroize v1.7.0
   Compiling crypto-common v0.1.6
   Compiling block-buffer v0.10.4
   Compiling inout v0.1.3
   Compiling digest v0.10.7
   Compiling cipher v0.4.4
   Compiling universal-hash v0.5.1
   Compiling sha1 v0.10.6
   Compiling aead v0.5.2
   Compiling polyval v0.6.1
   Compiling poly1305 v0.8.0
   Compiling hmac v0.12.1
   Compiling ghash v0.5.0
   Compiling aes v0.8.3
   Compiling chacha20 v0.9.1
   Compiling ctr v0.9.2
   Compiling sha2 v0.10.8
   Compiling x25519-dalek v2.0.0
   Compiling aes-gcm v0.10.3
   Compiling chacha20poly1305 v0.10.1
   Compiling hkdf v0.12.3
   Compiling salsa20 v0.10.2
   Compiling blake2 v0.10.6
   Compiling noise-rust-crypto v0.6.2
   Compiling crypto_secretbox v0.1.1
   Compiling spake2 v0.4.0
   Compiling stun_codec v0.3.4
   Compiling sha-1 v0.10.1
   Compiling derive_more v0.99.17
   Compiling derivative v2.2.0
   Compiling futures-executor v0.3.29
   Compiling futures v0.3.29
   Compiling serde_repr v0.1.17
   Compiling async-recursion v1.0.5
   Compiling tracing v0.1.40
   Compiling polling v3.3.1
   Compiling blocking v1.5.1
   Compiling async-io v2.2.1
   Compiling async-signal v0.2.5
   Compiling async-process v1.8.1
   Compiling async-global-executor v2.4.0
   Compiling async-std v1.12.0
   Compiling pin-project v1.1.3
   Compiling async-net v1.8.0
   Compiling async_zip v0.0.15
   Compiling smol v1.3.0
   Compiling async-tar v0.4.2
   Compiling toml_datetime v0.6.5
   Compiling serde_spanned v0.6.4
   Compiling toml_edit v0.21.0
   Compiling toml_edit v0.19.15
   Compiling toml v0.8.8
   Compiling proc-macro-crate v1.3.1
   Compiling system-deps v6.2.0
   Compiling toml_edit v0.20.7
   Compiling enumflags2 v0.7.8
   Compiling url v2.5.0
   Compiling tungstenite v0.20.1
   Compiling proc-macro-crate v2.0.0
   Compiling quick-xml v0.31.0
   Compiling hex v0.4.3
   Compiling async-tungstenite v0.23.0
   Compiling rmp-serde v1.1.2
   Compiling magic-wormhole v0.6.1
   Compiling glib-sys v0.18.1
   Compiling gobject-sys v0.18.0
   Compiling gio-sys v0.18.1
   Compiling pango-sys v0.18.0
   Compiling gdk-pixbuf-sys v0.18.0
   Compiling cairo-sys-rs v0.18.2
   Compiling graphene-sys v0.18.1
   Compiling gdk4-sys v0.7.2
   Compiling zvariant_derive v3.15.0
   Compiling gsk4-sys v0.7.3
   Compiling gtk4-sys v0.7.3
   Compiling libadwaita-sys v0.5.3
   Compiling gtk4-macros v0.7.2
   Compiling zbus_macros v3.14.1
   Compiling glib-macros v0.18.3
   Compiling zvariant v3.15.0
   Compiling zbus_names v2.6.0
   Compiling gvdb v0.5.3
   Compiling zbus v3.14.1
   Compiling glib v0.18.3
   Compiling gvdb-macros v0.1.11
   Compiling cairo-rs v0.18.3
   Compiling graphene-rs v0.18.1
   Compiling pango v0.18.3
   Compiling gdk-pixbuf v0.18.3
   Compiling gdk4 v0.7.3
   Compiling gsk4 v0.7.3
   Compiling gtk4 v0.7.3
   Compiling libadwaita v0.5.3
   Compiling warp v0.6.2 (/home/olk/.cache/paru/clone/warp/src/warp-v0.6.2)
error: linking with `cc` failed: exit status: 1
  |
  = note: LC_ALL="C" PATH="/home/olk/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/bin:/home/olk/.cache/paru/clone/warp/src/build/cargo-home/bin:/usr/lib/ccache/bin:/home/olk/.local/bin:/usr/lib/ccache/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/lib/rustup/bin" VSLANG="1033" "cc" "-m64" "/tmp/rustcObGVON/symbols.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.338yhez53l25v5yc.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.addr2line-1ff34b0cf871cb60.addr2line.529816634e3d17db-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.addr2line-7ef2bea6f5241e6e.addr2line.d26af055bb2a3681-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.adler-349c574f342b0d30.adler.c245e8aa15d3e5f0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.adler-4e4495d5b93723c2.adler.1e5734ba643b8b0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.aead-bfef0612c9e0d207.aead.c049aa52f19678fb-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.aes-0f1dd55b6a29d800.aes.33455ede9a7a43b2-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.aes_gcm-0fe689937fd89cc4.aes_gcm.a19631bd749ce39a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.aho_corasick-745a7eb93852b372.aho_corasick.e313bc81188f0277-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.alloc-e9d126c51bb8b2bb.alloc.6df67106ebca92c0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.arrayvec-8843b81823c70996.arrayvec.21f23194e5855335-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_broadcast-67966afcf76124db.async_broadcast.3c708c55bb01b0b9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_channel-4d38453c62b17d64.async_channel.8d1b3c0b5c972ef9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_channel-d2451f54667fa098.async_channel.f218a77b8194aef6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_executor-eb2f6293359c4470.async_executor.9eda6ce7405cae11-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_fs-558e22276a9d555c.async_fs.fd03e08c53100608-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_global_executor-83c1717ca0dbc317.async_global_executor.a6beed4f95594e01-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_io-382daf7934573186.async_io.1fa2bef423444281-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_io-5e21fec11a0ca426.async_io.99da251ea8852616-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_lock-077d91fbc42448d0.async_lock.d5892d0bc8c9e2e8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_lock-73ae3290b47ca851.async_lock.2f530aab1dc53f15-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_net-b6c3635269792283.async_net.3fffb3cecc50e384-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_process-c7582ed548b4ce6f.async_process.fb42d650882048a6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_signal-505c353f6da9c757.async_signal.3c12dfc9afadbf0b-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_std-5791869457ddf2e7.async_std.aacba97df9cf4301-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_tar-d7c345b0a3b84df8.async_tar.d67e998f5b63f992-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_task-0daa17570714969b.async_task.f842657390994c07-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_tls-f4309fc2579cbd97.async_tls.17f1fc950fa1447-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_tungstenite-5fb0b601cc40594e.async_tungstenite.7d9e403c7ca3bd19-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.async_zip-420ecfd1d81a8387.async_zip.b7ee954393f07c0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.atomic_waker-778c5c4685ff567a.atomic_waker.ea4f40a28a032511-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.backtrace-f8335623382de0a5.backtrace.663d34eb23b4d094-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.base64-c2f37b6095c04597.base64.2181be54bcb98b64-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.bitflags-10466e2806ae6a65.bitflags.4769b04d9ec4788d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.bitflags-70fb33dbacceaf43.bitflags.9c43bedf8d8ad2f4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.blake2-297ef499b924e3ae.blake2.9d08c9305aba79a6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.block_buffer-b05eb2ce8d8cf0ec.block_buffer.d0a8eca1c08fce98-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.blocking-a108b0cb75151b85.blocking.ad9609f6c0d26ef-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.bytecodec-8f8ffec12af0c0f9.bytecodec.792c37092874afe0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.bytemuck-17918d4bcface8e9.bytemuck.673787bf50f94bc5-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.byteorder-e89e230bf995af9a.byteorder.e34a4f743bffba9d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.bytes-d6ca5546e3285515.bytes.5c7bfb90b3898a1d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.cairo-2ad8a969fb1e7ef6.cairo.5b7388f0d67fd3d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.cairo_sys-0a20d2b1bda8a5af.cairo_sys.acb1257fbc8a8b69-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.cfg_if-45dba07a139f602b.cfg_if.ca18a137b5f7af76-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.cfg_if-7e6330a6c0cb9441.cfg_if.264ef71a2d8ce2b4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.chacha20-85314d9d74133b55.chacha20.2942adcfb06b8e7b-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.chacha20poly1305-79c64f75d2626863.chacha20poly1305.a3c42228e922bf0d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.checked_int_cast-aa01fdcd74dfaf85.checked_int_cast.76834d1e9a1d2b13-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.chrono-763df0908296cb0d.chrono.890d372259739034-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.cipher-60fdde9c55b27371.cipher.fde9d9cbcfaa2714-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.color_quant-ecfe073c45cab525.color_quant.da4a122b9a8d3512-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.concurrent_queue-17cd0482ca78ee6c.concurrent_queue.2d265dc08648c205-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.core-693a8f23970c5917.core.f975038e3cc9791c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.cpufeatures-193651a44ffe939d.cpufeatures.1cd3e9bc948e17f3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.crc-c88473116323bda2.crc.bb20fac7cb3e3c5d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.crc32fast-9014348bda90451a.crc32fast.c8d138de8e546f26-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.crc_catalog-548e6569fc5338ac.crc_catalog.d49754a6576b5d87-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.crossbeam_utils-88bdfea3a8083ff4.crossbeam_utils.bb2eb5e81863194c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.crypto_common-d418a160e9b6dd5a.crypto_common.d36b19247ef5f4ca-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.crypto_secretbox-a1cba5c1cfc990f2.crypto_secretbox.2602a73a0f1724da-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ctr-c4396296b8279514.ctr.b0ae15a019657c28-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.curve25519_dalek-d44aa335569b6d41.curve25519_dalek.7b720422b8222726-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.data_encoding-c9dcfe2067695ffd.data_encoding.895080a8d1c8de2c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.deranged-bc35839bab162280.deranged.ca856356ab2146b5-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.digest-4859f2074dfbdffa.digest.15a66ee9a6bca242-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.env_logger-4ae1d8259e4049b2.env_logger.7c229594a658f87a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.event_listener-1b2c9a176a956664.event_listener.eeadee3b4fdece36-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.event_listener-266ffabcf792ac76.event_listener.63df5bf1448b2f66-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.event_listener-8c98e983414999df.event_listener.e143afafe42649b2-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.event_listener_strategy-1020c90b05338a3c.event_listener_strategy.54648ae705253750-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.event_listener_strategy-97aeb7c3c9eda9d6.event_listener_strategy.35b58a8bcc1a50fd-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.fastrand-48fa3c0d1ddf8da8.fastrand.12d6dae141541942-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.fastrand-fc36a556fd636719.fastrand.45b72b52f34f7b1d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.field_offset-fc4cf9c31e20e817.field_offset.208ec4c176d62c5-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.filetime-85681a6bd1f58c1c.filetime.62ee4bb28ee3a4db-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.fnv-c9bf347431266dfe.fnv.8e15e60e3ffced72-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.form_urlencoded-94027b9dde8cbc8e.form_urlencoded.531e35b82a8cbde9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures-bdd93adfe5b40475.futures.66a8f58a6d3409d9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_channel-a1663a2d487175ff.futures_channel.160047304d2fd4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_core-5076e5945de2921b.futures_core.601a04932b166f82-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_executor-f0d0e2698e494dc2.futures_executor.9c8e1eb518aba3c8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_io-260c83d5ef5c29df.futures_io.d4c6d2f2f5b4aa16-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_lite-3149eb0935e1380a.futures_lite.b289e25e857073b3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_lite-d9e618c619480933.futures_lite.b5a919ddc9495c52-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_ringbuf-82548cc4f0663cf4.futures_ringbuf.86b0f8e468d4b2c8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_sink-fc48d53878092645.futures_sink.9b2cc01bb17fade4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_task-d79c26bafa4dd263.futures_task.eb59479499b2704f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.futures_util-85d2458cb2fb2a99.futures_util.91ffdf2a5ffa5f33-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gdk4-7d8390cc854cf19a.gdk4.ce69c78d60a5515f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gdk4_sys-afb9a7ebdbdd64d6.gdk4_sys.f4b546f0866f7de0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gdk_pixbuf-4d63e034c6b6fe2e.gdk_pixbuf.a6e8c4871e313fe0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gdk_pixbuf_sys-fed455dc85c5cd9c.gdk_pixbuf_sys.9d53ee6c6ff30642-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.generic_array-866cbc506bbdc30c.generic_array.77a3d7ad8117f57c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.getrandom-f46df2b3007eb540.getrandom.8ba99e5086b9e8d8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gettext_sys-a5f407954c281c20.gettext_sys.486db2abb537f122-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gettextrs-12a0ccf9d2997325.gettextrs.a75f6bafdfc0852e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ghash-3b32bfe3503fb01f.ghash.bfff7807a7d01c9f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gimli-0c110dd0650d6cb7.gimli.36087d188bc776e5-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gimli-833a831d89d4dc34.gimli.a4027f74ccedd6c2-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gio-bc42c101f44b6037.gio.e13f327ca01551cc-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gio_sys-e0c18e93762d6419.gio_sys.f644bb8e2635954d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.glib-84a17256ae11a160.glib.b4e6ba1469acb47e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.glib_sys-fbba04f9aa1a0490.glib_sys.eca0f48dcb44ece3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gobject_sys-774802494e0a5585.gobject_sys.ced02f48d995debe-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.graphene-a40a4503410643ad.graphene.b0ffc9aa0c3f809f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.graphene_sys-4be734d29b4e8a0a.graphene_sys.e8e635da3b5a878d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gsk4-0b2aa8d24b046859.gsk4.c9efe342dda5d02-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gsk4_sys-dec0831b9a817a86.gsk4_sys.c02702e4fa6c4540-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gtk4-b053e0a8bf1fa57d.gtk4.5ea147cf06500010-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.gtk4_sys-1078a4588d534e3a.gtk4_sys.487c3967ae50dbb9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.hashbrown-ce1d65fb391ae98b.hashbrown.1a144147fa2fc225-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.hex-e6b7b89574be8629.hex.85175e2383619a89-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.hkdf-bc6478668c4f5942.hkdf.c713265b2816e3bf-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.hmac-723042c60c9a787d.hmac.1e819233cec6e9bf-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.http-d94466eea7a5421c.http.87ff3c03f4e7d90-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.httparse-0ba91edc10148f9d.httparse.668095fd228b1fe8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.humantime-2b552e96c257cc6e.humantime.c3bc8a5c6eda1047-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.iana_time_zone-29956ca856b66658.iana_time_zone.a6e448cf72e9d474-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.idna-3c1b47fa1710e66a.idna.c40f24f342dd68fe-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.if_addrs-07993fd8857c1676.if_addrs.d8d1c2d58f5a3f61-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.image-4cfad7b2f9cf8750.image.b3a9b6001013ef2e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.inout-91ec3e7a9abe78cd.inout.44ffa0067baffd73-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.io_lifetimes-dfacfa0198cee8bb.io_lifetimes.32e11854b24cea9c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.is_terminal-67d9e12cd84d212f.is_terminal.98960559faf19fe3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.itoa-4205791bd6fc45cc.itoa.48df650618ed261-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.kv_log_macro-8ad8f71374d10acd.kv_log_macro.c3f34690c976f77-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.lazy_static-615e7d805925aae0.lazy_static.acf453d63c4e2f52-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.libadwaita-c10648728b459a86.libadwaita.5476f661f4087063-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.libadwaita_sys-cf05bb12aea7f87d.libadwaita_sys.64a9c7c1584e3ad9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.libc-39c59240bfdfab27.libc.5fa70fceb6757751-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.libc-fc14cf4c38d43dfd.libc.6bbe61b7571aa47a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.linux_raw_sys-5f016ebfd7d00e5b.linux_raw_sys.ae77ff812b7eed98-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.linux_raw_sys-9753a3dae3d628cb.linux_raw_sys.5051d626bfa975f7-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.locale_config-8132be45686c09b7.locale_config.dd2c560b1c86b9ff-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.log-0d862f397cc07766.log.e40a1ee83af53cc-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.magic_wormhole-ef260cf09f1c9f7d.magic_wormhole.d5b0cda6a14d8775-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.md5-17e7ca6aefd1c267.md5.95fdd547ddfab207-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.memchr-516789932d161b4e.memchr.b009e2cf91a694e8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.memchr-5fda9bf654113685.memchr.cf608447359135f0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.memmap2-9c2949b3d9efe8f7.memmap2.4d0073c0397cf485-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.memoffset-6bb724b1642f1e21.memoffset.c02c5b3587cfd8bb-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.miniz_oxide-306712ebb1ee1a3f.miniz_oxide.51848a1bce63cc1e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.miniz_oxide-727f0acbb15ba57b.miniz_oxide.d0276141da020c1-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.noise_protocol-ade9c5aa230085f3.noise_protocol.1c85a862254acd9b-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.noise_rust_crypto-89a4ceb4795ec881.noise_rust_crypto.1df5a5401ade7ef7-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.num_integer-4fc80463f9c82f38.num_integer.ebb38e45a9d7818f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.num_iter-291d03d2bb004399.num_iter.21ca3685f5e1e9c9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.num_rational-20ca68cebc91bf54.num_rational.2042a622ee7c2451-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.num_traits-811919b570ecfded.num_traits.7587487693a69c9c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.object-31b9bcd85fff4a56.object.54aa3d8e308621e4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.object-dcd9be90ae2cb505.object.4762941d4af73d0a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.once_cell-e943d500e7391746.once_cell.873b79e2d7c28593-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.opaque_debug-3d04c581668137ff.opaque_debug.5027cdd27d565920-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.pango-a244b5fe174a0a41.pango.17ca8800b0fc5690-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.pango_sys-32f0f95aa2042798.pango_sys.27946374f552f5be-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.panic_unwind-a57e2388c0aea9b1.panic_unwind.d50f66e8b3b71335-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.parking-3f56ce76bdcc48d8.parking.863cf116186c6721-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.percent_encoding-ebfd7ed9d0688e5c.percent_encoding.294b9266ef7e79b2-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.pin_project-d74aaa112a1bade1.pin_project.b589b4873d9b64b1-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.pin_project_lite-b3a57d7db77c693d.pin_project_lite.c018065c721df0b9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.pin_utils-b1b30d06a6375d1f.pin_utils.ab6b989ca90da167-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.piper-ace6e63699c3f324.piper.f7eb66e527495815-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.polling-93f4fc8afbc26145.polling.db9601737b6928a5-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.polling-f1fec86cff3460d9.polling.f1e260c430478af-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.poly1305-674926801485e5d8.poly1305.23354f4b7832bc4e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.polyval-da96359347aad9f8.polyval.802eefef25c8f5da-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.powerfmt-9e41ee82eb5a2bd9.powerfmt.26641bd762cee4cd-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ppv_lite86-de534bba3670e52a.ppv_lite86.9ea92961d389c7f9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.pretty_env_logger-6725dbbf202b3029.pretty_env_logger.d36241d161782722-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.qrcode-a1edbcac9e666ba6.qrcode.33d3581668b196bb-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rand-f6bf7e39dd3eea29.rand.b894de097414227e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rand_chacha-f746ae3d904b9ddc.rand_chacha.9943b70d55950b78-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rand_core-35930ce91e24efeb.rand_core.c5f32bddf204d3ac-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.regex-b07272d46478dbef.regex.bbf7e9c34b672d43-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.regex_automata-f6d19f6cb00b0629.regex_automata.6e94bf32ced959c6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.regex_syntax-6a98e58b02e455c0.regex_syntax.f31af0fcd10a344b-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ringbuf-18036d76140166da.ringbuf.ab14c2b93da0eac8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rmp-61d0a88e59d265c4.rmp.ac4600ada46898d7-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rmp_serde-f6fa88fefbb1b4c8.rmp_serde.fedef31c3b8ecab5-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustc_demangle-a6e97aae2681ad8f.rustc_demangle.f1a9f4e325f293ca-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustc_demangle-d041fa4098068e07.rustc_demangle.bd67908a28f22eb9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustc_std_workspace_alloc-8933a2fb54d88492.rustc_std_workspace_alloc.177653e5628ba400-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustc_std_workspace_core-5af394d9b1f07bdc.rustc_std_workspace_core.ccb6847b0fb2dedc-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustix-6bc251b5e79cdac2.rustix.39f00dd78ff07b65-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustix-7310f64b026d9668.rustix.54f9a53b3027378-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustls-58410ec6bb28667a.rustls.dc6db0477b26c411-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ryu-ad6feef18aa2584b.ryu.38e887a9952d9484-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.salsa20-7a0c7a850d93a300.salsa20.8ac8c40a40375102-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.sct-3423717f7177a953.sct.bbba06016a40ffb1-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.serde-e30ee52167d9f6e8.serde.469ab1960006241e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.serde_json-3b561ce1f19fb00c.serde_json.3dd4dadb1007822e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.sha1-632d651aa1dbd833.sha1.99b5da05c065d72f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.sha1-c5a66eb12b35f981.sha1.61f3a718207b44e6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.sha2-0317307641317a1b.sha2.7fe0703a0db2d76f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.signal_hook_registry-b20b656ee3083654.signal_hook_registry.d182506e6387a9a4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.simple_moving_average-3ed5f7fb80ac94fe.simple_moving_average.bf0a87f03f630e12-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.slab-08857f052823c46d.slab.938fcf85f1b1e865-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.smallvec-5e505e29e41c3d46.smallvec.62b1a351039a8373-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.smol-1e7ab6898825893a.smol.eb3293870f2777e8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.socket2-39bf3b7565016342.socket2.39e087cd8a8aad61-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.socket2-68befbbe31a2850d.socket2.74443a2fadb6acb3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.spake2-430ba55bdc4133e9.spake2.6bdc28b33bdf9c94-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.spin-976c87c545c7287b.spin.9242f51c9077ac60-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.spin-a99e76adc4346539.spin.3dc802127b8d26a6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.std-66d8041607d2929b.std.79729d9c385e1623-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.std_detect-b93dac2525ec4d1e.std_detect.cfb6a8ee331a98b3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.stun_codec-6384c2cda8698a5c.stun_codec.a62fabc15062381d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.subtle-35b55b94ec2ed33d.subtle.b470038b69f7a669-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.tempfile-e10549bc8bc891f8.tempfile.d43e3abeef0d421a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.termcolor-8c9b758920616054.termcolor.1a67aca0f2f68f4d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.thiserror-c88721651613ba7f.thiserror.9fbeb43831f551c4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.time-92f7262f995bf681.time.e726165e5ef0b0a9-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.time_core-a00dd869176bb99c.time_core.f382eda088dd59f8-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.tinyvec-501f82e7bf3b6443.tinyvec.4c849f7080ec792d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.tinyvec_macros-db48b1e6d9fd8fe4.tinyvec_macros.292f7daeb9b4b382-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.tracing-77270f7183648e45.tracing.5316faa57a1ecd02-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.tracing_core-bf3e8e6828d3ad79.tracing_core.bbb80c1df9ee5ef-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.trackable-4eca1870be5a7221.trackable.e95d30ddb60deb5b-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.trackable-a41a0f4aec0c128e.trackable.5d1fab3b10e0a8a6-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.tungstenite-2a1ba96650a8edab.tungstenite.9ebf6970f4e7407a-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.typenum-878972c532060e9b.typenum.d7a5370d670010c0-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.unicode_bidi-44d81bca101f830f.unicode_bidi.833f8fe2629ac351-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.unicode_normalization-ffef89a0e6f8f5af.unicode_normalization.b20d98146e0fee32-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.universal_hash-fccd0e725e394191.universal_hash.458ed9b45767dc41-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.untrusted-5dbb2b7afd335288.untrusted.c5fbf26f1977bf5f-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.untrusted-d92b29064c349fcc.untrusted.d146b9eb4e299339-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.unwind-65c422a3ad95273d.unwind.1d13250ad3d51879-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.url-6009c7f2771522b9.url.251b8e1da1fc7e39-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.urlencoding-a8e663227a9f55bc.urlencoding.1b1708664e6771a3-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.utf8-2428229c6e195ed7.utf8.2302b837a506fd2c-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.value_bag-2651822c3b32fc2f.value_bag.7bc200736fc5f1f4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.waker_fn-c58423f70726af2c.waker_fn.382d7c709afbeae4-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.warp.19cc8cc2b9ceffe-cgu.0.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.webpki-f06949d547796a05.webpki.4fed8a59c604f523-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.webpki_roots-3f310064fb83d33b.webpki_roots.ba732ed2ca25d541-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.x25519_dalek-7382b333c48d0331.x25519_dalek.12d8e23be6124f7e-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.xattr-cd88196cc4afa039.xattr.f273aef7aca4850d-cgu.0.rcgu.o.rcgu.o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.zeroize-a1ca08b8689b0c86.zeroize.4fb4dfa63e5efc28-cgu.0.rcgu.o.rcgu.o" "-Wl,--as-needed" "-L" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps" "-L" "/home/olk/.cache/paru/clone/warp/src/build/src/release/build/ring-3bd716d6c1393ae7/out" "-L" "/home/olk/.cache/paru/clone/warp/src/build/src/release/build/ring-709eec882a9b921e/out" "-L" "/home/olk/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib" "/tmp/rustcObGVON/libring-c941f876e1955683.rlib" "/home/olk/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-13fc9d1ed9c7a2bc.rlib" "-Wl,-Bdynamic" "-lgobject-2.0" "-lgtk-4" "-lharfbuzz" "-lpangocairo-1.0" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lcairo-gobject" "-lcairo" "-lgraphene-1.0" "-lgio-2.0" "-lglib-2.0" "-lgobject-2.0" "-ladwaita-1" "-lharfbuzz" "-lpangocairo-1.0" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lcairo-gobject" "-lcairo" "-lgraphene-1.0" "-lgio-2.0" "-lglib-2.0" "-lgobject-2.0" "-lgtk-4" "-lharfbuzz" "-lpangocairo-1.0" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lcairo-gobject" "-lcairo" "-lgraphene-1.0" "-lgio-2.0" "-lglib-2.0" "-lgobject-2.0" "-lgtk-4" "-lgraphene-1.0" "-lgobject-2.0" "-lglib-2.0" "-lharfbuzz" "-lpangocairo-1.0" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lcairo-gobject" "-lcairo" "-lgraphene-1.0" "-lgio-2.0" "-lglib-2.0" "-lgobject-2.0" "-lgtk-4" "-lgobject-2.0" "-lglib-2.0" "-lgdk_pixbuf-2.0" "-lgobject-2.0" "-lglib-2.0" "-lharfbuzz" "-lpango-1.0" "-lcairo" "-lgobject-2.0" "-lglib-2.0" "-lcairo-gobject" "-lgobject-2.0" "-lglib-2.0" "-lgio-2.0" "-lglib-2.0" "-lgobject-2.0" "-lglib-2.0" "-lgobject-2.0" "-lgcc_s" "-lutil" "-lrt" "-lpthread" "-lm" "-ldl" "-lc" "-Wl,--eh-frame-hdr" "-Wl,-z,noexecstack" "-L" "/home/olk/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-o" "/home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea" "-Wl,--gc-sections" "-pie" "-Wl,-z,relro,-z,now" "-Wl,-O1" "-Wl,--strip-all" "-nodefaultlibs"
  = note: /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::constant_time::verify_slices_are_equal':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/constant_time.rs:27:(.text._ZN4ring4aead12open_within_11open_within17haf06f78af0a46984E+0x6d): undefined reference to `GFp_memcmp'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN118_$LT$ring..aead..UnboundKey$u20$as$u20$core..convert..From$LT$ring..hkdf..Okm$LT$$RF$ring..aead..Algorithm$GT$$GT$$GT$4from17h575fec60a68fc3f1E+0x77): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm4init17h06d76c6992e6b18fE+0x74): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::set_encrypt_key':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:40:(.text._ZN4ring4aead7aes_gcm4init17h06d76c6992e6b18fE+0xc6): undefined reference to `GFp_aes_nohw_set_encrypt_key'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:64:(.text._ZN4ring4aead7aes_gcm4init17h06d76c6992e6b18fE+0x218): undefined reference to `GFp_aes_nohw_encrypt'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x193): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::gcm::detect_implementation':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/gcm.rs:313:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x1c6): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x2af): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::ctr32_encrypt_blocks_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:109:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x304): undefined reference to `GFp_aes_nohw_ctr32_encrypt_blocks'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x376): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:64:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x405): undefined reference to `GFp_aes_nohw_encrypt'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x4c5): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:64:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h22d768a9f8921141E+0x554): undefined reference to `GFp_aes_nohw_encrypt'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x19b): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::gcm::detect_implementation':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/gcm.rs:313:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x1c9): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::ctr32_encrypt_blocks_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:109:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x25c): undefined reference to `GFp_aes_nohw_ctr32_encrypt_blocks'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x2fd): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x413): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:64:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x4a2): undefined reference to `GFp_aes_nohw_encrypt'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x509): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/aes.rs:64:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17h6fb84e54df4f362aE+0x598): undefined reference to `GFp_aes_nohw_encrypt'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x37): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::poly1305::Context::from_key':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:92:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x16d): undefined reference to `GFp_poly1305_init'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::poly1305::Context::update':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x1a9): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x1ed): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x248): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x28c): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x2bc): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::poly1305::Context::finish':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:112:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17hd8d926c9eca92dc3E+0x2e7): undefined reference to `GFp_poly1305_finish'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x3b): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::poly1305::Context::from_key':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:92:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x17c): undefined reference to `GFp_poly1305_init'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::poly1305::Context::update':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x1b8): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x1fc): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x234): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x278): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:103:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x2d7): undefined reference to `GFp_poly1305_update'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::aead::poly1305::Context::finish':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/aead/poly1305.rs:112:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17hd424687ad393479cE+0x302): undefined reference to `GFp_poly1305_finish'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead3gcm7Context13update_blocks17hf430c680c0f23575E+0x9): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:320:(.text._ZN4ring4aead3gcm7Context12update_block17hb65bbd51d35043fcE+0x25): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN4ring9agreement19EphemeralPrivateKey8generate17h3f4fb911f19c629dE+0x3a): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN4ring6digest6digest17h24fcd8b512923adfE+0x3d): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::scalar::MaskedScalar::from_bytes_masked':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/curve25519/scalar.rs:66:(.text._ZN4ring2ec10curve255196x2551926x25519_public_from_private17hf0608f23eab0a5d2E+0x35): undefined reference to `GFp_x25519_sc_mask'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::x25519::x25519_public_from_private':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/curve25519/x25519.rs:86:(.text._ZN4ring2ec10curve255196x2551926x25519_public_from_private17hf0608f23eab0a5d2E+0x51): undefined reference to `GFp_x25519_public_from_private_generic_masked'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::scalar::MaskedScalar::from_bytes_masked':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/curve25519/scalar.rs:66:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17hec70e79743eb1994E+0x44): undefined reference to `GFp_x25519_sc_mask'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::x25519::x25519_ecdh::scalar_mult':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/curve25519/x25519.rs:127:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17hec70e79743eb1994E+0x6f): undefined reference to `GFp_x25519_scalar_mult_generic_masked'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::constant_time::verify_slices_are_equal':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/constant_time.rs:27:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17hec70e79743eb1994E+0x8c): undefined reference to `GFp_memcmp'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_equal_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:64:(.text._ZN4ring2ec7suite_b4ecdh4ecdh17hd0a15b830190a4a9E+0x3b4): undefined reference to `LIMBS_equal'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::p256::p256_point_mul_base_impl':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/suite_b/ops/p256.rs:142:(.text._ZN4ring2ec7suite_b3ops4p25624p256_point_mul_base_impl17h29f56cb52a5414ecE+0x34): undefined reference to `GFp_nistz256_point_mul_base'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::p384::GFp_p384_elem_sqr_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/suite_b/ops/p384.rs:333:(.text._ZN4ring2ec7suite_b3ops4p38421p384_elem_inv_squared17hd70caca707471167E+0x29): undefined reference to `GFp_p384_elem_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::PrivateKeyOps::point_mul':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/suite_b/ops.rs:188:(.text._ZN4ring2ec7suite_b3ops4p38424p384_point_mul_base_impl17h61e12b4db9d881b3E+0x42): undefined reference to `GFp_nistz384_point_mul'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::p384::GFp_p384_elem_sqr_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/suite_b/ops/p384.rs:333:(.text._ZN4ring2ec7suite_b3ops4p38422GFp_p384_elem_sqr_mont17hb6f119fdd0530f05E+0x5): undefined reference to `GFp_p384_elem_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:86:(.text._ZN4ring2ec7suite_b11private_key20affine_from_jacobian17h158557b0c98f5a75E+0x9b): undefined reference to `LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_equal_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:64:(.text._ZN4ring2ec7suite_b11private_key20affine_from_jacobian17h158557b0c98f5a75E+0x346): undefined reference to `LIMBS_equal'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN4ring4hmac3Key3new17h235c8fb6d9d192a0E+0x3e): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN4ring4hmac3Key3new17h235c8fb6d9d192a0E+0xb6): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN4ring4hmac3Key3new17h235c8fb6d9d192a0E+0x153): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:70:(.text._ZN4ring4limb43parse_big_endian_in_range_and_pad_consttime17h7a6a66f12f0340a3E+0x138): undefined reference to `LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:86:(.text._ZN4ring4limb43parse_big_endian_in_range_and_pad_consttime17h7a6a66f12f0340a3E+0x152): undefined reference to `LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve28p256_check_private_key_bytes17h82a7e0039125a6e5E+0x179): undefined reference to `LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve28p256_check_private_key_bytes17h82a7e0039125a6e5E+0x194): undefined reference to `LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve25p256_generate_private_key17hed5a62cb70e0a487E+0x1c9): undefined reference to `LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve25p256_generate_private_key17hed5a62cb70e0a487E+0x1e1): undefined reference to `LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve28p384_check_private_key_bytes17h3c365db8bb6249b7E+0x213): undefined reference to `LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve28p384_check_private_key_bytes17h3c365db8bb6249b7E+0x22e): undefined reference to `LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve25p384_generate_private_key17hd8d40407baa996fcE+0x260): undefined reference to `LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve25p384_generate_private_key17hd8d40407baa996fcE+0x278): undefined reference to `LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p25615PRIVATE_KEY_OPS17h4c449eda51d40ed1E+0x18): undefined reference to `GFp_nistz256_point_mul'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o:/usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/ec/suite_b/ops/p384.rs:27:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h6523d291ad633872E+0x0): undefined reference to `GFp_p384_elem_add'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h6523d291ad633872E+0x8): undefined reference to `GFp_p384_elem_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h6523d291ad633872E+0x18): undefined reference to `GFp_nistz384_point_add'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-c941f876e1955683.ring.204b55094a2d0e43-cgu.0.rcgu.o.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38415PRIVATE_KEY_OPS17hee890017901322a3E+0x18): undefined reference to `GFp_nistz384_point_mul'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::PrivateKeyOps::point_mul':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:187:(.text._ZN4core3ops8function6FnOnce9call_once17h3c93187528a7024eE.llvm.9710504421781115424+0x49): undefined reference to `ring_core_0_17_6_p384_point_mul'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::CommonOps::point_sum':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:134:(.text._ZN4core3ops8function6FnOnce9call_once17h3c93187528a7024eE.llvm.9710504421781115424+0x157): undefined reference to `ring_core_0_17_6_p384_point_add'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu.rs:51:(.text.unlikely._ZN4spin4once17Once$LT$T$C$R$GT$18try_call_once_slow17h42419552ba98b070E+0x14): undefined reference to `ring_core_0_17_6_OPENSSL_cpuid_setup'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x193): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::ops::ExtPoint::from_encoded_point_vartime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:101:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x1e2): undefined reference to `ring_core_0_17_6_x25519_ge_frombytes_vartime'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::ops::Elem<ring::ec::curve25519::ops::T>::negate':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:52:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x23f): undefined reference to `ring_core_0_17_6_x25519_fe_neg'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::scalar::Scalar::from_sha512_digest_reduced':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/scalar.rs:51:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x43b): undefined reference to `ring_core_0_17_6_x25519_sc_reduce'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `<ring::ec::curve25519::ed25519::verification::EdDSAParameters as ring::signature::VerificationAlgorithm>::verify':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ed25519/verification.rs:65:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x49a): undefined reference to `ring_core_0_17_6_x25519_ge_double_scalarmult_vartime'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::curve25519::ops::encode_point':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:141:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x54b): undefined reference to `ring_core_0_17_6_x25519_fe_invert'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:144:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x56b): undefined reference to `ring_core_0_17_6_x25519_fe_mul_ttt'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:148:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x5c6): undefined reference to `ring_core_0_17_6_x25519_fe_tobytes'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:150:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17haeb96676ce892787E+0x5cf): undefined reference to `ring_core_0_17_6_x25519_fe_isnegative'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_add_assign_mod':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:328:(.text._ZN4ring2ec7suite_b42verify_affine_point_is_on_the_curve_scaled17h1b07228a19b508b8E+0xa2): undefined reference to `ring_core_0_17_6_LIMBS_add_mod'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_equal_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:64:(.text._ZN4ring2ec7suite_b42verify_affine_point_is_on_the_curve_scaled17h1b07228a19b508b8E+0xee): undefined reference to `ring_core_0_17_6_LIMBS_equal'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_reduce_once_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:135:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h803953039f324279E+0x304): undefined reference to `ring_core_0_17_6_LIMBS_reduce_once'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h803953039f324279E+0x846): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h803953039f324279E+0x9ca): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h803953039f324279E+0xdba): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_add_assign_mod':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:328:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h803953039f324279E+0xe01): undefined reference to `ring_core_0_17_6_LIMBS_add_mod'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::p256::point_mul_base_vartime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p256.rs:152:(.text._ZN4ring2ec7suite_b3ops4p25617twin_mul_nistz25617h188e929c0fe52a02E+0x3e): undefined reference to `ring_core_0_17_6_p256_point_mul_base_vartime'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::PrivateKeyOps::point_mul':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:187:(.text._ZN4ring2ec7suite_b3ops4p25617twin_mul_nistz25617h188e929c0fe52a02E+0xbf): undefined reference to `ring_core_0_17_6_p256_point_mul'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::elem::binary_op':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/elem.rs:84:(.text._ZN4ring2ec7suite_b3ops4p38423p384_scalar_inv_to_mont17h0a9b8bdc93882903E+0xa2): undefined reference to `ring_core_0_17_6_p384_scalar_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::elem::binary_op':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/elem.rs:84:(.text._ZN4ring2ec7suite_b3ops4p38423p384_scalar_inv_to_mont17h0a9b8bdc93882903E+0xa88): undefined reference to `ring_core_0_17_6_p384_scalar_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::ec::suite_b::ops::p384::p384_elem_sqr_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p384.rs:278:(.text._ZN4ring2ec7suite_b3ops4p38418p384_elem_sqr_mont17h9c1521f63341a41cE+0x5): undefined reference to `ring_core_0_17_6_p384_elem_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_minimal_bits':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:118:(.text._ZN4ring4limb18limbs_minimal_bits17hd7a444158d3d1e77E+0x7f): undefined reference to `ring_core_0_17_6_LIMB_shr'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring4limb43parse_big_endian_in_range_and_pad_consttime17h51c1deefa0b5fc70E+0x163): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring4limb43parse_big_endian_in_range_and_pad_consttime17h51c1deefa0b5fc70E+0x17f): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_even_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:92:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x26d): undefined reference to `ring_core_0_17_6_LIMBS_are_even'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limb_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:81:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x285): undefined reference to `ring_core_0_17_6_LIMBS_less_than_limb'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::arithmetic::bigint::modulus::OwnedModulus<M>::from_be_bytes':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/arithmetic/bigint/modulus.rs:129:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x298): undefined reference to `ring_core_0_17_6_bn_neg_inv_mod_r_u64'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `<core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next':
          /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/iter/range.rs:729:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x42a): undefined reference to `ring_core_0_17_6_LIMBS_shl_mod'
          /usr/bin/ld: /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/iter/range.rs:729:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x44c): undefined reference to `ring_core_0_17_6_LIMBS_shl_mod'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x7d0): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring3rsa12verification11verify_rsa_17h5f90059a068b3f9cE+0x80c): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o:/usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p384.rs:20:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h6248976d8c0c0819E+0x0): undefined reference to `ring_core_0_17_6_p384_elem_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h6248976d8c0c0819E+0x10): undefined reference to `ring_core_0_17_6_p384_point_add'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.ring-eb3eaa3a86e756e3.ring.25fd355ba5d4600a-cgu.0.rcgu.o.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410SCALAR_OPS17h1f04d8627f2ed6d8E+0x10): undefined reference to `ring_core_0_17_6_p384_scalar_mul_mont'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustls-58410ec6bb28667a.rustls.dc6db0477b26c411-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN6rustls4conn11CommonState22start_encryption_tls1217h03c42b54ea479549E+0x152): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN6rustls4conn11CommonState22start_encryption_tls1217h03c42b54ea479549E+0x1fc): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN6rustls7hash_hs19HandshakeHashBuffer10start_hash17hd87f41e932cbb5cfE+0x38): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN6rustls6client2hs27emit_client_hello_for_retry17hc09607a16507a912E+0x1fee): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/cpu.rs:46:(.text._ZN6rustls6client2hs27emit_client_hello_for_retry17hc09607a16507a912E+0x2a80): undefined reference to `GFp_cpuid_setup'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.rustls-58410ec6bb28667a.rustls.dc6db0477b26c411-cgu.0.rcgu.o.rcgu.o: in function `ring::constant_time::verify_slices_are_equal':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/constant_time.rs:27:(.text._ZN134_$LT$rustls..client..tls12..ExpectFinished$u20$as$u20$rustls..conn..State$LT$rustls..client..client_conn..ClientConnectionData$GT$$GT$6handle17hcd651c68496f795dE+0x283): undefined reference to `GFp_memcmp'
          /usr/bin/ld: /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/src/constant_time.rs:27:(.text._ZN134_$LT$rustls..client..tls13..ExpectFinished$u20$as$u20$rustls..conn..State$LT$rustls..client..client_conn..ClientConnectionData$GT$$GT$6handle17hd7b75a74e9c6fe18E+0x29d): undefined reference to `GFp_memcmp'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.sct-3423717f7177a953.sct.bbba06016a40ffb1-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu.rs:51:(.text.unlikely._ZN4spin4once17Once$LT$T$C$R$GT$18try_call_once_slow17hc049dbe4d952c05bE+0x14): undefined reference to `ring_core_0_17_6_OPENSSL_cpuid_setup'
          /usr/bin/ld: /home/olk/.cache/paru/clone/warp/src/build/src/release/deps/warp-ba750232a752c7ea.webpki-f06949d547796a05.webpki.4fed8a59c604f523-cgu.0.rcgu.o.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu.rs:51:(.text.unlikely._ZN4spin4once17Once$LT$T$C$R$GT$18try_call_once_slow17hf8d49086d5eeb304E.llvm.13322153005081695284+0x14): undefined reference to `ring_core_0_17_6_OPENSSL_cpuid_setup'
          /usr/bin/ld: /tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib(9179ce3bcd776af9-x86_64-mont-elf.o): in function `ring_core_0_17_6_bn_mul_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont-elf.S:26:(.text+0x1c): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib(9179ce3bcd776af9-x86_64-mont-elf.o): in function `bn_sqr8x_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont-elf.S:788:(.text+0x8b7): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib(9179ce3bcd776af9-x86_64-mont5-elf.o): in function `ring_core_0_17_6_bn_mul_mont_gather5':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont5-elf.S:24:(.text+0x16): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib(9179ce3bcd776af9-x86_64-mont5-elf.o): in function `ring_core_0_17_6_bn_power5':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont5-elf.S:1100:(.text+0xf4a): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib(9179ce3bcd776af9-p256-x86_64-asm-elf.o): in function `ring_core_0_17_6_p256_scalar_mul_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/p256-x86_64-asm-elf.S:105:(.text+0x87): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-eb3eaa3a86e756e3.rlib(9179ce3bcd776af9-p256-x86_64-asm-elf.o):/usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/p256-x86_64-asm-elf.S:440: more undefined references to `ring_core_0_17_6_OPENSSL_ia32cap_P' follow
          /usr/bin/ld: /tmp/rustcObGVON/libring-c941f876e1955683.rlib(aesni-x86_64-elf.o): in function `GFp_aes_hw_ctr32_encrypt_blocks':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/pregenerated/aesni-x86_64-elf.S:363:(.text+0x4af): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-c941f876e1955683.rlib(aesni-x86_64-elf.o): in function `GFp_aes_hw_set_encrypt_key':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/pregenerated/aesni-x86_64-elf.S:869:(.text+0xcf6): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-c941f876e1955683.rlib(chacha-x86_64-elf.o): in function `GFp_ChaCha20_ctr32':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/pregenerated/chacha-x86_64-elf.S:53:(.text+0x20d): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-c941f876e1955683.rlib(p256-x86_64-asm-elf.o): in function `GFp_p256_scalar_mul_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/pregenerated/p256-x86_64-asm-elf.S:152:(.text+0x1e3): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-c941f876e1955683.rlib(p256-x86_64-asm-elf.o): in function `GFp_p256_scalar_sqr_rep_mont':
          /usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/pregenerated/p256-x86_64-asm-elf.S:486:(.text+0x543): undefined reference to `GFp_ia32cap_P'
          /usr/bin/ld: /tmp/rustcObGVON/libring-c941f876e1955683.rlib(p256-x86_64-asm-elf.o):/usr/src/debug/warp/build/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/ring-0.16.20/pregenerated/p256-x86_64-asm-elf.S:1245: more undefined references to `GFp_ia32cap_P' follow
          collect2: error: ld returned 1 exit status
          
  = note: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified
  = note: use the `-l` flag to specify native libraries to link
  = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname)

error: could not compile `warp` (bin "warp") due to 1 previous error
FAILED: src/warp 
/usr/bin/env CARGO_HOME=/home/olk/.cache/paru/clone/warp/src/build/cargo-home LOCALEDIR=/usr/share/locale /usr/bin/cargo build --manifest-path /home/olk/.cache/paru/clone/warp/src/warp-v0.6.2/Cargo.toml --target-dir /home/olk/.cache/paru/clone/warp/src/build/src --features meson --release && cp src/release/warp src/warp
ninja: build stopped: subcommand failed.
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'warp-0.6.2-1': 
checking dependencies...

Packages (1) itstool-1:2.0.7-1

Total Removed Size:  0.09 MiB

:: Do you want to remove these packages? [Y/n] 
:: Processing package changes...
(1/1) removing itstool                                                                                 [############################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
error: packages failed to build: warp-0.6.2-1