Skip to content

Commit 89c0c36

Browse files
committed
[VE][Jenkins] Change to not use clang
Change to use default c compilers to compile clang.
1 parent 48d90e9 commit 89c0c36

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Jenkinsfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ pipeline {
99
// Job pool
1010
COMPILE_THREADS = 24
1111
LINK_THREADS = 8
12-
// Need to use either gcc-10 or clang to compile recent llvm
13-
CC = "/opt/nec/nosupport/llvm-ve-1.16.0/bin/clang"
14-
CXX = "/opt/nec/nosupport/llvm-ve-1.16.0/bin/clang++"
1512
REPO_URL = sh(
1613
returnStdout: true,
1714
script: "echo ${env.GIT_URL} | sed -e 's:/[^/]*\$::'").trim()
@@ -44,8 +41,7 @@ pipeline {
4441
dir('llvm-dev') {
4542
sh """
4643
make clean
47-
CC="${CC}" CXX="${CXX}" make \
48-
SRCDIR=${TOP}/llvm-project CMAKE=${CMAKE} \
44+
make SRCDIR=${TOP}/llvm-project CMAKE=${CMAKE} \
4945
COMPILE_THREADS=${COMPILE_THREADS} \
5046
LINK_THREADS=${LINK_THREADS} cmake build
5147
"""

0 commit comments

Comments
 (0)