aboutsummaryrefslogtreecommitdiff
path: root/src/tools/linux/dump_syms/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/linux/dump_syms/Makefile')
-rw-r--r--src/tools/linux/dump_syms/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/linux/dump_syms/Makefile b/src/tools/linux/dump_syms/Makefile
index 4d50c3aa..800e3add 100644
--- a/src/tools/linux/dump_syms/Makefile
+++ b/src/tools/linux/dump_syms/Makefile
@@ -154,6 +154,7 @@ stabs_reader_unittest: \
gtest-all.o \
gtest_main.o \
stabs_reader.o \
+ test_assembler.o \
$(empty)
CPP_EXECUTABLES += stabs_reader_unittest
stabs_reader_unittest.o: stabs_reader_unittest.cc
@@ -360,7 +361,7 @@ $(CPP_EXECUTABLES): %: %.o
# Allow #include directives to refer to files below 'src'; generate
# dependency files automatically; and I doubt _REENTRANT is needed at all.
-BREAKPAD_CPPFLAGS = -I$(SRC) -MMD -D_REENTRANT
+BREAKPAD_CPPFLAGS = -I$(SRC) -MMD -D_REENTRANT -DHAVE_A_OUT_H
# Bring in whatever dependency files we have generated by compiling with -MMD.
-include *.d
@@ -383,7 +384,7 @@ clean::
### appropriate for Google C++ Testing Framework test programs. But
### you can provide your own commands.
check-%: %
- srcdir=$(SRC) $(TEST_WRAPPER) ./$< $(TEST_ARGS)
+ $(TEST_WRAPPER) ./$< $(TEST_ARGS)
### Generic coverage reporting rules.