Building QT 6.2.2 for iOS

I built QT 6.2.2. for MacOS first and then configured QT 6.2.2 for iOS as follows:

1
2
3
4
5
6
7
./configure -c++std c++20 -opensource -confirm-license -no-openssl -securetransport -DQT_NO_EXCEPTIONS=1 \
  -platform macx-ios-clang -release -qt-host-path /usr/local/Qt-6.2.2 -prefix /usr/local/Qt-6.2.2-ios \
  -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity \
  -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua \
  -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects \
  -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland \
  -skip qtwebchannel -skip qtwebengine -skip qtwebview

it printed the following:

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
+ mkdir -p qtbase
+ cd qtbase
+ exec /Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/configure -top-level -c++std c++20 -opensource -confirm-license -no-openssl -securetransport -DQT_NO_EXCEPTIONS=1 -platform macx-ios-clang -release -qt-host-path /usr/local/Qt-6.2.2 -prefix /usr/local/Qt-6.2.2-ios -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebview
'/usr/local/Cellar/cmake/3.22.1/bin/cmake' '-DQT_HOST_PATH=/usr/local/Qt-6.2.2' '-DBUILD_qt3d=OFF' '-DBUILD_qt5compat=OFF' '-DBUILD_qtactiveqt=OFF' '-DBUILD_qtcharts=OFF' '-DBUILD_qtcoap=OFF' '-DBUILD_qtconnectivity=OFF' '-DBUILD_qtdatavis3d=OFF' '-DBUILD_qtdoc=OFF' '-DBUILD_qtlottie=OFF' '-DBUILD_qtmqtt=OFF' '-DBUILD_qtnetworkauth=OFF' '-DBUILD_qtopcua=OFF' '-DBUILD_qtserialport=OFF' '-DBUILD_qtpositioning=OFF' '-DBUILD_qtquicktimeline=OFF' '-DBUILD_qtquick3d=OFF' '-DBUILD_qtremoteobjects=OFF' '-DBUILD_qtscxml=OFF' '-DBUILD_qtsensors=OFF' '-DBUILD_qtserialbus=OFF' '-DBUILD_qtvirtualkeyboard=OFF' '-DBUILD_qtwayland=OFF' '-DBUILD_qtwebchannel=OFF' '-DBUILD_qtwebengine=OFF' '-DBUILD_qtwebview=OFF' '-DCMAKE_INSTALL_PREFIX=/usr/local/Qt-6.2.2-ios' '-DQT_QMAKE_TARGET_MKSPEC=macx-ios-clang' '-DCMAKE_C_COMPILER=clang' '-DCMAKE_CXX_COMPILER=clang++' '-DCMAKE_SYSTEM_NAME=iOS' '-DCMAKE_BUILD_TYPE=Release' '-DQT_EXTRA_DEFINES=QT_NO_EXCEPTIONS=1' '-DINPUT_cxx14=yes' '-DINPUT_cxx17=yes' '-DINPUT_cxx20=yes' '-DINPUT_openssl=no' '-DINPUT_securetransport=yes' '-G' 'Unix Makefiles' '/Users/admin/repos/qt-everywhere-src-6.2.2'
CMake Warning at qtbase/cmake/QtAutoDetect.cmake:65 (message):
  The officially supported CMake generator for building Qt is Ninja.  You are
  using: 'Unix Makefiles' instead.  Thus, you might encounter issues.  Use at
  your own risk.
Call Stack (most recent call first):
  qtbase/cmake/QtAutoDetect.cmake:439 (qt_auto_detect_cmake_generator)
  CMakeLists.txt:11 (include)
 
 
-- Using internal CMake iOS toolchain file.
-- simulator_and_device set to: "ON".
-- The CXX compiler identification is AppleClang 13.0.0.13000029
-- The C compiler identification is AppleClang 13.0.0.13000029
-- The ASM compiler identification is Clang with GNU-like command-line
-- Found assembler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
Checking dependencies of 'qtbase'
Checking dependencies of 'qtshadertools'
Checking dependencies of 'qtsvg'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qttools'
Skipping optional dependency 'qtactiveqt' of 'qttools', because building 'qtactiveqt' was explicitly disabled.
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtwebsockets'
Configuring 'qtbase'
-- Check for feature set changes
-- Looking for a OBJC compiler
-- Looking for a OBJC compiler - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
-- The OBJC compiler identification is AppleClang 13.0.0.13000029
-- Detecting OBJC compiler ABI info
-- Detecting OBJC compiler ABI info - done
-- Check for working OBJC compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang - skipped
-- Looking for a OBJCXX compiler
-- Looking for a OBJCXX compiler - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
-- The OBJCXX compiler identification is AppleClang 13.0.0.13000029
-- Detecting OBJCXX compiler ABI info
-- Detecting OBJCXX compiler ABI info - done
-- Check for working OBJCXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ - skipped
-- Building architecture extraction project with the following CMake arguments:
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=/Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms
    -DCMAKE_OSX_ARCHITECTURES:STRING=arm64
-- Extracting architecture info from /Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/config.tests/arch/architecture_test.
-- Performing Test HAVE_LD_VERSION_SCRIPT
-- Performing Test HAVE_LD_VERSION_SCRIPT - Failed
-- CMAKE_OSX_ARCHITECTURES: "arm64;x86_64"
-- CMAKE_OSX_SYSROOT: "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk"
-- CMAKE_OSX_DEPLOYMENT_TARGET: "13.0"
-- QT_MAC_SDK_VERSION: "12.1"
-- QT_MAC_XCODE_VERSION: "Xcode 13.2.1 Build version 13C100"
-- Configure tests main architecture (in multi-arch build): "arm64"
-- CMAKE_VERSION: "3.22.1"
-- CMAKE_HOST_SYSTEM: "Darwin-20.6.0"
-- CMAKE_HOST_SYSTEM_NAME: "Darwin"
-- CMAKE_HOST_SYSTEM_VERSION: "20.6.0"
-- CMAKE_HOST_SYSTEM_PROCESSOR: "x86_64"
-- CMAKE_SYSTEM: "iOS"
-- CMAKE_SYSTEM_NAME: "iOS"
-- CMAKE_SYSTEM_VERSION: ""
-- CMAKE_SYSTEM_PROCESSOR: ""
-- CMAKE_CROSSCOMPILING: "TRUE"
-- CMAKE_C_COMPILER: "/usr/bin/clang" (13.0.0.13000029)
-- CMAKE_CXX_COMPILER: "/usr/bin/clang++" (13.0.0.13000029)
-- CMAKE_OBJC_COMPILER: "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" (13.0.0.13000029)
-- CMAKE_OBJCXX_COMPILER: "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" (13.0.0.13000029)
-- Found ZLIB: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/libz.tbd (found suitable version "1.2.11", minimum required is "1.0.8")
-- Found WrapZLIB: TRUE (Required is at least version "1.0.8")
-- Could NOT find ZSTD: Found unsuitable version "", but required is at least "1.3" (found ZSTD_LIBRARY-NOTFOUND)
-- Could NOT find WrapDBus1 (missing: DBus1_LIBRARY DBus1_INCLUDE_DIR WrapDBus1_FOUND) (Required is at least version "1.2")
-- Performing Test HAVE_cxx14
-- Performing Test HAVE_cxx14 - Success
-- Performing Test HAVE_cxx17
-- Performing Test HAVE_cxx17 - Success
-- Performing Test HAVE_cxx20
-- Performing Test HAVE_cxx20 - Success
-- Performing Test precompiled header support
-- Performing Test precompiled header support - Success
-- Performing Test TEST_use_bfd_linker
-- Performing Test TEST_use_bfd_linker - Success
-- Performing Test TEST_use_gold_linker
-- Performing Test TEST_use_gold_linker - Success
-- Performing Test TEST_use_lld_linker
-- Performing Test TEST_use_lld_linker - Success
-- Performing Test TEST_optimize_debug
-- Performing Test TEST_optimize_debug - Success
-- Performing Test TEST_enable_new_dtags
-- Performing Test TEST_enable_new_dtags - Failed
-- Performing Test TEST_gdb_index
-- Performing Test TEST_gdb_index - Failed
-- Performing Test HAVE_reduce_relocations
-- Performing Test HAVE_reduce_relocations - Failed
-- Performing Test separate debug information support
-- Performing Test separate debug information support - Success
-- Performing Test HAVE_signaling_nan
-- Performing Test HAVE_signaling_nan - Success
-- Performing SIMD Test SSE2 instructions
-- Performing SIMD Test SSE2 instructions - Failed
-- Performing SIMD Test SSE3 instructions
-- Performing SIMD Test SSE3 instructions - Failed
-- Performing SIMD Test SSSE3 instructions
-- Performing SIMD Test SSSE3 instructions - Failed
-- Performing SIMD Test SSE4.1 instructions
-- Performing SIMD Test SSE4.1 instructions - Failed
-- Performing SIMD Test SSE4.2 instructions
-- Performing SIMD Test SSE4.2 instructions - Failed
-- Performing SIMD Test AES new instructions
-- Performing SIMD Test AES new instructions - Failed
-- Performing SIMD Test F16C instructions
-- Performing SIMD Test F16C instructions - Failed
-- Performing SIMD Test RDRAND instruction
-- Performing SIMD Test RDRAND instruction - Failed
-- Performing SIMD Test RDSEED instruction
-- Performing SIMD Test RDSEED instruction - Failed
-- Performing SIMD Test SHA new instructions
-- Performing SIMD Test SHA new instructions - Failed
-- Performing SIMD Test AVX instructions
-- Performing SIMD Test AVX instructions - Failed
-- Performing SIMD Test AVX2 instructions
-- Performing SIMD Test AVX2 instructions - Failed
-- Performing SIMD Test AVX512 F instructions
-- Performing SIMD Test AVX512 F instructions - Failed
-- Performing SIMD Test AVX512 ER instructions
-- Performing SIMD Test AVX512 ER instructions - Failed
-- Performing SIMD Test AVX512 CD instructions
-- Performing SIMD Test AVX512 CD instructions - Failed
-- Performing SIMD Test AVX512 PF instructions
-- Performing SIMD Test AVX512 PF instructions - Failed
-- Performing SIMD Test AVX512 DQ instructions
-- Performing SIMD Test AVX512 DQ instructions - Failed
-- Performing SIMD Test AVX512 BW instructions
-- Performing SIMD Test AVX512 BW instructions - Failed
-- Performing SIMD Test AVX512 VL instructions
-- Performing SIMD Test AVX512 VL instructions - Failed
-- Performing SIMD Test AVX512 IFMA instructions
-- Performing SIMD Test AVX512 IFMA instructions - Failed
-- Performing SIMD Test AVX512 VBMI instructions
-- Performing SIMD Test AVX512 VBMI instructions - Failed
-- Performing Test HAVE_posix_fallocate
-- Performing Test HAVE_posix_fallocate - Failed
-- Performing Test HAVE_alloca_stdlib_h
-- Performing Test HAVE_alloca_stdlib_h - Success
-- Performing Test HAVE_alloca_h
-- Performing Test HAVE_alloca_h - Success
-- Performing Test HAVE_alloca_malloc_h
-- Performing Test HAVE_alloca_malloc_h - Failed
-- Performing Test HAVE_stack_protector
-- Performing Test HAVE_stack_protector - Success
-- Performing Test HAVE_intelcet
-- Performing Test HAVE_intelcet - Failed
-- Looking for backtrace
-- Looking for backtrace - found
-- backtrace facility detected in default set of libraries
-- Found Backtrace: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "68.2")
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Performing Test HAVE_GETTIME
-- Performing Test HAVE_GETTIME - Success
-- Found WrapRt: TRUE
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_atomicfptr
-- Performing Test HAVE_atomicfptr - Success
-- Performing Test HAVE_clock_monotonic
-- Performing Test HAVE_clock_monotonic - Failed
-- Performing Test HAVE_cloexec
-- Performing Test HAVE_cloexec - Failed
-- Performing Test HAVE_cxx11_future
-- Performing Test HAVE_cxx11_future - Success
-- Performing Test HAVE_cxx11_random
-- Performing Test HAVE_cxx11_random - Success
-- Performing Test HAVE_cxx17_filesystem
-- Performing Test HAVE_cxx17_filesystem - Success
-- Performing Test HAVE_eventfd
-- Performing Test HAVE_eventfd - Failed
-- Performing Test HAVE_futimens
-- Performing Test HAVE_futimens - Success
-- Performing Test HAVE_futimes
-- Performing Test HAVE_futimes - Success
-- Performing Test HAVE_getauxval
-- Performing Test HAVE_getauxval - Failed
-- Performing Test HAVE_getentropy
-- Performing Test HAVE_getentropy - Failed
-- Performing Test HAVE_glibc
-- Performing Test HAVE_glibc - Failed
-- Performing Test HAVE_inotify
-- Performing Test HAVE_inotify - Failed
-- Performing Test HAVE_ipc_sysv
-- Performing Test HAVE_ipc_sysv - Success
-- Performing Test HAVE_ipc_posix
-- Performing Test HAVE_ipc_posix - Success
-- Performing Test HAVE_linkat
-- Performing Test HAVE_linkat - Success
-- Performing Test HAVE_ppoll
-- Performing Test HAVE_ppoll - Failed
-- Performing Test HAVE_pollts
-- Performing Test HAVE_pollts - Failed
-- Performing Test HAVE_poll
-- Performing Test HAVE_poll - Success
-- Performing Test HAVE_renameat2
-- Performing Test HAVE_renameat2 - Failed
-- Performing Test HAVE_statx
-- Performing Test HAVE_statx - Failed
-- Performing Test HAVE_syslog
-- Performing Test HAVE_syslog - Success
-- Performing Test HAVE_xlocalescanprint
-- Performing Test HAVE_xlocalescanprint - Failed
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_INCLUDE_DIRS)
-- Performing Test HAVE_getifaddrs
-- Performing Test HAVE_getifaddrs - Success
-- Performing Test HAVE_ifr_index
-- Performing Test HAVE_ifr_index - Failed
-- Performing Test HAVE_ipv6ifname
-- Performing Test HAVE_ipv6ifname - Success
-- Performing Test HAVE_linux_netlink
-- Performing Test HAVE_linux_netlink - Failed
-- Performing Test HAVE_sctp
-- Performing Test HAVE_sctp - Failed
-- Performing Test HAVE_networklistmanager
-- Performing Test HAVE_networklistmanager - Failed
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Performing Test HAVE_EGL
-- Performing Test HAVE_EGL - Failed
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Performing Test HAVE_GLESv2
-- Performing Test HAVE_GLESv2 - Success
-- Found GLESv2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/OpenGLES.framework
-- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
-- Performing Test HAVE_evdev
-- Performing Test HAVE_evdev - Failed
-- Performing Test HAVE_integrityfb
-- Performing Test HAVE_integrityfb - Failed
-- Performing Test HAVE_linuxfb
-- Performing Test HAVE_linuxfb - Failed
-- Performing Test HAVE_opengles3
-- Performing Test HAVE_opengles3 - Success
-- Performing Test HAVE_opengles31
-- Performing Test HAVE_opengles31 - Failed
-- Performing Test HAVE_opengles32
-- Performing Test HAVE_opengles32 - Failed
-- Performing Test HAVE_directwrite
-- Performing Test HAVE_directwrite - Failed
-- Performing Test HAVE_directwrite3
-- Performing Test HAVE_directwrite3 - Failed
-- Performing Test HAVE_d2d1
-- Performing Test HAVE_d2d1 - Failed
-- Performing Test HAVE_d2d1_1
-- Performing Test HAVE_d2d1_1 - Failed
-- Searching for tool 'Qt6::moc' in package Qt6CoreTools.
-- Qt6::moc was found at /usr/local/Qt-6.2.2/./libexec/moc using package Qt6CoreTools.
-- Tool 'Qt6::rcc' was found at /usr/local/Qt-6.2.2/./libexec/rcc.
-- Tool 'Qt6::tracegen' was found at /usr/local/Qt-6.2.2/./libexec/tracegen.
-- Tool 'Qt6::cmake_automoc_parser' was found at /usr/local/Qt-6.2.2/./libexec/cmake_automoc_parser.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Using Qt bundled PCRE2.
-- Found WrapPCRE2: TRUE
-- Using source syncqt found at: /Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/libexec/syncqt.pl
-- Running syncqt for module: 'QtCore'
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "68.2")
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
CMake Warning at qtbase/src/corelib/CMakeLists.txt:1230 (message):
  xmlstarlet was not found.  freedesktop.org.xml will not be minified!
 
 
-- Running syncqt for module: 'QtConcurrent'
-- Running syncqt for module: 'QtSql'
-- Running syncqt for module: 'QtNetwork'
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_INCLUDE_DIRS)
-- Running syncqt for module: 'QtXml'
-- Searching for tool 'Qt6::uic' in package Qt6WidgetsTools.
-- Qt6::uic was found at /usr/local/Qt-6.2.2/./libexec/uic using package Qt6WidgetsTools.
-- Tool 'Qt6::qlalr' was found at /usr/local/Qt-6.2.2/./libexec/qlalr.
-- Tool 'Qt6::qvkgen' was found at /usr/local/Qt-6.2.2/./libexec/qvkgen.
-- Tool 'Qt6::qtpaths' was found at /usr/local/Qt-6.2.2/bin/qtpaths.
-- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
-- Using Qt bundled Harfbuzz.
-- Found WrapHarfbuzz: TRUE
-- Using Qt bundled PNG.
-- Found WrapPNG: TRUE
-- Using Qt bundled Freetype.
-- Found WrapFreetype: TRUE
-- Running syncqt for module: 'QtGui'
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtOpenGL'
-- Running syncqt for module: 'QtWidgets'
-- Running syncqt for module: 'QtOpenGLWidgets'
-- Running syncqt for module: 'QtDeviceDiscoverySupport'
-- Running syncqt for module: 'QtFbSupport'
-- Running syncqt for module: 'QtTest'
-- Running syncqt for module: 'QtPrintSupport'
-- Could NOT find Cups (missing: CUPS_LIBRARIES CUPS_INCLUDE_DIR)
-- Could NOT find DB2 (missing: DB2_INCLUDE_DIR DB2_LIBRARY)
-- Could NOT find MySQL (missing: MySQL_LIBRARY MySQL_INCLUDE_DIR)
-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR)
-- Could NOT find Oracle (missing: Oracle_LIBRARY Oracle_INCLUDE_DIR)
-- Could NOT find ODBC (missing: ODBC_LIBRARY ODBC_INCLUDE_DIR)
-- Found SQLite3: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include (found version "3.36.0")
-- Could NOT find Interbase (missing: Interbase_LIBRARY Interbase_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
Generating Plugins files for BundledLibpng;BundledFreetype;BundledHarfbuzz;BundledPcre2;EntryPointPrivate;Core;Concurrent;Sql;Network;Xml;Gui;OpenGL;Widgets;OpenGLWidgets;DeviceDiscoverySupportPrivate;FbSupportPrivate;Test;PrintSupport...
Configuring 'qtshadertools'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtShaderTools'
-- Searching for tool 'Qt6::qsb' in package Qt6ShaderToolsTools.
-- Qt6::qsb was found at /usr/local/Qt-6.2.2/bin/qsb using package Qt6ShaderToolsTools.
Generating Plugins files for BundledGlslang_Spirv;BundledGlslang_Osdependent;BundledGlslang_Oglcompiler;BundledGlslang_Glslang;BundledSpirv_Cross;ShaderTools...
Configuring 'qtsvg'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtSvg'
-- Running syncqt for module: 'QtSvgWidgets'
Generating Plugins files for Svg;SvgWidgets...
Configuring 'qtimageformats'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
-- Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
-- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
-- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
Generating Plugins files for ...
Configuring 'qtdeclarative'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Found PythonInterp: /usr/bin/python (found version "2.7.16")
-- Searching for tool 'Qt6::qmltyperegistrar' in package Qt6QmlTools.
-- Qt6::qmltyperegistrar was found at /usr/local/Qt-6.2.2/./libexec/qmltyperegistrar using package Qt6QmlTools.
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Performing Test HAVE_pointer_32bit
-- Performing Test HAVE_pointer_32bit - Failed
-- Performing Test HAVE_pointer_64bit
-- Performing Test HAVE_pointer_64bit - Success
-- Performing Test HAVE_arm_thumb
-- Performing Test HAVE_arm_thumb - Failed
-- Performing Test HAVE_arm_fp
-- Performing Test HAVE_arm_fp - Success
-- Running syncqt for module: 'QtQml'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQmlModels'
-- Running syncqt for module: 'QtQmlCore'
-- Running syncqt for module: 'QtQmlWorkerScript'
-- Running syncqt for module: 'QtQmlLocalStorage'
-- Running syncqt for module: 'QtQmlXmlListModel'
-- Running syncqt for module: 'QtQuick'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQuickShapes'
-- Running syncqt for module: 'QtQuickLayouts'
-- Running syncqt for module: 'QtQuickTest'
-- Running syncqt for module: 'QtQuickTestUtils'
-- Running syncqt for module: 'QtQuickParticles'
-- Running syncqt for module: 'QtQuickWidgets'
-- Running syncqt for module: 'QtQuickTemplates2'
-- Running syncqt for module: 'QtQuickControls2Impl'
-- Running syncqt for module: 'QtQuickControls2'
-- Running syncqt for module: 'QtQuickDialogs2Utils'
-- Running syncqt for module: 'QtQuickDialogs2QuickImpl'
-- Running syncqt for module: 'QtQuickDialogs2'
-- Running syncqt for module: 'QtQuickControlsTestUtils'
-- Running syncqt for module: 'QtLabsSettings'
-- Running syncqt for module: 'QtLabsQmlModels'
-- Running syncqt for module: 'QtLabsFolderListModel'
-- Running syncqt for module: 'QtLabsAnimation'
-- Running syncqt for module: 'QtLabsWavefrontMesh'
-- Running syncqt for module: 'QtLabsSharedImage'
-- Running syncqt for module: 'QtPacketProtocol'
-- Running syncqt for module: 'QtQmlDom'
-- Running syncqt for module: 'QtQmlCompiler'
-- Tool 'Qt6::qmlcachegen' was found at /usr/local/Qt-6.2.2/./libexec/qmlcachegen.
-- Running syncqt for module: 'QtQmlDebug'
-- Tool 'Qt6::qmldom' was found at /usr/local/Qt-6.2.2/bin/qmldom.
-- Tool 'Qt6::qmllint' was found at /usr/local/Qt-6.2.2/bin/qmllint.
-- Tool 'Qt6::qmlimportscanner' was found at /usr/local/Qt-6.2.2/./libexec/qmlimportscanner.
-- Tool 'Qt6::qmlformat' was found at /usr/local/Qt-6.2.2/bin/qmlformat.
-- Tool 'Qt6::qmlprofiler' was found at /usr/local/Qt-6.2.2/bin/qmlprofiler.
-- Tool 'Qt6::qmltestrunner' was found at /usr/local/Qt-6.2.2/bin/qmltestrunner.
Generating Plugins files for Qml;QmlModels;QmlCore;QmlWorkerScript;QmlLocalStorage;QmlXmlListModel;Quick;QuickShapesPrivate;QuickLayouts;QuickTest;QuickTestUtilsPrivate;QuickParticlesPrivate;QuickWidgets;QuickTemplates2;QuickControls2Impl;QuickControls2;QuickDialogs2Utils;QuickDialogs2QuickImpl;QuickDialogs2;QuickControlsTestUtilsPrivate;LabsSettings;LabsQmlModels;LabsFolderListModel;LabsAnimation;LabsWavefrontMesh;LabsSharedImage;PacketProtocolPrivate;QmlDevToolsPrivate;QmlDomPrivate;QmlCompilerPrivate;QmlDebugPrivate...
Configuring 'qt3d'
Configuring 'qt5compat'
Configuring 'qtactiveqt'
Configuring 'qtmultimedia'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtMultimedia'
QtMultimedia: created deprecated header(s) { qtmultimediadefs.h }
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Found AVFoundation: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/AVFoundation.framework
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find WrapPulseAudio (missing: PULSEAUDIO_LIBRARY PULSEAUDIO_INCLUDE_DIR WrapPulseAudio_FOUND)
-- Could NOT find WMF (missing: WMF_STRMIIDS_LIBRARY WMF_AMSTRMID_LIBRARY WMF_DMOGUIDS_LIBRARY WMF_UUID_LIBRARY WMF_MSDMO_LIBRARY WMF_OLE32_LIBRARY WMF_OLEAUT32_LIBRARY WMF_MF_LIBRARY WMF_MFUUID_LIBRARY WMF_MFPLAT_LIBRARY WMF_MFCORE_LIBRARY WMF_PROPSYS_LIBRARY)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Performing Test evr.h
-- Performing Test evr.h - Failed
-- Performing Test Vivante GPU
-- Performing Test Vivante GPU - Failed
-- Performing Test Video for Linux
-- Performing Test Video for Linux - Failed
-- Performing Test wmsdk.h
-- Performing Test wmsdk.h - Failed
-- Running syncqt for module: 'QtMultimediaQuick'
-- Running syncqt for module: 'QtMultimediaWidgets'
Generating Plugins files for Multimedia;MultimediaQuickPrivate;MultimediaWidgets...
Configuring 'qtcharts'
Configuring 'qtcoap'
Configuring 'qtconnectivity'
Configuring 'qtdatavis3d'
Configuring 'qttools'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Running syncqt for module: 'QtTools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Searching for tool 'Qt6::lconvert' in package Qt6LinguistTools.
-- Qt6::lconvert was found at /usr/local/Qt-6.2.2/bin/lconvert using package Qt6LinguistTools.
-- Tool 'Qt6::lprodump' was found at /usr/local/Qt-6.2.2/./libexec/lprodump.
-- Tool 'Qt6::lrelease' was found at /usr/local/Qt-6.2.2/bin/lrelease.
-- Tool 'Qt6::lrelease-pro' was found at /usr/local/Qt-6.2.2/./libexec/lrelease-pro.
-- Tool 'Qt6::lupdate' was found at /usr/local/Qt-6.2.2/bin/lupdate.
-- Tool 'Qt6::lupdate-pro' was found at /usr/local/Qt-6.2.2/./libexec/lupdate-pro.
-- Running syncqt for module: 'QtUiPlugin'
-- Running syncqt for module: 'QtUiTools'
-- Running syncqt for module: 'QtHelp'
-- Searching for tool 'Qt6::qhelpgenerator' in package Qt6ToolsTools.
-- Qt6::qhelpgenerator was found at /usr/local/Qt-6.2.2/bin/qhelpgenerator using package Qt6ToolsTools.
-- Tool 'Qt6::qtattributionsscanner' was found at /usr/local/Qt-6.2.2/./libexec/qtattributionsscanner.
Generating Plugins files for Tools;Linguist;UiPlugin;UiTools;Help...
Configuring 'qtdoc'
Configuring 'qtlottie'
Configuring 'qtmqtt'
Configuring 'qtnetworkauth'
Configuring 'qtopcua'
Configuring 'qtserialport'
Configuring 'qtpositioning'
Configuring 'qtquicktimeline'
Configuring 'qtquick3d'
Configuring 'qtremoteobjects'
Configuring 'qtscxml'
Configuring 'qtsensors'
Configuring 'qtserialbus'
Configuring 'qttranslations'
CMake Warning at qttranslations/translations/CMakeLists.txt:38 (message):
  Directory
  '/Users/admin/repos/qt-everywhere-src-6.2.2/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)
 
 
CMake Warning at qttranslations/translations/CMakeLists.txt:45 (message):
  No source files located for qtlocation, skipping target creation
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)
 
 
Configuring 'qtvirtualkeyboard'
Configuring 'qtwayland'
Configuring 'qtwebsockets'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtWebSockets'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.
 
Generating Plugins files for WebSockets...
Configuring 'qtwebchannel'
Configuring 'qtwebengine'
Configuring 'qtwebview'
-- The following packages have been found:
 
 * QtBuildInternals
 * Backtrace
 * ZLIB
 * SQLite3
 * Qt6Concurrent (required version >= 6.2.2)
 * PythonInterp
 * Qt6Svg (required version >= 6.2.2)
 * Qt6QuickTemplates2Private (required version >= 6.2.2)
 * Qt6QuickControls2 (required version >= 6.2.2)
 * Qt6ShaderToolsTools (required version >= 6.2.2)
 * Qt6ShaderTools
 * AVFoundation
 * Qt6Xml (required version >= 6.2.2)
 * Qt6WidgetsTools (required version >= 6.2.2)
 * Qt6Widgets (required version >= 6.2.2)
 * Qt6OpenGLPrivate (required version >= 6.2.2)
 * Qt6QuickWidgets (required version >= 6.2.2)
 * Qt6CorePrivate (required version >= 6.2.2)
 * Qt6QmlDevToolsPrivate (required version >= 6.2.2)
 * Qt6Sql (required version >= 6.2.2)
 * Qt6PrintSupport (required version >= 6.2.2)
 * Qt6OpenGLWidgets (required version >= 6.2.2)
 * Qt6ToolsTools (required version >= 6.2.2)
 * Qt6LinguistTools (required version >= 6.2.2)
 * Qt6Linguist (required version >= 6.2.2)
 * Qt6BuildInternals (required version >= 6.2.2)
 * WrapAtomic
 * WrapBacktrace
 * WrapPCRE2
 * WrapRt
 * Qt6CoreTools (required version >= 6.2.2)
 * Qt6Core (required version >= 6.2.2)
 * Qt6Network (required version >= 6.2.2)
 * GLESv2
 * WrapPNG
 * WrapHarfbuzz
 * WrapFreetype
 * WrapZLIB (required version >= 1.0.8)
 * Qt6Gui (required version >= 6.2.2)
 * Qt6Qml (required version >= 6.2.2)
 * Qt6QmlModels (required version >= 6.2.2)
 * Qt6OpenGL (required version >= 6.2.2)
 * Qt6Quick (required version >= 6.2.2)
 * Qt6Test (required version >= 6.2.2)
 * Qt6QmlTools (required version >= 6.2.2)
 * Qt6QmlPrivate (required version >= 6.2.2)
 * Threads
 * Qt6QuickPrivate (required version >= 6.2.2)
 * Qt6QuickTest (required version >= 6.2.2)
 * Qt6 (required version >= 6.2.2)
 * Qt6HostInfo
 
-- The following OPTIONAL packages have not been found:
 
 * zstd
 * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Libudev
 * double-conversion
 * WrapDoubleConversion
 * ICU
 * Libsystemd
 * Libb2
 * PCRE2 (required version >= 10.20)
 * WrapSystemPCRE2 (required version >= 10.20)
 * Slog2
 * unofficial-brotli
 * WrapBrotli
 * Libproxy
 * OpenSSL
 * WrapOpenSSLHeaders
 * WrapOpenSSL
 * GSSAPI, Generic Security Services Application Program Interface
 * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
 * ATSPI2
 * DirectFB
 * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
 * Freetype (required version >= 2.2.0)
 * WrapSystemFreetype (required version >= 2.2.0)
 * Fontconfig
 * gbm, Mesa gbm library., <http://www.mesa3d.org>
 * harfbuzz (required version >= 2.6.0)
 * WrapSystemHarfbuzz (required version >= 2.6.0)
 * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
 * md4c
 * WrapSystemMd4c
 * PNG
 * WrapSystemPNG
 * Mtdev
 * OpenGL
 * WrapOpenGL
 * Tslib
 * Vulkan
 * WrapVulkanHeaders
 * GTK3 (required version >= 3.6)
 * Cups
 * DB2, IBM DB2 client library, <https://www.ibm.com>
 * MySQL, MySQL client library, <https://www.mysql.com>
 * PostgreSQL
 * Oracle, Oracle client library, <https://www.oracle.com>
 * ODBC
 * Interbase, Interbase client library, <https://www.embarcadero.com/products/interbase>
 * JPEG
 * Jasper
 * WrapJasper
 * TIFF
 * WebP
 * WrapWebP
 * Libmng
 * LTTngUST
 * ALSA
 * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
 * GObject
 * GStreamer
 * PulseAudio
 * WrapPulseAudio
 * WMF
 * Qt6DBus (required version >= 6.2.2)
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * PkgConfig
 * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
 * Qt6QmlCompilerPlus
 
Configure summary:
 
Building for: macx-ios-clang (arm64;x86_64), arm64 features: neon crypto)
Compiler: clang (Apple) 13.0.0.13000029
Build options:
  Mode ................................... release
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. no
  Using C standard ....................... C11
  Using C++ standard ..................... C++20
  Using ccache ........................... no
  Relocatable ............................ no
  Using precompiled headers .............. yes
  Using LTCG ............................. no
  Target compiler supports:
    Intrinsics without compiler architecture option  yes
    Extensions ........................... NEON AES
  Sanitizers:
    Addresses ............................ no
    Threads .............................. no
    Memory ............................... no
    Fuzzer (instrumentation only) ........ no
    Undefined ............................ no
  Build parts ............................ libs
  App store compliance ................... yes
Qt modules and options:
  Qt Concurrent .......................... yes
  Qt D-Bus ............................... no
  Qt D-Bus directly linked to libdbus .... no
  Qt Gui ................................. yes
  Qt Network ............................. yes
  Qt PrintSupport ........................ yes
  Qt Sql ................................. yes
  Qt Testlib ............................. yes
  Qt Widgets ............................. yes
  Qt Xml ................................. yes
Support enabled for:
  Using pkg-config ....................... no
  udev ................................... no
  Using system zlib ...................... yes
  Zstandard support ...................... no
  Thread support ......................... yes
Common build options:
  Linker can resolve circular dependencies  yes
Qt Core:
  backtrace .............................. yes
  DoubleConversion ....................... yes
    Using system DoubleConversion ........ no
  GLib ................................... no
  ICU .................................... no
  Using system libb2 ..................... no
  Built-in copy of the MIME database ..... yes
  Tracing backend ........................ <none>
  Logging backends:
    journald ............................. no
    syslog ............................... no
    slog2 ................................ no
  PCRE2 .................................. yes
    Using system PCRE2 ................... no
Qt Sql:
  SQL item models ........................ yes
Qt Network:
  getifaddrs() ........................... yes
  IPv6 ifname ............................ yes
  libproxy ............................... no
  SecureTransport ........................ yes
  OpenSSL ................................ no
    Qt directly linked to OpenSSL ........ no
  OpenSSL 1.1 ............................ no
  DTLS ................................... no
  OCSP-stapling .......................... no
  SCTP ................................... no
  Use system proxies ..................... yes
  GSSAPI ................................. no
  Brotli Decompression Support ........... no
Qt Gui:
  Accessibility .......................... yes
  FreeType ............................... yes
    Using system FreeType ................ no
  HarfBuzz ............................... yes
    Using system HarfBuzz ................ no
  Fontconfig ............................. no
  Image formats:
    GIF .................................. yes
    ICO .................................. yes
    JPEG ................................. yes
      Using system libjpeg ............... no
    PNG .................................. yes
      Using system libpng ................ no
  Text formats:
    HtmlParser ........................... yes
    CssParser ............................ yes
    OdfWriter ............................ yes
    MarkdownReader ....................... yes
      Using system libmd4c ............... no
    MarkdownWriter ....................... yes
  EGL .................................... no
  OpenVG ................................. no
  OpenGL:
    Desktop OpenGL ....................... no
    OpenGL ES 2.0 ........................ yes
    OpenGL ES 3.0 ........................ yes
    OpenGL ES 3.1 ........................ no
    OpenGL ES 3.2 ........................ no
  Vulkan ................................. no
  Session Management ..................... yes
Features used by QPA backends:
  evdev .................................. no
  libinput ............................... no
  INTEGRITY HID .......................... no
  mtdev .................................. no
  tslib .................................. no
  xkbcommon .............................. no
  X11 specific:
    XLib ................................. no
    XCB Xlib ............................. no
    EGL on X11 ........................... no
    xkbcommon-x11 ........................ no
    xcb-sm ............................... no
QPA backends:
  DirectFB ............................... no
  EGLFS .................................. no
  EGLFS details:
    EGLFS OpenWFD ........................ no
    EGLFS i.Mx6 .......................... no
    EGLFS i.Mx6 Wayland .................. no
    EGLFS RCAR ........................... no
    EGLFS EGLDevice ...................... no
    EGLFS GBM ............................ no
    EGLFS VSP2 ........................... no
    EGLFS Mali ........................... no
    EGLFS Raspberry Pi ................... no
    EGLFS X11 ............................ no
  LinuxFB ................................ no
  VNC .................................... no
  VK_KHR_display ......................... no
  QNX:
    lgmon ................................ no
    IMF .................................. no
  XCB:
    Using system-provided xcb-xinput ..... no
    GL integrations:
      GLX Plugin ......................... no
        XCB GLX .......................... no
      EGL-X11 Plugin ..................... no
  Windows:
    Direct 2D ............................ no
    Direct 2D 1.1 ........................ no
    DirectWrite .......................... no
    DirectWrite 3 ........................ no
Qt Widgets:
  GTK+ ................................... no
  Styles ................................. Fusion Windows
Qt Testlib:
  Tester for item models ................. yes
Qt PrintSupport:
  CUPS ................................... no
Qt Sql Drivers:
  DB2 (IBM) .............................. no
  InterBase .............................. no
  MySql .................................. no
  OCI (Oracle) ........................... no
  ODBC ................................... no
  PostgreSQL ............................. no
  SQLite ................................. yes
    Using system provided SQLite ......... no
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt QML:
  QML network support .................... yes
  QML debugging and profiling support .... yes
  QML just-in-time compiler .............. no
  QML sequence object .................... yes
  QML XML http request ................... yes
  QML Locale ............................. yes
Qt QML Models:
  QML list model ......................... yes
  QML delegate model ..................... yes
Qt Quick:
  AnimatedImage item ..................... yes
  Canvas item ............................ yes
  Support for Qt Quick Designer .......... yes
  Flipable item .......................... yes
  GridView item .......................... yes
  ListView item .......................... yes
  TableView item ......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner items ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ no
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... yes
  Windows Media Foundation ............... no
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  Mac Deployment Tool .................... no
  pixeltool .............................. yes
  qdbus .................................. no
  Qt Attributions Scanner ................ yes
  qtdiag ................................. no
  qtplugininfo ........................... yes
  Windows deployment tool ................ no
 
Note: Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library.
 
WARNING: QDoc will not be compiled, probably because libclang could not be located. This means that you cannot build the Qt documentation.
Either set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
On Linux systems, you may be able to install libclang by installing the libclang-dev or libclang-devel package, depending on your distribution.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be available. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
 
Qt is now configured for building. Just run 'cmake --build . --parallel'
 
Once everything is built, you must run 'cmake --install .'
Qt will be installed into '/usr/local/Qt-6.2.2-ios'
 
To configure and build other Qt modules, you can use the following convenience script:
        /usr/local/Qt-6.2.2-ios/bin/qt-configure-module
 
If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory
 
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/admin/repos/qt-everywhere-src-6.2.2
cmake --build .

But got the following error:

1
2
3
4
5
Updating '/Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/./translations/qtwebsockets_en.qm'...
lrelease error: cannot create '/Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/./translations/qtwebsockets_en.qm': No such file or directory
make[2]: *** [qttranslations/translations/CMakeFiles/updateqm-qtwebsockets_en.ts] Error 1
make[1]: *** [qttranslations/translations/CMakeFiles/updateqm-qtwebsockets_en.ts.dir/all] Error 2
make: *** [all] Error 2

and excluded qttranslations:

1
2
3
4
5
6
7
./configure -c++std c++20 -opensource -confirm-license -no-openssl -securetransport -DQT_NO_EXCEPTIONS=1 \
  -platform macx-ios-clang -release -qt-host-path /usr/local/Qt-6.2.2 -prefix /usr/local/Qt-6.2.2-ios \
  -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity \
  -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua \
  -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects \
  -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland \
  -skip qtwebchannel -skip qtwebengine -skip qtwebview -skip qttranslations -skip qttools

it printed the following:

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
+ mkdir -p qtbase
+ cd qtbase
+ exec /Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/configure -top-level -c++std c++20 -opensource -confirm-license -no-openssl -securetransport -DQT_NO_EXCEPTIONS=1 -platform macx-ios-clang -release -qt-host-path /usr/local/Qt-6.2.2 -prefix /usr/local/Qt-6.2.2-ios -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebview -skip qttranslations -skip qttools
'/usr/local/Cellar/cmake/3.22.1/bin/cmake' '-DQT_HOST_PATH=/usr/local/Qt-6.2.2' '-DBUILD_qt3d=OFF' '-DBUILD_qt5compat=OFF' '-DBUILD_qtactiveqt=OFF' '-DBUILD_qtcharts=OFF' '-DBUILD_qtcoap=OFF' '-DBUILD_qtconnectivity=OFF' '-DBUILD_qtdatavis3d=OFF' '-DBUILD_qtdoc=OFF' '-DBUILD_qtlottie=OFF' '-DBUILD_qtmqtt=OFF' '-DBUILD_qtnetworkauth=OFF' '-DBUILD_qtopcua=OFF' '-DBUILD_qtserialport=OFF' '-DBUILD_qtpositioning=OFF' '-DBUILD_qtquicktimeline=OFF' '-DBUILD_qtquick3d=OFF' '-DBUILD_qtremoteobjects=OFF' '-DBUILD_qtscxml=OFF' '-DBUILD_qtsensors=OFF' '-DBUILD_qtserialbus=OFF' '-DBUILD_qtvirtualkeyboard=OFF' '-DBUILD_qtwayland=OFF' '-DBUILD_qtwebchannel=OFF' '-DBUILD_qtwebengine=OFF' '-DBUILD_qtwebview=OFF' '-DBUILD_qttranslations=OFF' '-DBUILD_qttools=OFF' '-DCMAKE_INSTALL_PREFIX=/usr/local/Qt-6.2.2-ios' '-DQT_QMAKE_TARGET_MKSPEC=macx-ios-clang' '-DCMAKE_C_COMPILER=clang' '-DCMAKE_CXX_COMPILER=clang++' '-DCMAKE_SYSTEM_NAME=iOS' '-DCMAKE_BUILD_TYPE=Release' '-DQT_EXTRA_DEFINES=QT_NO_EXCEPTIONS=1' '-DINPUT_cxx14=yes' '-DINPUT_cxx17=yes' '-DINPUT_cxx20=yes' '-DINPUT_openssl=no' '-DINPUT_securetransport=yes' '-G' 'Unix Makefiles' '/Users/admin/repos/qt-everywhere-src-6.2.2'
CMake Warning at qtbase/cmake/QtAutoDetect.cmake:65 (message):
  The officially supported CMake generator for building Qt is Ninja.  You are
  using: 'Unix Makefiles' instead.  Thus, you might encounter issues.  Use at
  your own risk.
Call Stack (most recent call first):
  qtbase/cmake/QtAutoDetect.cmake:439 (qt_auto_detect_cmake_generator)
  CMakeLists.txt:11 (include)
 
 
-- Using internal CMake iOS toolchain file.
-- simulator_and_device set to: "ON".
-- The CXX compiler identification is AppleClang 13.0.0.13000029
-- The C compiler identification is AppleClang 13.0.0.13000029
-- The ASM compiler identification is Clang with GNU-like command-line
-- Found assembler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
Checking dependencies of 'qtbase'
Checking dependencies of 'qtshadertools'
Checking dependencies of 'qtsvg'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qtwebsockets'
Configuring 'qtbase'
-- Check for feature set changes
-- Looking for a OBJC compiler
-- Looking for a OBJC compiler - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
-- The OBJC compiler identification is AppleClang 13.0.0.13000029
-- Detecting OBJC compiler ABI info
-- Detecting OBJC compiler ABI info - done
-- Check for working OBJC compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang - skipped
-- Looking for a OBJCXX compiler
-- Looking for a OBJCXX compiler - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
-- The OBJCXX compiler identification is AppleClang 13.0.0.13000029
-- Detecting OBJCXX compiler ABI info
-- Detecting OBJCXX compiler ABI info - done
-- Check for working OBJCXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ - skipped
-- Building architecture extraction project with the following CMake arguments:
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=/Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms
    -DCMAKE_OSX_ARCHITECTURES:STRING=arm64
-- Extracting architecture info from /Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/config.tests/arch/architecture_test.
-- Performing Test HAVE_LD_VERSION_SCRIPT
-- Performing Test HAVE_LD_VERSION_SCRIPT - Failed
-- CMAKE_OSX_ARCHITECTURES: "arm64;x86_64"
-- CMAKE_OSX_SYSROOT: "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk"
-- CMAKE_OSX_DEPLOYMENT_TARGET: "13.0"
-- QT_MAC_SDK_VERSION: "12.1"
-- QT_MAC_XCODE_VERSION: "Xcode 13.2.1 Build version 13C100"
-- Configure tests main architecture (in multi-arch build): "arm64"
-- CMAKE_VERSION: "3.22.1"
-- CMAKE_HOST_SYSTEM: "Darwin-20.6.0"
-- CMAKE_HOST_SYSTEM_NAME: "Darwin"
-- CMAKE_HOST_SYSTEM_VERSION: "20.6.0"
-- CMAKE_HOST_SYSTEM_PROCESSOR: "x86_64"
-- CMAKE_SYSTEM: "iOS"
-- CMAKE_SYSTEM_NAME: "iOS"
-- CMAKE_SYSTEM_VERSION: ""
-- CMAKE_SYSTEM_PROCESSOR: ""
-- CMAKE_CROSSCOMPILING: "TRUE"
-- CMAKE_C_COMPILER: "/usr/bin/clang" (13.0.0.13000029)
-- CMAKE_CXX_COMPILER: "/usr/bin/clang++" (13.0.0.13000029)
-- CMAKE_OBJC_COMPILER: "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" (13.0.0.13000029)
-- CMAKE_OBJCXX_COMPILER: "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" (13.0.0.13000029)
-- Found ZLIB: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/libz.tbd (found suitable version "1.2.11", minimum required is "1.0.8")
-- Found WrapZLIB: TRUE (Required is at least version "1.0.8")
-- Could NOT find ZSTD: Found unsuitable version "", but required is at least "1.3" (found ZSTD_LIBRARY-NOTFOUND)
-- Could NOT find WrapDBus1 (missing: DBus1_LIBRARY DBus1_INCLUDE_DIR WrapDBus1_FOUND) (Required is at least version "1.2")
-- Performing Test HAVE_cxx14
-- Performing Test HAVE_cxx14 - Success
-- Performing Test HAVE_cxx17
-- Performing Test HAVE_cxx17 - Success
-- Performing Test HAVE_cxx20
-- Performing Test HAVE_cxx20 - Success
-- Performing Test precompiled header support
-- Performing Test precompiled header support - Success
-- Performing Test TEST_use_bfd_linker
-- Performing Test TEST_use_bfd_linker - Success
-- Performing Test TEST_use_gold_linker
-- Performing Test TEST_use_gold_linker - Success
-- Performing Test TEST_use_lld_linker
-- Performing Test TEST_use_lld_linker - Success
-- Performing Test TEST_optimize_debug
-- Performing Test TEST_optimize_debug - Success
-- Performing Test TEST_enable_new_dtags
-- Performing Test TEST_enable_new_dtags - Failed
-- Performing Test TEST_gdb_index
-- Performing Test TEST_gdb_index - Failed
-- Performing Test HAVE_reduce_relocations
-- Performing Test HAVE_reduce_relocations - Failed
-- Performing Test separate debug information support
-- Performing Test separate debug information support - Success
-- Performing Test HAVE_signaling_nan
-- Performing Test HAVE_signaling_nan - Success
-- Performing SIMD Test SSE2 instructions
-- Performing SIMD Test SSE2 instructions - Failed
-- Performing SIMD Test SSE3 instructions
-- Performing SIMD Test SSE3 instructions - Failed
-- Performing SIMD Test SSSE3 instructions
-- Performing SIMD Test SSSE3 instructions - Failed
-- Performing SIMD Test SSE4.1 instructions
-- Performing SIMD Test SSE4.1 instructions - Failed
-- Performing SIMD Test SSE4.2 instructions
-- Performing SIMD Test SSE4.2 instructions - Failed
-- Performing SIMD Test AES new instructions
-- Performing SIMD Test AES new instructions - Failed
-- Performing SIMD Test F16C instructions
-- Performing SIMD Test F16C instructions - Failed
-- Performing SIMD Test RDRAND instruction
-- Performing SIMD Test RDRAND instruction - Failed
-- Performing SIMD Test RDSEED instruction
-- Performing SIMD Test RDSEED instruction - Failed
-- Performing SIMD Test SHA new instructions
-- Performing SIMD Test SHA new instructions - Failed
-- Performing SIMD Test AVX instructions
-- Performing SIMD Test AVX instructions - Failed
-- Performing SIMD Test AVX2 instructions
-- Performing SIMD Test AVX2 instructions - Failed
-- Performing SIMD Test AVX512 F instructions
-- Performing SIMD Test AVX512 F instructions - Failed
-- Performing SIMD Test AVX512 ER instructions
-- Performing SIMD Test AVX512 ER instructions - Failed
-- Performing SIMD Test AVX512 CD instructions
-- Performing SIMD Test AVX512 CD instructions - Failed
-- Performing SIMD Test AVX512 PF instructions
-- Performing SIMD Test AVX512 PF instructions - Failed
-- Performing SIMD Test AVX512 DQ instructions
-- Performing SIMD Test AVX512 DQ instructions - Failed
-- Performing SIMD Test AVX512 BW instructions
-- Performing SIMD Test AVX512 BW instructions - Failed
-- Performing SIMD Test AVX512 VL instructions
-- Performing SIMD Test AVX512 VL instructions - Failed
-- Performing SIMD Test AVX512 IFMA instructions
-- Performing SIMD Test AVX512 IFMA instructions - Failed
-- Performing SIMD Test AVX512 VBMI instructions
-- Performing SIMD Test AVX512 VBMI instructions - Failed
-- Performing Test HAVE_posix_fallocate
-- Performing Test HAVE_posix_fallocate - Failed
-- Performing Test HAVE_alloca_stdlib_h
-- Performing Test HAVE_alloca_stdlib_h - Success
-- Performing Test HAVE_alloca_h
-- Performing Test HAVE_alloca_h - Success
-- Performing Test HAVE_alloca_malloc_h
-- Performing Test HAVE_alloca_malloc_h - Failed
-- Performing Test HAVE_stack_protector
-- Performing Test HAVE_stack_protector - Success
-- Performing Test HAVE_intelcet
-- Performing Test HAVE_intelcet - Failed
-- Looking for backtrace
-- Looking for backtrace - found
-- backtrace facility detected in default set of libraries
-- Found Backtrace: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "68.2")
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Performing Test HAVE_GETTIME
-- Performing Test HAVE_GETTIME - Success
-- Found WrapRt: TRUE
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_atomicfptr
-- Performing Test HAVE_atomicfptr - Success
-- Performing Test HAVE_clock_monotonic
-- Performing Test HAVE_clock_monotonic - Failed
-- Performing Test HAVE_cloexec
-- Performing Test HAVE_cloexec - Failed
-- Performing Test HAVE_cxx11_future
-- Performing Test HAVE_cxx11_future - Success
-- Performing Test HAVE_cxx11_random
-- Performing Test HAVE_cxx11_random - Success
-- Performing Test HAVE_cxx17_filesystem
-- Performing Test HAVE_cxx17_filesystem - Success
-- Performing Test HAVE_eventfd
-- Performing Test HAVE_eventfd - Failed
-- Performing Test HAVE_futimens
-- Performing Test HAVE_futimens - Success
-- Performing Test HAVE_futimes
-- Performing Test HAVE_futimes - Success
-- Performing Test HAVE_getauxval
-- Performing Test HAVE_getauxval - Failed
-- Performing Test HAVE_getentropy
-- Performing Test HAVE_getentropy - Failed
-- Performing Test HAVE_glibc
-- Performing Test HAVE_glibc - Failed
-- Performing Test HAVE_inotify
-- Performing Test HAVE_inotify - Failed
-- Performing Test HAVE_ipc_sysv
-- Performing Test HAVE_ipc_sysv - Success
-- Performing Test HAVE_ipc_posix
-- Performing Test HAVE_ipc_posix - Success
-- Performing Test HAVE_linkat
-- Performing Test HAVE_linkat - Success
-- Performing Test HAVE_ppoll
-- Performing Test HAVE_ppoll - Failed
-- Performing Test HAVE_pollts
-- Performing Test HAVE_pollts - Failed
-- Performing Test HAVE_poll
-- Performing Test HAVE_poll - Success
-- Performing Test HAVE_renameat2
-- Performing Test HAVE_renameat2 - Failed
-- Performing Test HAVE_statx
-- Performing Test HAVE_statx - Failed
-- Performing Test HAVE_syslog
-- Performing Test HAVE_syslog - Success
-- Performing Test HAVE_xlocalescanprint
-- Performing Test HAVE_xlocalescanprint - Failed
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_INCLUDE_DIRS)
-- Performing Test HAVE_getifaddrs
-- Performing Test HAVE_getifaddrs - Success
-- Performing Test HAVE_ifr_index
-- Performing Test HAVE_ifr_index - Failed
-- Performing Test HAVE_ipv6ifname
-- Performing Test HAVE_ipv6ifname - Success
-- Performing Test HAVE_linux_netlink
-- Performing Test HAVE_linux_netlink - Failed
-- Performing Test HAVE_sctp
-- Performing Test HAVE_sctp - Failed
-- Performing Test HAVE_networklistmanager
-- Performing Test HAVE_networklistmanager - Failed
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Performing Test HAVE_EGL
-- Performing Test HAVE_EGL - Failed
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Performing Test HAVE_GLESv2
-- Performing Test HAVE_GLESv2 - Success
-- Found GLESv2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/OpenGLES.framework
-- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
-- Performing Test HAVE_evdev
-- Performing Test HAVE_evdev - Failed
-- Performing Test HAVE_integrityfb
-- Performing Test HAVE_integrityfb - Failed
-- Performing Test HAVE_linuxfb
-- Performing Test HAVE_linuxfb - Failed
-- Performing Test HAVE_opengles3
-- Performing Test HAVE_opengles3 - Success
-- Performing Test HAVE_opengles31
-- Performing Test HAVE_opengles31 - Failed
-- Performing Test HAVE_opengles32
-- Performing Test HAVE_opengles32 - Failed
-- Performing Test HAVE_directwrite
-- Performing Test HAVE_directwrite - Failed
-- Performing Test HAVE_directwrite3
-- Performing Test HAVE_directwrite3 - Failed
-- Performing Test HAVE_d2d1
-- Performing Test HAVE_d2d1 - Failed
-- Performing Test HAVE_d2d1_1
-- Performing Test HAVE_d2d1_1 - Failed
-- Searching for tool 'Qt6::moc' in package Qt6CoreTools.
-- Qt6::moc was found at /usr/local/Qt-6.2.2/./libexec/moc using package Qt6CoreTools.
-- Tool 'Qt6::rcc' was found at /usr/local/Qt-6.2.2/./libexec/rcc.
-- Tool 'Qt6::tracegen' was found at /usr/local/Qt-6.2.2/./libexec/tracegen.
-- Tool 'Qt6::cmake_automoc_parser' was found at /usr/local/Qt-6.2.2/./libexec/cmake_automoc_parser.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Using Qt bundled PCRE2.
-- Found WrapPCRE2: TRUE
-- Using source syncqt found at: /Users/admin/repos/qt-everywhere-src-6.2.2/qtbase/libexec/syncqt.pl
-- Running syncqt for module: 'QtCore'
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "68.2")
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
CMake Warning at qtbase/src/corelib/CMakeLists.txt:1230 (message):
  xmlstarlet was not found.  freedesktop.org.xml will not be minified!
 
 
-- Running syncqt for module: 'QtConcurrent'
-- Running syncqt for module: 'QtSql'
-- Running syncqt for module: 'QtNetwork'
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_INCLUDE_DIRS)
-- Running syncqt for module: 'QtXml'
-- Searching for tool 'Qt6::uic' in package Qt6WidgetsTools.
-- Qt6::uic was found at /usr/local/Qt-6.2.2/./libexec/uic using package Qt6WidgetsTools.
-- Tool 'Qt6::qlalr' was found at /usr/local/Qt-6.2.2/./libexec/qlalr.
-- Tool 'Qt6::qvkgen' was found at /usr/local/Qt-6.2.2/./libexec/qvkgen.
-- Tool 'Qt6::qtpaths' was found at /usr/local/Qt-6.2.2/bin/qtpaths.
-- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
-- Using Qt bundled Harfbuzz.
-- Found WrapHarfbuzz: TRUE
-- Using Qt bundled PNG.
-- Found WrapPNG: TRUE
-- Using Qt bundled Freetype.
-- Found WrapFreetype: TRUE
-- Running syncqt for module: 'QtGui'
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtOpenGL'
-- Running syncqt for module: 'QtWidgets'
-- Running syncqt for module: 'QtOpenGLWidgets'
-- Running syncqt for module: 'QtDeviceDiscoverySupport'
-- Running syncqt for module: 'QtFbSupport'
-- Running syncqt for module: 'QtTest'
-- Running syncqt for module: 'QtPrintSupport'
-- Could NOT find Cups (missing: CUPS_LIBRARIES CUPS_INCLUDE_DIR)
-- Could NOT find DB2 (missing: DB2_INCLUDE_DIR DB2_LIBRARY)
-- Could NOT find MySQL (missing: MySQL_LIBRARY MySQL_INCLUDE_DIR)
-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR)
-- Could NOT find Oracle (missing: Oracle_LIBRARY Oracle_INCLUDE_DIR)
-- Could NOT find ODBC (missing: ODBC_LIBRARY ODBC_INCLUDE_DIR)
-- Found SQLite3: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include (found version "3.36.0")
-- Could NOT find Interbase (missing: Interbase_LIBRARY Interbase_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
Generating Plugins files for BundledLibpng;BundledFreetype;BundledHarfbuzz;BundledPcre2;EntryPointPrivate;Core;Concurrent;Sql;Network;Xml;Gui;OpenGL;Widgets;OpenGLWidgets;DeviceDiscoverySupportPrivate;FbSupportPrivate;Test;PrintSupport...
Configuring 'qtshadertools'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtShaderTools'
-- Searching for tool 'Qt6::qsb' in package Qt6ShaderToolsTools.
-- Qt6::qsb was found at /usr/local/Qt-6.2.2/bin/qsb using package Qt6ShaderToolsTools.
Generating Plugins files for BundledGlslang_Spirv;BundledGlslang_Osdependent;BundledGlslang_Oglcompiler;BundledGlslang_Glslang;BundledSpirv_Cross;ShaderTools...
Configuring 'qtsvg'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtSvg'
-- Running syncqt for module: 'QtSvgWidgets'
Generating Plugins files for Svg;SvgWidgets...
Configuring 'qtimageformats'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
-- Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
-- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
-- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
Generating Plugins files for ...
Configuring 'qtdeclarative'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Found PythonInterp: /usr/bin/python (found version "2.7.16")
-- Searching for tool 'Qt6::qmltyperegistrar' in package Qt6QmlTools.
-- Qt6::qmltyperegistrar was found at /usr/local/Qt-6.2.2/./libexec/qmltyperegistrar using package Qt6QmlTools.
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Performing Test HAVE_pointer_32bit
-- Performing Test HAVE_pointer_32bit - Failed
-- Performing Test HAVE_pointer_64bit
-- Performing Test HAVE_pointer_64bit - Success
-- Performing Test HAVE_arm_thumb
-- Performing Test HAVE_arm_thumb - Failed
-- Performing Test HAVE_arm_fp
-- Performing Test HAVE_arm_fp - Success
-- Running syncqt for module: 'QtQml'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQmlModels'
-- Running syncqt for module: 'QtQmlCore'
-- Running syncqt for module: 'QtQmlWorkerScript'
-- Running syncqt for module: 'QtQmlLocalStorage'
-- Running syncqt for module: 'QtQmlXmlListModel'
-- Running syncqt for module: 'QtQuick'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQuickShapes'
-- Running syncqt for module: 'QtQuickLayouts'
-- Running syncqt for module: 'QtQuickTest'
-- Running syncqt for module: 'QtQuickTestUtils'
-- Running syncqt for module: 'QtQuickParticles'
-- Running syncqt for module: 'QtQuickWidgets'
-- Running syncqt for module: 'QtQuickTemplates2'
-- Running syncqt for module: 'QtQuickControls2Impl'
-- Running syncqt for module: 'QtQuickControls2'
-- Running syncqt for module: 'QtQuickDialogs2Utils'
-- Running syncqt for module: 'QtQuickDialogs2QuickImpl'
-- Running syncqt for module: 'QtQuickDialogs2'
-- Running syncqt for module: 'QtQuickControlsTestUtils'
-- Running syncqt for module: 'QtLabsSettings'
-- Running syncqt for module: 'QtLabsQmlModels'
-- Running syncqt for module: 'QtLabsFolderListModel'
-- Running syncqt for module: 'QtLabsAnimation'
-- Running syncqt for module: 'QtLabsWavefrontMesh'
-- Running syncqt for module: 'QtLabsSharedImage'
-- Running syncqt for module: 'QtPacketProtocol'
-- Running syncqt for module: 'QtQmlDom'
-- Running syncqt for module: 'QtQmlCompiler'
-- Tool 'Qt6::qmlcachegen' was found at /usr/local/Qt-6.2.2/./libexec/qmlcachegen.
-- Running syncqt for module: 'QtQmlDebug'
-- Tool 'Qt6::qmldom' was found at /usr/local/Qt-6.2.2/bin/qmldom.
-- Tool 'Qt6::qmllint' was found at /usr/local/Qt-6.2.2/bin/qmllint.
-- Tool 'Qt6::qmlimportscanner' was found at /usr/local/Qt-6.2.2/./libexec/qmlimportscanner.
-- Tool 'Qt6::qmlformat' was found at /usr/local/Qt-6.2.2/bin/qmlformat.
-- Tool 'Qt6::qmlprofiler' was found at /usr/local/Qt-6.2.2/bin/qmlprofiler.
-- Tool 'Qt6::qmltestrunner' was found at /usr/local/Qt-6.2.2/bin/qmltestrunner.
Generating Plugins files for Qml;QmlModels;QmlCore;QmlWorkerScript;QmlLocalStorage;QmlXmlListModel;Quick;QuickShapesPrivate;QuickLayouts;QuickTest;QuickTestUtilsPrivate;QuickParticlesPrivate;QuickWidgets;QuickTemplates2;QuickControls2Impl;QuickControls2;QuickDialogs2Utils;QuickDialogs2QuickImpl;QuickDialogs2;QuickControlsTestUtilsPrivate;LabsSettings;LabsQmlModels;LabsFolderListModel;LabsAnimation;LabsWavefrontMesh;LabsSharedImage;PacketProtocolPrivate;QmlDevToolsPrivate;QmlDomPrivate;QmlCompilerPrivate;QmlDebugPrivate...
Configuring 'qt3d'
Configuring 'qt5compat'
Configuring 'qtactiveqt'
Configuring 'qtmultimedia'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtMultimedia'
QtMultimedia: created deprecated header(s) { qtmultimediadefs.h }
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Found AVFoundation: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/AVFoundation.framework
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find WrapPulseAudio (missing: PULSEAUDIO_LIBRARY PULSEAUDIO_INCLUDE_DIR WrapPulseAudio_FOUND)
-- Could NOT find WMF (missing: WMF_STRMIIDS_LIBRARY WMF_AMSTRMID_LIBRARY WMF_DMOGUIDS_LIBRARY WMF_UUID_LIBRARY WMF_MSDMO_LIBRARY WMF_OLE32_LIBRARY WMF_OLEAUT32_LIBRARY WMF_MF_LIBRARY WMF_MFUUID_LIBRARY WMF_MFPLAT_LIBRARY WMF_MFCORE_LIBRARY WMF_PROPSYS_LIBRARY)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Performing Test evr.h
-- Performing Test evr.h - Failed
-- Performing Test Vivante GPU
-- Performing Test Vivante GPU - Failed
-- Performing Test Video for Linux
-- Performing Test Video for Linux - Failed
-- Performing Test wmsdk.h
-- Performing Test wmsdk.h - Failed
-- Running syncqt for module: 'QtMultimediaQuick'
-- Running syncqt for module: 'QtMultimediaWidgets'
Generating Plugins files for Multimedia;MultimediaQuickPrivate;MultimediaWidgets...
Configuring 'qtcharts'
Configuring 'qtcoap'
Configuring 'qtconnectivity'
Configuring 'qtdatavis3d'
Configuring 'qttools'
Configuring 'qtdoc'
Configuring 'qtlottie'
Configuring 'qtmqtt'
Configuring 'qtnetworkauth'
Configuring 'qtopcua'
Configuring 'qtserialport'
Configuring 'qtpositioning'
Configuring 'qtquicktimeline'
Configuring 'qtquick3d'
Configuring 'qtremoteobjects'
Configuring 'qtscxml'
Configuring 'qtsensors'
Configuring 'qtserialbus'
Configuring 'qttranslations'
Configuring 'qtvirtualkeyboard'
Configuring 'qtwayland'
Configuring 'qtwebsockets'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Running syncqt for module: 'QtWebSockets'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.
 
Generating Plugins files for WebSockets...
Configuring 'qtwebchannel'
Configuring 'qtwebengine'
Configuring 'qtwebview'
-- The following packages have been found:
 
 * QtBuildInternals
 * Backtrace
 * ZLIB
 * SQLite3
 * Qt6Xml (required version >= 6.2.2)
 * Qt6OpenGLWidgets (required version >= 6.2.2)
 * Qt6Sql (required version >= 6.2.2)
 * Qt6Concurrent (required version >= 6.2.2)
 * PythonInterp
 * Qt6Svg (required version >= 6.2.2)
 * Qt6WidgetsTools (required version >= 6.2.2)
 * Qt6Widgets (required version >= 6.2.2)
 * Qt6QuickTemplates2Private (required version >= 6.2.2)
 * Qt6QuickControls2 (required version >= 6.2.2)
 * Qt6ShaderToolsTools (required version >= 6.2.2)
 * Qt6ShaderTools
 * AVFoundation
 * Qt6BuildInternals (required version >= 6.2.2)
 * WrapAtomic
 * WrapBacktrace
 * WrapPCRE2
 * WrapRt
 * Qt6CoreTools (required version >= 6.2.2)
 * Qt6Core (required version >= 6.2.2)
 * Qt6Network (required version >= 6.2.2)
 * GLESv2
 * WrapPNG
 * WrapHarfbuzz
 * WrapFreetype
 * WrapZLIB (required version >= 1.0.8)
 * Qt6Gui (required version >= 6.2.2)
 * Qt6Qml (required version >= 6.2.2)
 * Qt6QmlModels (required version >= 6.2.2)
 * Qt6OpenGL (required version >= 6.2.2)
 * Qt6Quick (required version >= 6.2.2)
 * Qt6Test (required version >= 6.2.2)
 * Qt6QmlTools (required version >= 6.2.2)
 * Qt6QmlPrivate (required version >= 6.2.2)
 * Threads
 * Qt6QuickPrivate (required version >= 6.2.2)
 * Qt6QuickTest (required version >= 6.2.2)
 * Qt6 (required version >= 6.2.2)
 * Qt6HostInfo
 
-- The following OPTIONAL packages have not been found:
 
 * zstd
 * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Libudev
 * double-conversion
 * WrapDoubleConversion
 * ICU
 * Libsystemd
 * Libb2
 * PCRE2 (required version >= 10.20)
 * WrapSystemPCRE2 (required version >= 10.20)
 * Slog2
 * unofficial-brotli
 * WrapBrotli
 * Libproxy
 * OpenSSL
 * WrapOpenSSLHeaders
 * WrapOpenSSL
 * GSSAPI, Generic Security Services Application Program Interface
 * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
 * ATSPI2
 * DirectFB
 * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
 * Freetype (required version >= 2.2.0)
 * WrapSystemFreetype (required version >= 2.2.0)
 * Fontconfig
 * gbm, Mesa gbm library., <http://www.mesa3d.org>
 * harfbuzz (required version >= 2.6.0)
 * WrapSystemHarfbuzz (required version >= 2.6.0)
 * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
 * md4c
 * WrapSystemMd4c
 * PNG
 * WrapSystemPNG
 * Mtdev
 * OpenGL
 * WrapOpenGL
 * Tslib
 * Vulkan
 * WrapVulkanHeaders
 * GTK3 (required version >= 3.6)
 * Cups
 * DB2, IBM DB2 client library, <https://www.ibm.com>
 * MySQL, MySQL client library, <https://www.mysql.com>
 * PostgreSQL
 * Oracle, Oracle client library, <https://www.oracle.com>
 * ODBC
 * Interbase, Interbase client library, <https://www.embarcadero.com/products/interbase>
 * JPEG
 * Jasper
 * WrapJasper
 * TIFF
 * WebP
 * WrapWebP
 * Libmng
 * LTTngUST
 * ALSA
 * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
 * GObject
 * GStreamer
 * PulseAudio
 * WrapPulseAudio
 * WMF
 * PkgConfig
 * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
 * Qt6QmlCompilerPlus
 
Configure summary:
 
Building for: macx-ios-clang (arm64;x86_64), arm64 features: neon crypto)
Compiler: clang (Apple) 13.0.0.13000029
Build options:
  Mode ................................... release
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. no
  Using C standard ....................... C11
  Using C++ standard ..................... C++20
  Using ccache ........................... no
  Relocatable ............................ no
  Using precompiled headers .............. yes
  Using LTCG ............................. no
  Target compiler supports:
    Intrinsics without compiler architecture option  yes
    Extensions ........................... NEON AES
  Sanitizers:
    Addresses ............................ no
    Threads .............................. no
    Memory ............................... no
    Fuzzer (instrumentation only) ........ no
    Undefined ............................ no
  Build parts ............................ libs
  App store compliance ................... yes
Qt modules and options:
  Qt Concurrent .......................... yes
  Qt D-Bus ............................... no
  Qt D-Bus directly linked to libdbus .... no
  Qt Gui ................................. yes
  Qt Network ............................. yes
  Qt PrintSupport ........................ yes
  Qt Sql ................................. yes
  Qt Testlib ............................. yes
  Qt Widgets ............................. yes
  Qt Xml ................................. yes
Support enabled for:
  Using pkg-config ....................... no
  udev ................................... no
  Using system zlib ...................... yes
  Zstandard support ...................... no
  Thread support ......................... yes
Common build options:
  Linker can resolve circular dependencies  yes
Qt Core:
  backtrace .............................. yes
  DoubleConversion ....................... yes
    Using system DoubleConversion ........ no
  GLib ................................... no
  ICU .................................... no
  Using system libb2 ..................... no
  Built-in copy of the MIME database ..... yes
  Tracing backend ........................ <none>
  Logging backends:
    journald ............................. no
    syslog ............................... no
    slog2 ................................ no
  PCRE2 .................................. yes
    Using system PCRE2 ................... no
Qt Sql:
  SQL item models ........................ yes
Qt Network:
  getifaddrs() ........................... yes
  IPv6 ifname ............................ yes
  libproxy ............................... no
  SecureTransport ........................ yes
  OpenSSL ................................ no
    Qt directly linked to OpenSSL ........ no
  OpenSSL 1.1 ............................ no
  DTLS ................................... no
  OCSP-stapling .......................... no
  SCTP ................................... no
  Use system proxies ..................... yes
  GSSAPI ................................. no
  Brotli Decompression Support ........... no
Qt Gui:
  Accessibility .......................... yes
  FreeType ............................... yes
    Using system FreeType ................ no
  HarfBuzz ............................... yes
    Using system HarfBuzz ................ no
  Fontconfig ............................. no
  Image formats:
    GIF .................................. yes
    ICO .................................. yes
    JPEG ................................. yes
      Using system libjpeg ............... no
    PNG .................................. yes
      Using system libpng ................ no
  Text formats:
    HtmlParser ........................... yes
    CssParser ............................ yes
    OdfWriter ............................ yes
    MarkdownReader ....................... yes
      Using system libmd4c ............... no
    MarkdownWriter ....................... yes
  EGL .................................... no
  OpenVG ................................. no
  OpenGL:
    Desktop OpenGL ....................... no
    OpenGL ES 2.0 ........................ yes
    OpenGL ES 3.0 ........................ yes
    OpenGL ES 3.1 ........................ no
    OpenGL ES 3.2 ........................ no
  Vulkan ................................. no
  Session Management ..................... yes
Features used by QPA backends:
  evdev .................................. no
  libinput ............................... no
  INTEGRITY HID .......................... no
  mtdev .................................. no
  tslib .................................. no
  xkbcommon .............................. no
  X11 specific:
    XLib ................................. no
    XCB Xlib ............................. no
    EGL on X11 ........................... no
    xkbcommon-x11 ........................ no
    xcb-sm ............................... no
QPA backends:
  DirectFB ............................... no
  EGLFS .................................. no
  EGLFS details:
    EGLFS OpenWFD ........................ no
    EGLFS i.Mx6 .......................... no
    EGLFS i.Mx6 Wayland .................. no
    EGLFS RCAR ........................... no
    EGLFS EGLDevice ...................... no
    EGLFS GBM ............................ no
    EGLFS VSP2 ........................... no
    EGLFS Mali ........................... no
    EGLFS Raspberry Pi ................... no
    EGLFS X11 ............................ no
  LinuxFB ................................ no
  VNC .................................... no
  VK_KHR_display ......................... no
  QNX:
    lgmon ................................ no
    IMF .................................. no
  XCB:
    Using system-provided xcb-xinput ..... no
    GL integrations:
      GLX Plugin ......................... no
        XCB GLX .......................... no
      EGL-X11 Plugin ..................... no
  Windows:
    Direct 2D ............................ no
    Direct 2D 1.1 ........................ no
    DirectWrite .......................... no
    DirectWrite 3 ........................ no
Qt Widgets:
  GTK+ ................................... no
  Styles ................................. Fusion Windows
Qt Testlib:
  Tester for item models ................. yes
Qt PrintSupport:
  CUPS ................................... no
Qt Sql Drivers:
  DB2 (IBM) .............................. no
  InterBase .............................. no
  MySql .................................. no
  OCI (Oracle) ........................... no
  ODBC ................................... no
  PostgreSQL ............................. no
  SQLite ................................. yes
    Using system provided SQLite ......... no
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt QML:
  QML network support .................... yes
  QML debugging and profiling support .... yes
  QML just-in-time compiler .............. no
  QML sequence object .................... yes
  QML XML http request ................... yes
  QML Locale ............................. yes
Qt QML Models:
  QML list model ......................... yes
  QML delegate model ..................... yes
Qt Quick:
  AnimatedImage item ..................... yes
  Canvas item ............................ yes
  Support for Qt Quick Designer .......... yes
  Flipable item .......................... yes
  GridView item .......................... yes
  ListView item .......................... yes
  TableView item ......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner items ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ no
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... yes
  Windows Media Foundation ............... no
 
Note: Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library.
 
Qt is now configured for building. Just run 'cmake --build . --parallel'
 
Once everything is built, you must run 'cmake --install .'
Qt will be installed into '/usr/local/Qt-6.2.2-ios'
 
To configure and build other Qt modules, you can use the following convenience script:
        /usr/local/Qt-6.2.2-ios/bin/qt-configure-module
 
If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory
 
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/admin/repos/qt-everywhere-src-6.2.2
cmake --build .
cd /usr/local/
sudo mkdir Qt-6.2.2-ios
sudo chown admin:admin Qt-6.2.2-ios
cmake --install .

The following files appeared in /usr/local/Qt-6.2.2-ios/lib folder:

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
cmake                                   libQt6LabsSharedImage.prl               libQt6QmlDom.a                          libQt6QuickShapes.prl
libQt6BundledFreetype.a                 libQt6LabsWavefrontMesh.a               libQt6QmlDom.prl                        libQt6QuickTemplates2.a
libQt6BundledGlslang_Glslang.a          libQt6LabsWavefrontMesh.prl             libQt6QmlLocalStorage.a                 libQt6QuickTemplates2.prl
libQt6BundledGlslang_Oglcompiler.a      libQt6Multimedia.a                      libQt6QmlLocalStorage.prl               libQt6QuickTest.a
libQt6BundledGlslang_Osdependent.a      libQt6Multimedia.prl                    libQt6QmlModels.a                       libQt6QuickTest.prl
libQt6BundledGlslang_Spirv.a            libQt6MultimediaQuick.a                 libQt6QmlModels.prl                     libQt6QuickTestUtils.a
libQt6BundledHarfbuzz.a                 libQt6MultimediaQuick.prl               libQt6QmlWorkerScript.a                 libQt6QuickTestUtils.prl
libQt6BundledLibpng.a                   libQt6MultimediaWidgets.a               libQt6QmlWorkerScript.prl               libQt6QuickWidgets.a
libQt6BundledPcre2.a                    libQt6MultimediaWidgets.prl             libQt6QmlXmlListModel.a                 libQt6QuickWidgets.prl
libQt6BundledSpirv_Cross.a              libQt6Network.a                         libQt6QmlXmlListModel.prl               libQt6ShaderTools.a
libQt6Concurrent.a                      libQt6Network.prl                       libQt6Quick.a                           libQt6ShaderTools.prl
libQt6Concurrent.prl                    libQt6OpenGL.a                          libQt6Quick.prl                         libQt6Sql.a
libQt6Core.a                            libQt6OpenGL.prl                        libQt6QuickControls2.a                  libQt6Sql.prl
libQt6Core.prl                          libQt6OpenGLWidgets.a                   libQt6QuickControls2.prl                libQt6Svg.a
libQt6DeviceDiscoverySupport.a          libQt6OpenGLWidgets.prl                 libQt6QuickControls2Impl.a              libQt6Svg.prl
libQt6DeviceDiscoverySupport.prl        libQt6PacketProtocol.a                  libQt6QuickControls2Impl.prl            libQt6SvgWidgets.a
libQt6FbSupport.a                       libQt6PacketProtocol.prl                libQt6QuickControlsTestUtils.a          libQt6SvgWidgets.prl
libQt6FbSupport.prl                     libQt6PrintSupport.a                    libQt6QuickControlsTestUtils.prl        libQt6Test.a
libQt6Gui.a                             libQt6PrintSupport.prl                  libQt6QuickDialogs2.a                   libQt6Test.prl
libQt6Gui.prl                           libQt6Qml.a                             libQt6QuickDialogs2.prl                 libQt6WebSockets.a
libQt6LabsAnimation.a                   libQt6Qml.prl                           libQt6QuickDialogs2QuickImpl.a          libQt6WebSockets.prl
libQt6LabsAnimation.prl                 libQt6QmlCompiler.a                     libQt6QuickDialogs2QuickImpl.prl        libQt6Widgets.a
libQt6LabsFolderListModel.a             libQt6QmlCompiler.prl                   libQt6QuickDialogs2Utils.a              libQt6Widgets.prl
libQt6LabsFolderListModel.prl           libQt6QmlCore.a                         libQt6QuickDialogs2Utils.prl            libQt6Xml.a
libQt6LabsQmlModels.a                   libQt6QmlCore.prl                       libQt6QuickLayouts.a                    libQt6Xml.prl
libQt6LabsQmlModels.prl                 libQt6QmlDebug.a                        libQt6QuickLayouts.prl                  metatypes
libQt6LabsSettings.a                    libQt6QmlDebug.prl                      libQt6QuickParticles.a                  objects-Release
libQt6LabsSettings.prl                  libQt6QmlDevTools.a                     libQt6QuickParticles.prl
libQt6LabsSharedImage.a                 libQt6QmlDevTools.prl                   libQt6QuickShapes.a

Added QT version to QT Creator:

and was able to run my app on a simulator:

Links

Leave a Reply

Your email address will not be published. Required fields are marked *