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 b7bc5f0 commit 60972b7Copy full SHA for 60972b7
tools/bench/bench-common.sh
@@ -61,7 +61,7 @@ pad() {
61
62
show_compilers() {
63
for CXX in $CXXS; do
64
- echo -n "$(pad 7 $CXX) is: "
+ echo -n "$(pad 11 $CXX) is: "
65
$CXX --version | head -n 1
66
done
67
}
tools/bench/class-common.sh
@@ -11,7 +11,7 @@ compile() {
11
SRC="$1"
12
13
SO="${SRC%.*}_${CXX}.so"
14
- echo -n "$(pad 7 $CXX), $(pad 4 $CLASSES) classes compilation: "
+ echo -n "$(pad 11 $CXX), $(pad 4 $CLASSES) classes compilation: "
15
if ! time_command $CXX $CXXFLAGS -shared -o $SO $SRC \
16
2>&1 | perl -ne '/ user, / and print s/\n//r'; then
17
echo -e "Compilation failed, aborting. Tried to compile using:\n\n$CXX $CXXFLAGS -shared -o $SO $SRC\n"
0 commit comments