File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
# Basic definitions.
5
- BENCHVER=20230112
5
+ BENCHVER=20230227
6
6
LLVMVER=15.0.7
7
7
LLVMURL=" https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVMVER /llvm-project-$LLVMVER .src.tar.xz"
8
8
LLVMDIR=" $( basename $LLVMURL | rev | cut -f3- -d' .' | rev) "
@@ -61,6 +61,9 @@ mkdir -p "$LLVMDIR"/llvm/build || \
61
61
aberr " Failed to create build directory: $? ."
62
62
cd " $LLVMDIR " /llvm/build || \
63
63
aberr " Failed to swtich to build directory: $? ."
64
+ # Set LANG to C to make gcc faster (a little bit)
65
+ export LC_ALL=C
66
+ export LANG=C
64
67
65
68
abinfo " (5/6) Preparing to benchmark Buildbot: Configuring LLVM (version $LLVMVER ) ..."
66
69
cmake .. \
@@ -252,3 +255,4 @@ cmake .. \
252
255
abinfo " (6/6) Benchmarking Buildbot: Building LLVM ..."
253
256
time ninja 2>> benchmark.log || \
254
257
aberr " Failed to build LLVM: $? ."
258
+ unset LC_ALL LANG
You can’t perform that action at this time.
0 commit comments