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.
1 parent 6deafd3 commit f1f0b52Copy full SHA for f1f0b52
zorg/buildbot/builders/annotated/libc-linux.py
@@ -111,7 +111,11 @@ def main(argv):
111
cmake_args.append('-DCMAKE_LINKER=/usr/bin/ld.lld')
112
cmake_args.append('-DLLVM_LIBC_MPFR_INSTALL_PATH={}/gmp+mpfr/'.format(os.getenv('HOME')))
113
114
- run_command(['cmake', os.path.join(source_dir, 'llvm')] + cmake_args)
+ if bootstrap_build:
115
+ cmake_root = 'llvm'
116
+ else:
117
+ cmake_root = 'runtimes'
118
+ run_command(['cmake', os.path.join(source_dir, cmake_root)] + cmake_args)
119
120
if lint_build:
121
with step('lint libc'):
0 commit comments