From 6f0969aecade1fe960665c130d5aa2e8c59c441e Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Tue, 2 Oct 2018 16:50:42 -0700 Subject: [build] Custom GDB no longer needed in Ubuntu Bionic --- Makefile | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 25bbde1b3d..d3df407fa7 100644 --- a/Makefile +++ b/Makefile @@ -319,14 +319,12 @@ test: $(LINUX_BUILD) benchmark: $(LINUX_BUILD) $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-benchmark -ifneq (,$(shell command -v gdb 2> /dev/null)) - GDB ?= $(shell scripts/mason.sh PREFIX gdb VERSION 2017-04-08-aebcde5)/bin/gdb \ - -batch -return-child-result \ - -ex 'set print thread-events off' \ - -ex 'set disable-randomization off' \ - -ex 'run' \ - -ex 'thread apply all bt' --args -endif +GDB ?= gdb \ + -batch -return-child-result \ + -ex 'set print thread-events off' \ + -ex 'set disable-randomization off' \ + -ex 'run' \ + -ex 'thread apply all bt' --args .PHONY: run-test run-test: run-test-* -- cgit v1.2.1