Skip to content

Commit 5accd77

Browse files
author
sewardj
committed
Back out r14781, which was unintended.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14782 a5019735-40e9-0310-863c-91ae7b9d1cf9
1 parent 20111c2 commit 5accd77

File tree

3 files changed

+15
-17
lines changed

3 files changed

+15
-17
lines changed

Makefile.all.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ clean-noinst_DSYMS:
9797
# -fno-builtin is important for defeating LLVM's idiom recognition
9898
# that somehow causes VG_(memset) to get into infinite recursion.
9999
AM_CFLAGS_BASE = \
100-
-Og \
100+
-O2 -g \
101101
-Wall \
102102
-Wcast-align \
103103
-Wmissing-prototypes \

Makefile.am

+12-14
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@ AUTOMAKE_OPTIONS = foreign 1.10 dist-bzip2
33

44
include $(top_srcdir)/Makefile.all.am
55

6-
#TOOLS = memcheck \
7-
# cachegrind \
8-
# callgrind \
9-
# massif \
10-
# lackey \
11-
# none \
12-
# helgrind \
13-
# drd
14-
#
15-
#EXP_TOOLS = exp-sgcheck \
16-
# exp-bbv \
17-
# exp-dhat
18-
TOOLS = none memcheck
19-
EXP_TOOLS =
6+
TOOLS = memcheck \
7+
cachegrind \
8+
callgrind \
9+
massif \
10+
lackey \
11+
none \
12+
helgrind \
13+
drd
14+
15+
EXP_TOOLS = exp-sgcheck \
16+
exp-bbv \
17+
exp-dhat
2018

2119
# Put docs last because building the HTML is slow and we want to get
2220
# everything else working before we try it.

auxprogs/gsl16test

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ runcmd "Untarring " \
8989
"rm -rf gsl-1.6-patched && tar xzf $GSL_FILE" && \
9090
\
9191
runcmd "Configuring " \
92-
"(cd gsl-1.6-patched && CC=$GSL_CC CFLAGS=\"$GSL_CFLAGS\" ./configure --build=aarch64-unknown-linux-gnu)" && \
92+
"(cd gsl-1.6-patched && CC=$GSL_CC CFLAGS=\"$GSL_CFLAGS\" ./configure)" && \
9393
\
9494
runcmd "Building " \
95-
"(cd gsl-1.6-patched && make -j6 && make -k check)"
95+
"(cd gsl-1.6-patched && make -j4 && make -k check)"
9696

9797
echo -n " Collecting reference results "
9898
rm -f out-REF

0 commit comments

Comments
 (0)