We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9478f45 + e2347d1 commit 611cc49Copy full SHA for 611cc49
tc_build/llvm.py
@@ -32,7 +32,14 @@ def __init__(self):
32
self.build_targets = ['all']
33
self.ccache = False
34
self.check_targets = []
35
- self.cmake_defines = {}
+ self.cmake_defines = {
36
+ # Reduce dynamic dependencies
37
+ 'LLVM_ENABLE_LIBXML2': 'OFF',
38
+ # While this option reduces build resources and disk space, it
39
+ # increases start up time for the tools dynamically linked against
40
+ # it and limits optimization opportunities for LTO, PGO, and BOLT.
41
+ 'LLVM_LINK_LLVM_DYLIB': 'OFF',
42
+ }
43
self.install_targets = []
44
self.llvm_major_version = 0
45
self.tools = None
0 commit comments