-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathqt6_build.py
More file actions
executable file
·955 lines (820 loc) · 36 KB
/
qt6_build.py
File metadata and controls
executable file
·955 lines (820 loc) · 36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
#!/usr/bin/env python3
import sys
import os
import subprocess
import shutil
import glob
import zipfile
import argparse
import platform
import datetime
import tempfile
from math import ceil
from pathlib import Path
from target_qt6_version import qt_version, llvm_version, msvc_build, msvc_dir_name, vs_version, min_macos, qt_modules, pyside_modules
build_opts = ["-no-static", "-release", "-opensource", "-confirm-license", "-nomake", "examples",
"-nomake", "tests", "-no-feature-tuiotouch", "-qt-libpng", "-qt-libjpeg", "-qt-libb2", "-no-glib",
"-qt-tiff", "-qt-webp", "-qt-pcre", "-no-feature-zstd", "-no-feature-brotli", "-no-feature-graphicseffect",
"-no-feature-style-windowsvista", "-no-feature-style-windows11"]
if sys.platform == 'linux':
build_opts += ["-xcb", "-xcb-xlib"]
def remove_dir(path):
if sys.platform == 'win32':
# Windows being Windows. Not doing this as a recursive delete from the shell will yield
# "access denied" errors. Even deleting the individual files from the terminal does this.
# Somehow, deleting this way works correctly.
subprocess.call('rmdir /S /Q "' + str(path) + '"', shell=True)
else:
shutil.rmtree(path)
def keychain_unlocker():
keychain_unlocker = os.environ["HOME"] + "/unlock-keychain"
if os.path.exists(keychain_unlocker):
return subprocess.call([keychain_unlocker]) == 0
return True
def mac_should_strip(file_path):
"""Check if a file is a Mach-O binary that we should strip."""
if os.path.islink(file_path) or not os.path.isfile(file_path):
return False
if file_path.endswith('.o'):
return False
header = open(file_path, 'rb').read(4)
if header not in (b"\xcf\xfa\xed\xfe", b"\xca\xfe\xba\xbe"):
return False
# Skip binaries that are already signed with a non-ad-hoc signature.
# They were built by another project and it is that project's
# responsibility to provide debug symbols for them.
sig = subprocess.run(["codesign", "-d", "--verbose=2", file_path],
capture_output=True, text=True)
if sig.returncode == 0 and "Authority=" in sig.stderr:
return False
return True
def mac_sign(path):
if not keychain_unlocker():
return False
args = ["codesign", "-f", "--options", "runtime", "--timestamp", "-s", "Developer ID"]
if path.endswith(".dmg"):
args.append(path)
else:
for f in glob.glob(path):
args.append(f)
return subprocess.call(args) == 0
def signWindowsFiles(path: str):
timeServers = ["http://timestamp.digicert.com", "http://timestamp.comodoca.com/rfc3161"]
for timeServer in timeServers:
proc = subprocess.run([
"java", "-jar",
"C:\\jenkins\\jsign.jar",
"--name", "Binary Ninja",
"--url", "https://binary.ninja/",
"--storetype", "PIV",
"--storepass", os.environ['YUBIKEY_PIN'],
"--tsaurl", timeServer,
"--tsmode", "RFC3161",
"--alias", "AUTHENTICATION",
"--certfile", "C:\\jenkins\\yubi-1-user.crt",
path
], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
if proc.returncode == 0:
print("Signed {}".format(path))
return True
else:
print("Signing {} with timeserver: {} failed. Trying next server. {}".format(path, timeServer, proc.stdout.decode('charmap')))
print("Failed to sign file %s" % path)
return False
def apply_patch(path, qt_source_path):
# On some Windows machines, git apply breaks. On others, patch breaks. Just try both, because
# Windows environments are so hard to predict we can't rely on anything to be sane.
if subprocess.call(["git", "apply", os.path.abspath(path)], cwd=qt_source_path) != 0:
if subprocess.call(["patch", "-p1", "-i", os.path.abspath(path)], cwd=qt_source_path) != 0:
print("Failed to patch source")
sys.exit(1)
parser = argparse.ArgumentParser(description = "Build and install Qt 6", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("--no-clone", help="skip cloning the Qt 6 source code", action="store_true")
parser.add_argument("--no-clean", dest='clean', action='store_false', default=True, help="skip removing the Qt 6 source code")
parser.add_argument("--no-prompt", dest='prompt', action='store_false', default=True, help="Don't wait for user prompt")
parser.add_argument("--no-install", dest='install', action='store_false', default=True, help="Don't install build products to your home folder")
parser.add_argument("--no-pyside", dest='pyside', action='store_false', default=True, help="Don't build PySide")
parser.add_argument("--patch", help="patch the source before building")
parser.add_argument("--asan", help="build with ASAN", action="store_true")
parser.add_argument("--tsan", help="build with TSAN", action="store_true")
parser.add_argument("--debug", help="build a debug configuration", action="store_true")
parser.add_argument("--universal", help="build for both x86_64 and arm64 (arm64 Mac host only)", action="store_true")
parser.add_argument("--mirror", help="use source mirror", action="store")
parser.add_argument("--sign", dest='sign', help="sign all executables", action="store_true")
parser.add_argument("--qt-source", help="use Qt source directory", action="store")
parser.add_argument("--pyside-source", help="use PySide source directory", action="store")
parser.add_argument("--build-dir", dest="build_dir", help="Custom build directory to bypass windows PATH_MAX limits", action="store")
parser.add_argument("--symbols", help="extract debug symbols into a separate archive and strip debug info from binaries", action="store_true", default=True)
parser.add_argument("--no-symbols", dest="symbols", help="disable debug symbol extraction", action="store_false")
if not sys.platform.startswith("win"):
parser.add_argument("-j", "--jobs", dest='jobs', default=ceil(os.cpu_count()*1.1), help="Number of build threads (Defaults to 1.1*cpu_count)")
args = parser.parse_args()
if args.patch:
args.patch = os.path.abspath(args.patch)
if args.asan:
print("Building with ASAN")
build_opts.remove("-release")
build_opts += ["-debug", "-sanitize", "address"]
args.pyside = False
if args.tsan:
print("Building with TSAN")
build_opts.remove("-release")
build_opts += ["-debug", "-sanitize", "thread"]
args.pyside = False
if args.debug:
print("Building debug")
build_opts.remove("-release")
build_opts += ["-debug"]
extra_cmake_args = []
if args.symbols:
if sys.platform == 'win32':
debug_flag = "/Zi"
extra_cmake_args += ["-DCMAKE_EXE_LINKER_FLAGS=/DEBUG",
"-DCMAKE_MODULE_LINKER_FLAGS=/DEBUG",
"-DCMAKE_SHARED_LINKER_FLAGS=/DEBUG"]
elif sys.platform == 'darwin':
debug_flag = "-gline-tables-only"
else:
debug_flag = "-g1"
extra_cmake_args += [f"-DCMAKE_C_FLAGS={debug_flag}",
f"-DCMAKE_CXX_FLAGS={debug_flag}"]
configure_extra = ["--"] + extra_cmake_args if extra_cmake_args else []
mirror = []
if args.mirror:
print(f"Using source mirror: {args.mirror}")
mirror = ["--mirror", args.mirror]
else:
mirror = ["--mirror", "https://github.com/qt/"]
if sys.version_info.major < 3:
print('Please build Qt 6 with Python 3')
exit(1)
if args.pyside and "VIRTUAL_ENV" not in os.environ:
print('Running under Poetry is required to build PySide')
exit(1)
if sys.platform.startswith("win"):
make_cmd = "ninja"
parallel = []
cmake_generator_array = ["-G", "Ninja"]
python3_cmd = "py"
# Import vcvars from Visual Studio
vcvars = subprocess.check_output(fR"""call "C:\Program Files\Microsoft Visual Studio\{vs_version}\Professional\VC\Auxiliary\Build\vcvars64.bat" -vcvars_ver={msvc_build} && set""", shell=True)
for line in vcvars.split(b'\r\n'):
line = line.strip()
if b'=' not in line:
continue
parts = line.split(b'=')
key = parts[0].decode()
value = b'='.join(parts[1:]).decode()
os.environ[key] = value
else:
make_cmd = "ninja"
parallel = ["-j", str(args.jobs)]
cmake_generator_array = ["-G", "Ninja"]
python3_cmd = sys.executable
if sys.platform == 'win32':
os.environ["HOME"] = os.environ["HOMEDRIVE"] + os.environ["HOMEPATH"]
# Copy libclang to the build directory
if os.path.exists(f'./artifacts-extern/artifacts/libclang-{llvm_version}.zip'):
with zipfile.ZipFile(f'./artifacts-extern/artifacts/libclang-{llvm_version}.zip') as zf:
zf.extractall('build')
os.environ['LLVM_INSTALL_DIR'] = os.path.realpath('build/libclang')
if "LLVM_INSTALL_DIR" in os.environ:
llvm_dir = os.path.join(os.environ["LLVM_INSTALL_DIR"], llvm_version)
else:
llvm_dir = os.path.join(os.environ["HOME"], "libclang", llvm_version)
if not os.path.exists(llvm_dir):
print("libclang needs to be installed.")
print(f'Set LLVM_INSTALL_DIR, or install to {os.path.join(os.environ["HOME"], "libclang", llvm_version)}')
sys.exit(1)
os.environ["LLVM_INSTALL_DIR"] = llvm_dir
base_dir = Path(__file__).resolve().parent
if args.build_dir is not None:
qt_dir = Path(args.build_dir).resolve()
else:
qt_dir = base_dir / "build"
source_path = qt_dir / "src"
qt_source_path = source_path / "qt"
build_path = source_path / "build"
artifact_path = base_dir / "artifacts"
if args.asan:
qt_version_dir = qt_version + "-asan"
elif args.tsan:
qt_version_dir = qt_version + "-tsan"
else:
qt_version_dir = qt_version
if sys.platform == 'win32':
compiler = msvc_dir_name
elif sys.platform == 'darwin':
compiler = "clang_64"
else:
compiler = "gcc_64"
install_path = qt_dir / "install" / "Qt" / qt_version_dir / compiler
qt_patches_path = base_dir / 'qt_patches'
pyside_patches_path = base_dir / 'pyside_patches'
if sys.platform == 'win32':
qtpaths = install_path / 'bin' / 'qtpaths.exe'
else:
qtpaths = install_path / 'bin' / 'qtpaths'
pyside_source_path = source_path / "pyside-setup"
pyside_build_path = source_path / "pyside-build"
pyside_install_path = install_path / "pyside"
bundle_path = install_path / "bundle"
print(f"Target Qt version is {qt_version}")
print(f"Build path will be {build_path}")
print(f"Build products path will be {install_path}")
if args.install:
# From deploy.py
if "QT_INSTALL_DIR" in os.environ:
user_qt_parent_path = Path(os.environ["QT_INSTALL_DIR"]) / qt_version_dir
else:
user_qt_parent_path = Path.home() / 'Qt' / qt_version_dir
print(f"Install path will be {user_qt_parent_path}")
print(f"LLVM path is {llvm_dir}")
print(f"Clean build directory: {'YES' if args.clean else 'NO'}")
print(f"Universal build: {'YES' if args.universal else 'NO'}")
print(f"Install to home directory: {'YES' if args.install else 'NO'}")
print(f"Codesigning: {'YES' if args.sign else 'NO'}")
print(f"PySide: {'YES' if args.pyside else 'NO'}")
print("")
qt_patches = []
for patch in sorted(qt_patches_path.iterdir()):
if patch.suffix == '.patch':
resolved_path = patch.resolve()
qt_patches.append(patch.resolve())
pyside_patches = []
for patch in sorted(pyside_patches_path.iterdir()):
if patch.suffix == '.patch':
resolved_path = patch.resolve()
pyside_patches.append(patch.resolve())
if args.qt_source:
print(f"Use existing Qt source directory at {args.qt_source}")
else:
for patch in qt_patches:
print(f"Apply Qt patch: {patch}")
if args.pyside:
if args.pyside_source:
print(f"Use existing PySide source directory at {args.pyside_source}")
else:
for patch in pyside_patches:
print(f"Apply PySide patch: {patch}")
if sys.platform.startswith("win") and len(str(qt_dir)) > 40:
# I cannot believe this is a real issue and yet there went 30 minutes of my life
print()
print("\xF0\x9F\x9A\xAB Your build directory is too long and Windows will probably give you weird errors about files not being found")
print("\xF0\x9F\x9A\xAB You can try building anyway, though! Godspeed!")
if not args.prompt:
sys.exit(1)
if args.prompt and input("\nIs this correct (y/n)? ") != "y":
print("Aborted")
sys.exit(1)
if not artifact_path.exists():
artifact_path.mkdir(parents=True)
if args.clean:
# Clean existing files
for f in artifact_path.glob('*'):
f.unlink()
if build_path.exists():
remove_dir(build_path)
if (base_dir / "CMakeCache.txt").exists():
(base_dir / "CMakeCache.txt").unlink()
if args.install and user_qt_parent_path.exists():
if args.prompt and input("\nAn install already exists at the target location. Overwrite? ") != "y":
print("Aborted")
sys.exit(1)
if not args.no_clone:
if os.path.exists(source_path):
remove_dir(source_path)
if args.qt_source:
print("\nCopying existing Qt source...")
shutil.copytree(args.qt_source, qt_source_path)
else:
print("\nCloning Qt...")
if args.mirror:
if subprocess.call(["git", "clone", f"{args.mirror}qt5.git", qt_source_path]) != 0:
print("Failed to clone Qt git repository")
sys.exit(1)
else:
if subprocess.call(["git", "clone", "https://github.com/qt/qt5.git", qt_source_path]) != 0:
print("Failed to clone Qt git repository")
sys.exit(1)
if subprocess.call(["git", "checkout", qt_version], cwd=qt_source_path) != 0:
print("Failed to check out branch/tag '{}'".format(qt_version))
sys.exit(1)
init_repo_options = ["--module-subset=" + ",".join(qt_modules), "--no-update"]
if sys.platform == 'win32':
if subprocess.call(["perl", os.path.join(qt_source_path, "init-repository.pl")] + init_repo_options + mirror, cwd=qt_source_path) != 0:
print("Failed to initialize submodules")
sys.exit(1)
else:
if subprocess.call([os.path.join(qt_source_path, "init-repository")] + init_repo_options + mirror, cwd=qt_source_path) != 0:
print("Failed to initialize submodules")
sys.exit(1)
# Check out submodules, but don't check out recursively until we've had a chance to patch
# module paths
if subprocess.call(["git", "submodule", "update", "--init"] + qt_modules, cwd=qt_source_path) != 0:
print("Failed to check out submodules")
sys.exit(1)
if args.mirror:
# Fix qttools .gitmodules to use mirror
open(os.path.join(qt_source_path, "qttools", ".gitmodules"), 'w').write(
'[submodule "src/assistant/qlitehtml"]\n' +
' path = src/assistant/qlitehtml\n' +
f' url = {args.mirror}playground/qlitehtml.git'
)
else:
# Fix qttools to use absolute path since the relative path fails on anything that isn't the
# official repo, which is so slow and unreliable it fails many builds.
open(os.path.join(qt_source_path, "qttools", ".gitmodules"), 'w').write(
'[submodule "src/assistant/qlitehtml"]\n' +
' path = src/assistant/qlitehtml\n' +
f' url = https://code.qt.io/playground/qlitehtml.git'
)
# Check out all submodules
if subprocess.call(["git", "submodule", "update", "--init", "--recursive"] + qt_modules, cwd=qt_source_path) != 0:
print("Failed to check out submodules")
sys.exit(1)
for patch in qt_patches:
print(f"\nApplying patch {patch}...")
apply_patch(patch, qt_source_path)
if args.patch:
print("\nApplying user provided patch...")
apply_patch(args.patch, qt_source_path)
if sys.platform == 'linux':
print("Cloning libicu")
if args.mirror:
if subprocess.call(["git", "clone", f"{args.mirror}icu.git",
os.path.join(qt_source_path, "icu")]) != 0:
print("Failed to clone Qt git repository")
sys.exit(1)
else:
if subprocess.call(["git", "clone", "https://github.com/unicode-org/icu.git",
os.path.join(qt_source_path, "icu")]) != 0:
print("Failed to clone Qt git repository")
sys.exit(1)
icu_version = "release-68-2"
if subprocess.call(["git", "checkout", icu_version], cwd=os.path.join(qt_source_path, "icu")) != 0:
print("Failed to check out branch '{}'".format(icu_version))
sys.exit(1)
if args.pyside:
if args.pyside_source:
print("\nCopying existing PySide source...")
shutil.copytree(args.pyside_source, pyside_source_path)
else:
print("\nCloning pyside-setup...")
if args.mirror:
if subprocess.call(["git", "clone", "-b", qt_version, "--depth", "1",
f"{args.mirror}pyside-setup", pyside_source_path]) != 0:
print("Failed to clone PySide git repository")
sys.exit(1)
else:
if subprocess.call(["git", "clone", "-b", qt_version, "--depth", "1",
"https://codereview.qt-project.org/pyside/pyside-setup", pyside_source_path]) != 0:
print("Failed to clone PySide git repository")
sys.exit(1)
for patch in pyside_patches:
print(f"\nApplying patch {patch}...")
apply_patch(patch, pyside_source_path)
if os.path.exists(build_path):
remove_dir(build_path)
if sys.platform == 'darwin':
build_opts += ['-qt-freetype']
os.mkdir(build_path)
if platform.processor() != 'arm' or args.universal:
print("\nConfiguring Qt for x86_64...")
os.mkdir(os.path.join(build_path, "x86_64"))
os.environ["CMAKE_OSX_ARCHITECTURES"] = "x86_64"
if subprocess.call([os.path.join(qt_source_path, "configure")] + build_opts +
["-prefix", os.path.join(build_path, "target_x86_64")] + configure_extra, cwd=os.path.join(build_path, "x86_64")) != 0:
print("Failed to configure")
sys.exit(1)
print("\nBuilding Qt for x86_64...")
# Build is unreliable but continues without issue, so try up to 5 times
retry_count = 0
while True:
if subprocess.call([make_cmd] + parallel, cwd=os.path.join(build_path, "x86_64")) != 0:
retry_count += 1
if retry_count > 5:
print("Qt failed to build")
sys.exit(1)
else:
break
print("\nInstalling Qt for x86_64...")
if subprocess.call([make_cmd, "install"], cwd=os.path.join(build_path, "x86_64")) != 0:
print("Qt failed to install")
sys.exit(1)
if platform.processor() == 'arm':
print("\nConfiguring Qt for ARM64...")
os.mkdir(os.path.join(build_path, "arm64"))
os.environ["CMAKE_OSX_ARCHITECTURES"] = "arm64"
if subprocess.call([os.path.join(qt_source_path, "configure")] + build_opts +
["-prefix", os.path.join(build_path, "target_arm64")] + configure_extra, cwd=os.path.join(build_path, "arm64")) != 0:
print("Failed to configure")
sys.exit(1)
print("\nBuilding Qt for ARM64...")
# Build is unreliable but continues without issue, so try up to 5 times
retry_count = 0
while True:
if subprocess.call([make_cmd] + parallel, cwd=os.path.join(build_path, "arm64")) != 0:
retry_count += 1
if retry_count > 5:
print("Qt failed to build")
sys.exit(1)
else:
break
print("\nInstalling Qt for ARM64...")
if subprocess.call([make_cmd, "install"], cwd=os.path.join(build_path, "arm64")) != 0:
print("Qt failed to install")
sys.exit(1)
if args.universal:
print("\nCreating universal build...")
if os.path.exists(install_path):
remove_dir(install_path)
os.makedirs(install_path)
shutil.copytree(os.path.join(build_path, "target_arm64"), install_path, dirs_exist_ok=True, symlinks=True)
for root, dirs, files in os.walk(install_path):
rel_path = root.replace(str(install_path), "")
rel_path = rel_path.strip('\/')
for filename in files:
if os.path.islink(os.path.join(root, filename)):
continue
if not os.path.isfile(os.path.join(root, filename)):
continue
header = open(os.path.join(root, filename), 'rb').read(4)
if header != b"\xcf\xfa\xed\xfe" and header != b"!<ar":
continue
subprocess.call(["lipo", "-create", os.path.join(build_path, "target_x86_64", rel_path, filename),
os.path.join(build_path, "target_arm64", rel_path, filename), "-output", os.path.join(root, filename)])
else:
if os.path.exists(install_path):
remove_dir(install_path)
os.makedirs(install_path)
shutil.copytree(os.path.join(build_path, "target_arm64"), install_path, dirs_exist_ok=True, symlinks=True)
else:
if os.path.exists(install_path):
remove_dir(install_path)
os.makedirs(install_path)
shutil.copytree(os.path.join(build_path, "target_x86_64"), install_path, dirs_exist_ok=True, symlinks=True)
else:
if os.path.exists(install_path):
remove_dir(install_path)
os.mkdir(build_path)
if sys.platform == 'linux':
print("\n Configuring libicu...")
if subprocess.call([os.path.join(qt_source_path, "icu", "icu4c", "source", "configure"),
"--disable-draft", "--disable-extras", "--disable-icuio",
"--disable-layoutex", "--disable-tools", "--disable-tests",
"--disable-samples", "--prefix=" + str(install_path)],
cwd=os.path.join(qt_source_path, "icu", "icu4c", "source")) != 0:
print("Failed to configure")
sys.exit(1)
print("\nBuilding libicu...")
if subprocess.call(["make"] + parallel, cwd=os.path.join(qt_source_path, "icu", "icu4c", "source")) != 0:
print("libicu failed to build")
sys.exit(1)
print("\nInstalling Qt...")
if subprocess.call(["make", "install"], cwd=os.path.join(qt_source_path, "icu", "icu4c", "source")) != 0:
print("Qt failed to install")
sys.exit(1)
os.environ["ICU_PREFIX"] = str(install_path)
build_opts += ['-bundled-xcb-xinput']
print("\nConfiguring Qt...")
if sys.platform == 'win32':
build_opts += ["-directwrite"] # use DirectWrite for font rendering on Windows
if subprocess.call([os.path.join(qt_source_path, "configure.bat")] + build_opts +
["-prefix", install_path] + configure_extra, cwd=build_path) != 0:
print("Failed to configure")
sys.exit(1)
else:
if subprocess.call([os.path.join(qt_source_path, "configure")] + build_opts +
["-prefix", install_path] + configure_extra, cwd=build_path) != 0:
print("Failed to configure")
sys.exit(1)
print("\nBuilding Qt...")
# Build is unreliable but continues without issue, so try up to 5 times
retry_count = 0
while True:
if subprocess.call([make_cmd] + parallel, cwd=build_path) != 0:
retry_count += 1
if retry_count > 5:
print("Qt failed to build")
sys.exit(1)
else:
break
print("\nInstalling Qt...")
if subprocess.call([make_cmd, "install"], cwd=build_path) != 0:
print("Qt failed to install")
sys.exit(1)
if sys.platform == 'linux':
# Older compilers don't seem to want to take libicu built above, just make sure we
# bundle the one that is actually used
deps = subprocess.Popen(["ldd", os.path.join(install_path, "lib/libQt6Core.so")], stdout=subprocess.PIPE).communicate()[0]
deps = deps.decode('charmap').strip().split("\n")
deps = [line.split("=>") for line in deps]
for dep in deps:
if len(dep) < 2:
continue
name, path = dep[0].strip(), dep[1].split("(")[0].strip()
if "libicu" in path and "Qt" not in path:
shutil.copyfile(path, os.path.join(install_path, "lib", name))
subprocess.call(f'patchelf --set-rpath \\$ORIGIN {install_path}/lib/{name}', shell=True)
if args.pyside:
print("\nBuilding Python 3 bindings...")
if sys.platform == 'win32':
os.environ["PATH"] = f'{str(install_path / "bin")};{os.environ["PATH"]}'
if os.path.exists(pyside_build_path):
remove_dir(pyside_build_path)
shutil.copytree(pyside_source_path, pyside_build_path)
if os.path.exists(pyside_install_path):
remove_dir(pyside_install_path)
if sys.platform == 'darwin':
if platform.processor() == 'arm' and args.universal:
os.environ["CMAKE_OSX_ARCHITECTURES"] = "arm64;x86_64"
if args.symbols:
if sys.platform == 'win32':
os.environ["CFLAGS"] = os.environ.get("CFLAGS", "") + " /Zi"
os.environ["CXXFLAGS"] = os.environ.get("CXXFLAGS", "") + " /Zi"
elif sys.platform == 'darwin':
os.environ["CFLAGS"] = os.environ.get("CFLAGS", "") + " -gline-tables-only"
os.environ["CXXFLAGS"] = os.environ.get("CXXFLAGS", "") + " -gline-tables-only"
else:
os.environ["CFLAGS"] = os.environ.get("CFLAGS", "") + " -g1"
os.environ["CXXFLAGS"] = os.environ.get("CXXFLAGS", "") + " -g1"
if subprocess.call([python3_cmd, "-m", "pip", "install", "-r", "requirements.txt"], cwd=pyside_build_path) != 0:
print("Python 3 bindings failed to install package dependencies")
sys.exit(1)
if subprocess.call([python3_cmd, "setup.py", "install", "--standalone", "--limited-api=yes", "--no-unity",
"--module-subset=" + ",".join(pyside_modules),
"--qt-target-path=" + str(install_path),
"--qtpaths=" + str(qtpaths),
"--macos-deployment-target=" + min_macos,
"--prefix=" + str(pyside_install_path),
] + parallel, cwd=pyside_build_path) != 0:
print("Python 3 bindings failed to build")
sys.exit(1)
if sys.platform.startswith("win"):
# pyside/Lib/site-packages -> pyside/site-packages
# For compatibility with our previous build format
shutil.move(pyside_install_path / 'Lib' / 'site-packages', pyside_install_path)
# pyside/Scripts/shiboken6-genpyi.exe -> pyside/site-packages/shiboken6_generator/
# pyside/Scripts/shiboken6-genpyi-script.py -> pyside/site-packages/shiboken6_generator/
shutil.move(pyside_install_path / 'Scripts' / 'shiboken6-genpyi.exe', pyside_install_path / 'site-packages' / 'shiboken6_generator')
shutil.move(pyside_install_path / 'Scripts' / 'shiboken6-genpyi-script.py', pyside_install_path / 'site-packages' / 'shiboken6_generator')
# And we don't care about the rest of the Scripts folder
shutil.rmtree(pyside_install_path / 'Scripts')
# Newer versions of PySide don't link to libclang in a way that works after the build, copy over
# the correct version of libclang
shutil.copy(os.path.join(llvm_dir, "bin", "libclang.dll"), os.path.join(pyside_install_path, "site-packages", "shiboken6_generator", "libclang.dll"), follow_symlinks=False)
else:
# pyside/lib/python3.9/site-packages -> pyside/site-packages
# For compatibility with our previous build format
for pydir in (pyside_install_path / 'lib').glob('python3.*'):
shutil.move(pydir / 'site-packages', pyside_install_path)
shutil.rmtree(pydir)
break
# pyside/bin/shiboken6-genpyi -> pyside/site-packages/shiboken6_generator/
shutil.move(pyside_install_path / 'bin' / 'shiboken6-genpyi', pyside_install_path / 'site-packages' / 'shiboken6_generator')
# And we don't care about the rest of the bin folder
shutil.rmtree(pyside_install_path / 'bin')
# Replace shebang (which is like /Users/jenkins/etc) with a real python
with open(pyside_install_path / 'site-packages' / 'shiboken6_generator' / 'shiboken6-genpyi', 'r') as genpyi_f:
conts = "#!/usr/bin/env python3\n"
genpyi_f.readline()
conts += genpyi_f.read()
with open(pyside_install_path / 'site-packages' / 'shiboken6_generator' / 'shiboken6-genpyi', 'w') as genpyi_f:
genpyi_f.write(conts)
if sys.platform == 'linux' and llvm_dir:
# Newer versions of PySide don't link to libclang in a way that works after the build, copy over
# the correct version of libclang
for f in glob.glob(os.path.join(llvm_dir, "lib", "libclang.so*")):
shutil.copy(f, os.path.join(pyside_install_path, "site-packages", "shiboken6_generator", os.path.basename(f)), follow_symlinks=False)
# Add PySide installer to place it into Python path
shutil.copy(os.path.join(base_dir, "install_pyside_pth.py"), os.path.join(install_path, "install_pyside_pth.py"))
if args.symbols:
if sys.platform == 'darwin':
print("\nExtracting debug symbols...")
dsym_files = []
strip_files = []
for root, dirs, files in os.walk(install_path):
for file in files:
file_path = os.path.join(root, file)
if mac_should_strip(file_path):
strip_files.append(file_path)
if not file.endswith('.a'):
dsym_files.append(file_path)
with zipfile.ZipFile(artifact_path / f'qt{qt_version}-symbols.zip', 'w', zipfile.ZIP_DEFLATED) as z:
for f in dsym_files:
print(f"Processing {f}...")
dsym_path = f + ".dSYM"
if subprocess.call(["dsymutil", "-o", dsym_path, f]) != 0:
print(f"Failed to generate dSYM from {f}")
sys.exit(1)
for i in glob.glob(dsym_path + "/**/*", recursive=True):
if os.path.isfile(i):
z.write(i, os.path.relpath(i, install_path))
shutil.rmtree(dsym_path)
print("\nStripping debug info...")
for f in strip_files:
if subprocess.call(["strip", "-S", f]) != 0:
print(f"Failed to strip debug info from {f}")
sys.exit(1)
print(f"Stripped debug info from {f}")
elif sys.platform == 'linux':
print("\nExtracting debug symbols...")
symbol_files = []
strip_files = []
for root, dirs, files in os.walk(install_path):
for file in files:
file_path = os.path.join(root, file)
if os.path.islink(file_path):
continue
if not os.path.isfile(file_path):
continue
if file.endswith('.o'):
continue
header = open(file_path, 'rb').read(7)
if header[:4] == b"\x7fELF":
strip_files.append(file_path)
symbol_files.append(file_path)
elif header == b"!<arch>" and file.endswith('.a'):
strip_files.append(file_path)
with zipfile.ZipFile(artifact_path / f'qt{qt_version}-symbols.zip', 'w', zipfile.ZIP_DEFLATED) as z:
for f in symbol_files:
debug_file = f + ".debug"
if subprocess.call(["objcopy", "--only-keep-debug",
"--compress-debug-sections=zlib", f, debug_file]) != 0:
print(f"Failed to extract debug symbols from {f}")
sys.exit(1)
# Re-inject .eh_frame data from the original binary
with tempfile.TemporaryDirectory() as tmp:
remove_args = []
add_args = []
for section in [".eh_frame", ".eh_frame_hdr"]:
dump = os.path.join(tmp, section.lstrip("."))
subprocess.run(["objcopy", "--dump-section",
f"{section}={dump}", f],
capture_output=True)
if not os.path.exists(dump):
continue
remove_args += ["--remove-section", section]
add_args += ["--add-section", f"{section}={dump}"]
if remove_args:
subprocess.run(["objcopy"] + remove_args + [debug_file], check=True)
subprocess.run(["objcopy"] + add_args + [debug_file], check=True)
z.write(debug_file, os.path.relpath(debug_file, install_path))
os.remove(debug_file)
print("\nStripping debug info...")
for f in strip_files:
if subprocess.call(["strip", "--strip-debug", f]) != 0:
print(f"Failed to strip debug info from {f}")
sys.exit(1)
print(f"Stripped debug info from {f}")
elif sys.platform == 'win32':
print("\nCollecting debug symbols...")
with zipfile.ZipFile(artifact_path / f'qt{qt_version}-symbols.zip', 'w', zipfile.ZIP_DEFLATED) as z:
# PDBs from the build directory
for pdb in glob.glob(str(build_path) + '/**/*.pdb', recursive=True):
rel = os.path.relpath(pdb, build_path)
parts = rel.replace('\\', '/').split('/')
# Ignore intermediate PDBs that the compiler generates. We only care about linker PDBs.
if 'CMakeFiles' in parts or 'config.tests' in parts or parts[:2] == ['qtbase', 'lib']:
continue
z.write(pdb, rel)
print(f"Added {pdb}")
# PDBs from the install directory (remove after archiving)
for pdb in glob.glob(str(install_path) + '/**/*.pdb', recursive=True):
z.write(pdb, os.path.relpath(pdb, install_path))
os.remove(pdb)
print(f"Added {pdb}")
# Create modified libraries that contain the correct rpath for bundling. These will be signed separately
# so that each bundle does not need to re-sign the libraries.
if sys.platform == 'darwin':
plugin_types = ["platforms", "imageformats"]
os.mkdir(bundle_path)
for plugin_type in plugin_types:
os.mkdir(os.path.join(bundle_path, plugin_type))
if args.pyside:
os.mkdir(os.path.join(bundle_path, "PySide6"))
for plugin_type in plugin_types:
for f in glob.glob(os.path.join(install_path, "plugins", plugin_type, "*.dylib")):
target = os.path.join(bundle_path, plugin_type, os.path.basename(f))
shutil.copy(f, target)
if subprocess.call(["install_name_tool", "-delete_rpath", "@loader_path/../../lib", target]) != 0:
print(f"Failed to remove rpath from {target}")
sys.exit(1)
if subprocess.call(["install_name_tool", "-add_rpath", "@loader_path/../../../Frameworks", target]) != 0:
print(f"Failed to add framework rpath to {target}")
sys.exit(1)
if args.pyside:
for f in glob.glob(os.path.join(pyside_install_path, "site-packages", "PySide6", "*.so")):
target = os.path.join(bundle_path, "PySide6", os.path.basename(f))
shutil.copy(f, target)
if subprocess.call(["install_name_tool", "-delete_rpath", "@loader_path/Qt/lib", target]) != 0:
print(f"Failed to remove rpath from {target}")
sys.exit(1)
if subprocess.call(["install_name_tool", "-add_rpath", "@loader_path/../../../Frameworks", target]) != 0:
print(f"Failed to add framework rpath to {target}")
sys.exit(1)
for f in glob.glob(os.path.join(pyside_install_path, "site-packages", "PySide6", "*.dylib")):
target = os.path.join(bundle_path, "PySide6", os.path.basename(f))
shutil.copy(f, target)
if subprocess.call(["install_name_tool", "-delete_rpath", "@loader_path/Qt/lib", target]) != 0:
print(f"Failed to remove rpath from {target}")
sys.exit(1)
if subprocess.call(["install_name_tool", "-add_rpath", "@loader_path/../../../Frameworks", target]) != 0:
print(f"Failed to add framework rpath to {target}")
sys.exit(1)
elif sys.platform == 'linux':
plugin_types = ["platforms", "imageformats", "wayland-decoration-client", "wayland-graphics-integration-client",
"wayland-shell-integration", "platforminputcontexts"]
os.mkdir(bundle_path)
for plugin_type in plugin_types:
os.mkdir(os.path.join(bundle_path, plugin_type))
if args.pyside:
os.mkdir(os.path.join(bundle_path, "PySide6"))
for plugin_type in plugin_types:
for f in glob.glob(os.path.join(install_path, "plugins", plugin_type, "*.so")):
target = os.path.join(bundle_path, plugin_type, os.path.basename(f))
shutil.copy(f, target)
if subprocess.call(["patchelf", "--set-rpath", "$ORIGIN/../..", target]) != 0:
print(f"ERROR: Failed to change rpath in {target}")
sys.exit(1)
if args.pyside:
qt_major_minor_version = ".".join(qt_version.split(".")[0:2])
for f in glob.glob(os.path.join(pyside_install_path, "site-packages", "PySide6", "*.abi3.so")):
target = os.path.join(bundle_path, "PySide6", os.path.basename(f))
shutil.copy(f, target)
if subprocess.call(["patchelf", "--set-rpath", "$ORIGIN:$ORIGIN/../shiboken6:$ORIGIN/../..", target]) != 0:
print(f"Failed to change rpath in {target}")
sys.exit(1)
pyside_module = f"libpyside6.abi3.so.{qt_major_minor_version}"
target = os.path.join(bundle_path, "PySide6", pyside_module)
shutil.copy(os.path.join(pyside_install_path, "site-packages", "PySide6", pyside_module), target)
if subprocess.call(["patchelf", "--set-rpath" ,"$ORIGIN:$ORIGIN/../shiboken6:$ORIGIN/../..", target]) != 0:
print("Failed to change rpath in libpyside")
sys.exit(1)
if args.sign:
if sys.platform == 'darwin':
# Sign all Mach-O files in the installation
for root, dirs, files in os.walk(install_path):
for file in files:
file_path = os.path.join(root, file)
if not os.access(file_path, os.X_OK):
continue
# Check for Mach-O signature
header = open(file_path, 'rb').read(4)
if header != b"\xca\xfe\xba\xbe" and header != b"\xcf\xfa\xed\xfe":
continue
if not mac_sign(file_path):
print(f"Failed to sign {file_path}")
sys.exit(1)
# Sign all frameworks and applications in the installation
for root, dirs, files in os.walk(install_path):
for dir in dirs:
if ".framework" in dir or ".app" in dir:
dir_path = os.path.join(root, dir)
if not mac_sign(dir_path):
print(f"Failed to sign {dir_path}")
sys.exit(1)
elif sys.platform.startswith("win"):
# Look for all exe/dll files in the installation
for root, dirs, files in os.walk(install_path):
for file in files:
if file.endswith(".exe") or file.endswith(".dll") or file.endswith(".pyd"):
file_path = os.path.join(root, file)
if not signWindowsFiles(file_path):
print(f"Failed to sign {file_path}")
sys.exit(1)
print("\nCreating archive...")
with zipfile.ZipFile(artifact_path / f'qt{qt_version}.zip', 'w', zipfile.ZIP_DEFLATED) as z:
for root, dirs, files in os.walk(install_path):
relpath = root.replace(str(install_path), "")
relpath = relpath.strip('\/')
for dir in dirs:
file_path = os.path.join(root, dir)
arc_name = os.path.join("Qt", qt_version_dir, compiler, relpath, dir)
if os.path.islink(file_path):
info = zipfile.ZipInfo(arc_name, datetime.datetime.now().timetuple())
info.compress_type = zipfile.ZIP_DEFLATED
info.external_attr = 0o120755 << 16
z.writestr(info, os.readlink(file_path))
for file in files:
print(f"Adding {relpath}/{file}...")
file_path = os.path.join(root, file)
arc_name = os.path.join("Qt", qt_version_dir, compiler, relpath, file)
info = zipfile.ZipInfo(arc_name, datetime.datetime.now().timetuple())
info.compress_type = zipfile.ZIP_DEFLATED
if os.path.islink(file_path):
info.external_attr = 0o120755 << 16
z.writestr(info, os.readlink(file_path))
else:
if os.access(file_path, os.X_OK):
info.external_attr = 0o755 << 16 # -rwxr-xr-x
else:
info.external_attr = 0o644 << 16 # -rwxr--r--
with open(file_path, 'rb') as f:
z.writestr(info, f.read())
if args.install:
import deploy
if args.clean:
print("Cleaning up...")
remove_dir(source_path)