1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

rebase_fixup

This commit is contained in:
Ludwig Ortmann 2014-03-05 10:53:15 +01:00
parent ad1d8df080
commit ae898ef9eb

View File

@ -27,10 +27,12 @@ export DEBUGGER_FLAGS = $(ELF)
valgrind: export VALGRIND_FLAGS ?= --track-origins=yes
cachegrind: export CACHEGRIND_FLAGS += --tool=cachegrind
all-valgrind: export CFLAGS += -DHAVE_VALGRIND_H -g
all-valgrind: export INCLUDES += $(shell pkg-config valgrind --cflags)
all-valgrind: export NATIVEINCLUDES += $(shell pkg-config valgrind --cflags)
all-gprof: export CFLAGS += -pg
all-gprof: export LINKFLAGS += -pg
export INCLUDES += $(NATIVEINCLUDES)
# backward compatability with glibc <= 2.17 for native
ifeq ($(CPU),native)
ifeq ($(shell uname -s),Linux)