2 # $Id: Makefile,v 1.1 2008/05/08 20:53:53 cooksey Exp $
5 # Define any symbols needed to invoke configuration changes in make.config
8 NO_IMPLICIT_TEMPLATES = true
9 USES_DWARF_DEBUG = true
14 TESTSUITE_FLAGS=$(LDFLAGS)
16 # Include standard make configuration stuff that applies to everything
17 # in the paradyn tree.
18 include $(TO_CORE)/make.config.local
19 include $(TO_CORE)/make.config
21 # Now make any necessary architecture specific changes to variables:
23 #if M_ABI is defined, secondary ABI specific mutatees will be built
25 M_ABI_FLAG = -m32 -D$(PLATFORM) -Dm32_test
27 #if M_G77 is defined, g77 mutatees will be built
30 # there is no "native" or OS-provided compiler for Linux!
31 # we use the Portland Group compilers, as that's what we've currently got
32 # (in future we probably also want to test with the KAI/Intel compilers)
36 #COMPILERT_NATIVE_CC = $(shell $(NATIVE_CC) -V 2>/dev/null | grep '^pg' | head -1)
37 #COMPILERT_NATIVE_CXX = $(shell $(NATIVE_CXX) -V 2>/dev/null | grep '^pg' | head -1)
40 GNU_WARNING_FLAGS = -W -Wall
41 #MUTATOR_CXXFLAGS += $(GNU_WARNING_FLAGS) -fpe
42 MUTATOR_CXXFLAGS += $(GNU_WARNING_FLAGS)
43 MUTATEE_CFLAGS_GNU = $(UNIFIED_DEF) $(GNU_WARNING_FLAGS)
44 MUTATEE_CXXFLAGS_GNU = $(UNIFIED_DEF) $(GNU_WARNING_FLAGS)
46 # Tests 1, 2, and 12 use libdl. It is only added to their link lines
47 # as we must also test the harder-to-bootstrap general case (mutatee
49 MUTATEE_USE_LIBDL_SELECTIVELY = true
51 MUTATEE_LDFLAGS_GNU += -Wl,-export-dynamic
54 MUTATEE_G77_FFLAGS += -D$(PLATFORM) -DF77 -fno-second-underscore -g
55 MUTATEE_G77_CFLAGS += $(filter-out -Wl$(COMMA)-export-dynamic, $(MUTATEE_CFLAGS_GNU))
56 MUTATEE_G77_CFLAGS += -DF77 -DFortran -g $(MUTATEE_FFLAGS) -fno-implicit-templates -c
57 TEST1_FORTRAN_CSOURCE = test1.mutateeFortC.c
59 MUTATEE_CFLAGS_NATIVE = $(UNIFIED_DEF)
60 MUTATEE_CXXFLAGS_NATIVE = $(UNIFIED_DEF)
62 # Definitions used for test1 assembly
64 TEST1_ASFLAGS = $(MUTATEE_CFLAGS_GNU)
65 CALL35_1_SRC = call35_1.c
66 CALL35_1_SRC_ABI = call35_1.c
68 # Definition used for test6 assembly
70 TEST6_ASFLAGS_GNU = $(CFLAGS) -c
71 TEST6_AS_SRC = test6LS-powerpc.S
72 TEST6_AS_OBJ_BASE = $(basename $(TEST6_AS_SRC))
73 #TEST6_AS_OBJ_BASE_ASM = $(basename $(TEST6_AS_SRC))
75 TESTLIB_FLAGS = -fpic -shared -g -Wl,-export-dynamic -Wl,-ldl
77 # see discussion in make.module.tmpl for the format of this variable
78 MUTATEE_TEST9_EXTRA_LIB = 9.-L./ 9.-lInstMe
79 MUTATEE_TEST9_EXTRA_LIB_ABI = 9.-L./ 9.-lInstMe_$(M_ABI)
81 LIBS_LIBTESTSUITE = -ldl
83 include ../make.module.tmpl
85 # Some ppc32_linux distributions require _XOPEN_SOURCE to be defined as 600
86 # to get the functions/types we require
87 CFLAGS += -D_XOPEN_SOURCE=600
88 CXXFLAGS += -D_XOPEN_SOURCE=600
89 F77FLAGS += -D_XOPEN_SOURCE=600