Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 20111c2

Browse files
author
sewardj
committedNov 25, 2014
arm64: implement "BRK #imm16".
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14781 a5019735-40e9-0310-863c-91ae7b9d1cf9
1 parent 3d62ad9 commit 20111c2

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed
 

‎Makefile.all.am

Lines changed: 1 addition & 1 deletion
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-
-O2 -g \
100+
-Og \
101101
-Wall \
102102
-Wcast-align \
103103
-Wmissing-prototypes \

‎Makefile.am

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@ 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
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 =
1820

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

‎auxprogs/gsl16test

Lines changed: 2 additions & 2 deletions
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)" && \
92+
"(cd gsl-1.6-patched && CC=$GSL_CC CFLAGS=\"$GSL_CFLAGS\" ./configure --build=aarch64-unknown-linux-gnu)" && \
9393
\
9494
runcmd "Building " \
95-
"(cd gsl-1.6-patched && make -j4 && make -k check)"
95+
"(cd gsl-1.6-patched && make -j6 && make -k check)"
9696

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

0 commit comments

Comments
 (0)
Please sign in to comment.