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
16 # Include standard make configuration stuff that applies to everything
17 # in the paradyn tree.
18 include $(TO_CORE)/make.config
20 # Now make any necessary architecture specific changes to variables:
22 #if M_ABI is defined, secondary ABI specific mutatees will be built
23 ifndef SKIP_BUILD_RTLIB_32
25 M_ABI_FLAG = -m32 -Di386_unknown_linux2_4 -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 = -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 += -Di386_unknown_linux2_0 -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 #MUTATOR_LIBS += -liberty
60 MUTATEE_CFLAGS_NATIVE = $(UNIFIED_DEF)
61 MUTATEE_CXXFLAGS_NATIVE = $(UNIFIED_DEF)
63 # Definitions used for test1 assembly
65 TEST1_ASFLAGS = $(MUTATEE_CFLAGS_GNU)
66 CALL35_1_SRC = call35_1_x86_64_linux.s
67 CALL35_1_SRC_ABI = call35_1_x86_linux.s
69 # Definition used for test6 assembly
72 TEST6_AS_SRC = test6LS-x86_64.s
73 TEST6_AS_OBJ_BASE = $(basename $(TEST6_AS_SRC))
74 #TEST6_AS_OBJ_BASE_ASM = $(basename $(TEST6_AS_SRC))
76 TESTLIB_FLAGS = -fpic -shared -g -Wl,-export-dynamic -Wl,-ldl
78 # see discussion in make.module.tmpl for the format of this variable
79 MUTATEE_TEST9_EXTRA_LIB = 9.-L./ 9.-lInstMe
80 MUTATEE_TEST9_EXTRA_LIB_ABI = 9.-L./ 9.-lInstMe_$(M_ABI)
82 LIBS_LIBTESTSUITE = -ldl
84 TESTDRIVER_LDFLAGS = -liberty
86 include ../make.module.tmpl