mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
instruction: dcbzl" submitted by Anmol P. Paralkar <paralkar@freescale.com> The patch adds the following files: none/tests/ppc64/data-cache-instructions.vgtest none/tests/ppc64/data-cache-instructions.c none/tests/ppc64/data-cache-instructions.stdout.exp none/tests/ppc64/data-cache-instructions.stderr.exp none/tests/ppc32/data-cache-instructions.stdout.exp none/tests/ppc32/data-cache-instructions.c none/tests/ppc32/data-cache-instructions.vgtest none/tests/ppc32/data-cache-instructions.stderr.exp tests/power_insn_available.c The following files are modified: none/tests/ppc32/Makefile.am none/tests/ppc64/Makefile.am tests/Makefile.am git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13791
45 lines
784 B
Makefile
45 lines
784 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = \
|
|
check_headers_and_includes \
|
|
check_isa-2_06_cap \
|
|
check_isa-2_07_cap \
|
|
check_makefile_consistency \
|
|
check_dfp_cap \
|
|
check_vmx_cap \
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_libc \
|
|
filter_numbers \
|
|
filter_stderr_basic \
|
|
filter_sink \
|
|
filter_xml_frames \
|
|
platform_test \
|
|
post_regtest_checks \
|
|
vg_regtest
|
|
|
|
noinst_HEADERS = \
|
|
asm.h \
|
|
malloc.h \
|
|
sys_mman.h
|
|
|
|
check_PROGRAMS = \
|
|
arch_test \
|
|
os_test \
|
|
true \
|
|
x86_amd64_features \
|
|
s390x_features \
|
|
mips_features \
|
|
power_insn_available
|
|
|
|
AM_CFLAGS += $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
|
|
|
|
if VGCONF_OS_IS_DARWIN
|
|
x86_amd64_features_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic
|
|
else
|
|
x86_amd64_features_CFLAGS = $(AM_CFLAGS)
|
|
endif
|
|
|