Skip to content

Commit c24ade7

Browse files
committed
Revert "Fix flang-aarch64-libcxx builder"
This reverts commit d7ab3d8.
1 parent d7ab3d8 commit c24ade7

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2540,9 +2540,6 @@
25402540
"-DLLVM_ENABLE_ASSERTIONS=ON",
25412541
"-DLLVM_ENABLE_LIBCXX=On",
25422542
"-DCMAKE_BUILD_TYPE=Release",
2543-
"-DLLVM_RUNTIME_TARGETS=aarch64-unknown-linux-gnu",
2544-
"-DRUNTIMES_aarch64-unknown-linux-gnu_CMAKE_CXX_COMPILER='c++'",
2545-
"-DRUNTIMES_aarch64-unknown-linux-gnu_CMAKE_C_COMPILER='cc'"
25462543
])},
25472544

25482545
{'name' : "flang-aarch64-release",

zorg/buildbot/builders/FlangBuilder.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -138,22 +138,10 @@ def getFlangOutOfTreeBuildFactory(
138138
)
139139
)
140140

141-
# 'check-flang-rt' becomes 'check-flang-rt-<target>' when a runtime target
142-
# is specified.
143-
check_flang_rt = 'check-flang-rt'
144-
for arg in llvm_extra_configure_args:
145-
if arg.find("DLLVM_RUNTIME_TARGETS") != -1:
146-
targets = arg.split('=', 1)[1]
147-
# Currently only one target is supported.
148-
if not targets or targets.find(";") != -1:
149-
break
150-
check_flang_rt += '-' + targets
151-
break
152-
153141
addNinjaSteps(
154142
f,
155143
obj_dir=flang_rt_obj_dir,
156-
checks=[check_flang_rt],
144+
checks=['check-flang-rt'],
157145
env=env,
158146
stage_name="flang-rt",
159147
**kwargs)

0 commit comments

Comments
 (0)