diff options
author | gumi <git@gumi.ca> | 2018-03-05 12:35:08 -0500 |
---|---|---|
committer | gumi <git@gumi.ca> | 2018-03-05 12:35:08 -0500 |
commit | a5edd4dc86f3d96aa41fc1089d8a92c34b4c5ca9 (patch) | |
tree | fceef34469aeae677ff6cfc86af3c7a72f5fac15 | |
parent | 68fbe3aeb28f4098be4a165d01883b516e455fd3 (diff) | |
download | tmwa-a5edd4dc86f3d96aa41fc1089d8a92c34b4c5ca9.tar.gz tmwa-a5edd4dc86f3d96aa41fc1089d8a92c34b4c5ca9.tar.bz2 tmwa-a5edd4dc86f3d96aa41fc1089d8a92c34b4c5ca9.tar.xz tmwa-a5edd4dc86f3d96aa41fc1089d8a92c34b4c5ca9.zip |
explicitly use python 2.7 in the makefile
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 779ca04..894165e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -502,7 +502,7 @@ obj/gtest%.pdc.o: ${GTEST_DIR}/src/gtest%.cc DTEST_OBJS := $(filter obj/debug-debug/%.pdc.o,${PDC_OBJECTS}) DTEST_STAMPS := $(patsubst bin/tests/%.elf,stamp/run-%.stamp,${DTEST_BINARIES}) ${DTEST_OBJS}: override CXXFLAGS += -g -O0 -gdwarf-3 -${DTEST_STAMPS}: override TESTER=${GDB} -return-child-result -nx -batch -ex 'python file_to_load = "$<"' -x ${SRC_DIR}/tools/debug-debug.gdb --args false +${DTEST_STAMPS}: override TESTER=${GDB} -return-child-result -nx -batch -ex 'python2.7 file_to_load = "$<"' -x ${SRC_DIR}/tools/debug-debug.gdb --args false ${DTEST_STAMPS}: tools/debug-debug.gdb ifeq '$(findstring clang,${CXX})' 'clang' ${DTEST_STAMPS}: |