mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
- In Cachegrind, abstract out x86-specific use of CPUID to find cache configuration. Required adding a cachegrind/x86/ directory, and fiddling a bit with the build system. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2698
12 lines
417 B
Makefile
12 lines
417 B
Makefile
## Need $(top_builddir)/include because tool.h is built from tool.h.base;
|
|
## otherwise it will not work if builddir != srcdir.
|
|
add_includes = -I$(top_builddir)/include -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/include/$(VG_ARCH) \
|
|
-I./$(VG_ARCH)
|
|
|
|
AM_CPPFLAGS = $(add_includes)
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer \
|
|
@PREFERRED_STACK_BOUNDARY@ -g
|
|
AM_CCASFLAGS = $(add_includes)
|
|
|