Skip to content

Commit e8b028a

Browse files
committed
Minimal changes
1 parent 8c41ae6 commit e8b028a

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

.ci/compute-projects.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -100,21 +100,11 @@ function add-dependencies() {
100100
compiler-rt|libc|openmp)
101101
echo clang lld
102102
;;
103-
lldb|libclc)
103+
flang|lldb|libclc)
104104
for p in llvm clang; do
105105
echo $p
106106
done
107107
;;
108-
flang)
109-
for p in llvm clang mlir; do
110-
echo $p
111-
done
112-
;;
113-
flang-rt)
114-
for p in llvm clang mlir flang; do
115-
echo $p
116-
done
117-
;;
118108
lld|mlir|polly)
119109
echo llvm
120110
;;

.ci/generate-buildkite-pipeline-premerge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fi
7373
# needs while letting them run on the infrastructure provided by LLVM.
7474

7575
# Figure out which projects need to be built on each platform
76-
all_projects="bolt clang clang-tools-extra compiler-rt cross-project-tests flang flang-rt libc libclc lld lldb llvm mlir openmp polly pstl"
76+
all_projects="bolt clang clang-tools-extra compiler-rt cross-project-tests flang libc libclc lld lldb llvm mlir openmp polly pstl"
7777
modified_projects="$(keep-modified-projects ${all_projects})"
7878

7979
linux_projects_to_test=$(exclude-linux $(compute-projects-to-test 0 ${modified_projects}))

.ci/monolithic-linux.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ if [[ "${runtimes}" != "" ]]; then
8282
exit 1
8383
fi
8484

85-
echo "--- ninja install-clang install-flang"
85+
echo "--- ninja install-clang"
8686

87-
ninja -C ${BUILD_DIR} install-clang install-flang install-clang-resource-headers
87+
ninja -C ${BUILD_DIR} install-clang install-clang-resource-headers
8888

8989
RUNTIMES_BUILD_DIR="${MONOREPO_ROOT}/build-runtimes"
9090
INSTALL_DIR="${BUILD_DIR}/install"
@@ -95,7 +95,7 @@ if [[ "${runtimes}" != "" ]]; then
9595
cmake -S "${MONOREPO_ROOT}/runtimes" -B "${RUNTIMES_BUILD_DIR}" -GNinja \
9696
-D CMAKE_C_COMPILER="${INSTALL_DIR}/bin/clang" \
9797
-D CMAKE_CXX_COMPILER="${INSTALL_DIR}/bin/clang++" \
98-
-D CMAKE_Fortran_COMPILER="${INSTALL_DIR}/bin/flang" \
98+
-D CMAKE_Fortran_COMPILER="${BUILD_DIR}/bin/flang" \
9999
-D CMAKE_Fortran_COMPILER_WORKS=ON \
100100
-D LLVM_ENABLE_RUNTIMES="${runtimes}" \
101101
-D LIBCXX_CXX_ABI=libcxxabi \

0 commit comments

Comments
 (0)