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