2 # Paradyn overall build configuration (unix)
4 # $Id: make.config,v 1.242 2008/09/20 03:56:08 jaw Exp $
10 # ***** EXTERNAL SOFTWARE CONFIGURATION *****
12 # Include any per-user configuration changes; this "local" config file
13 # should *not* be under CVS control, so that it never gets committed.
17 include $(TO_CORE)/make.config.local
19 Everything = dynutil common symtabAPI instructionAPI parseAPI proccontrol stackwalk dyninstAPI_RT dyninstAPI
20 SymtabAPI = dynutil common symtabAPI
21 StackwalkerAPI = dynutil common proccontrol stackwalk
22 DyninstAPI = dynutil common symtabAPI instructionAPI parseAPI stackwalk dyninstAPI_RT dyninstAPI
23 DynC_API = dynutil common symtabAPI instructionAPI parseAPI dyninstAPI_RT dyninstAPI dynC_API
24 InstructionAPI = dynutil common instructionAPI
25 ProcControlAPI = dynutil common proccontrol
26 DepGraphAPI = depGraphAPI
27 ParseAPI = dynutil common symtabAPI instructionAPI parseAPI
28 ValueAdded = valueAdded/sharedMem
29 DataflowAPI = ParseAPI
31 DEFAULT_COMPONENT ?= default
32 ifeq ($(DEFAULT_COMPONENT),default)
33 fullSystem += $(Everything)
34 BUILD_PARSETHAT = true
36 ifeq ($(DEFAULT_COMPONENT),SymtabAPI)
37 fullSystem += $(SymtabAPI)
39 ifeq ($(DEFAULT_COMPONENT),StackwalkerAPI)
40 fullSystem += $(StackwalkerAPI)
42 ifeq ($(DEFAULT_COMPONENT),DyninstAPI)
43 fullSystem += $(DyninstAPI)
44 BUILD_PARSETHAT = true
46 ifeq ($(DEFAULT_COMPONENT),InstructionAPI)
47 fullSystem += $(InstructionAPI)
49 ifeq ($(DEFAULT_COMPONENT),ProcControlAPI)
50 fullSystem += $(ProcControlAPI)
52 ifeq ($(DEFAULT_COMPONENT),ParseAPI)
53 fullSystem += $(ParseAPI)
55 ifeq ($(DEFAULT_COMPONENT),DataflowAPI)
56 fullSystem += $(ParseAPI)
59 @echo Error: Build system does not have a valid default component: $(DEFAULT_COMPONENT)
69 ifndef DONT_BUILD_NEWTESTSUITE
70 testsuites += testsuite
71 allSubdirs_noinstall += testsuite
72 fullSystem += testsuite
74 testsuites += parseThat
75 fullSystem += parseThat
81 #USE_DEPRECATED_BPATCH_VECTOR = 1
82 #IBM_BPATCH_COMPAT = 1
83 # Apart from actual "full" releases, don't modify these build Id components.
84 # For personal/experimental builds, feel free to use your
85 # dyninst/make.config.local file to (re-)define BUILD_MARK as you desire.
87 # most "main" modules are only two levels deep, but we need to be able to
88 # change this for those that are deeper in the tree
90 TO_SCRIPTS = $(TO_CORE)/scripts
93 # If the PLATFORM environment variable isn't set, we'll try to figure it out.
99 SNAME = $(shell if [ -f ${TO_SCRIPTS}/sysname ]; then echo ${TO_SCRIPTS}/sysname; else pwd; fi )
101 CURPLAT = $(shell ${SNAME})
105 # i386/Linux, x86-64/Linux, ppc/Linux, ppc64/Linux
106 ifneq (,$(findstring linux,$(CURPLAT)))
107 ifneq (,$(findstring i686,$(CURPLAT)))
108 PLATFORM = i386-unknown-linux2.4
110 ifneq (,$(findstring i586,$(CURPLAT)))
111 PLATFORM = i386-unknown-linux2.4
113 ifneq (,$(findstring i486,$(CURPLAT)))
114 PLATFORM = i386-unknown-linux2.4
116 ifneq (,$(findstring i386,$(CURPLAT)))
117 PLATFORM = i386-unknown-linux2.4
119 ifneq (,$(findstring x86_64,$(CURPLAT)))
120 PLATFORM = x86_64-unknown-linux2.4
122 ifneq (,$(findstring, ppc64,$(CURPLAT)))
123 PLATFORM = ppc64_linux
125 ifneq (,$(findstring, powerpc64,$(CURPLAT)))
126 PLATFORM = ppc64_linux
128 ifneq (,$(findstring, powerpc-,$(CURPLAT)))
129 PLATFORM = ppc32_linux
131 ifneq (,$(findstring, ppc-,$(CURPLAT)))
132 PLATFORM = ppc32_linux
137 ifneq (,$(findstring freebsd,$(CURPLAT)))
138 ifneq (,$(findstring i686,$(CURPLAT)))
139 PLATFORM = i386-unknown-freebsd7.2
141 ifneq (,$(findstring i586,$(CURPLAT)))
142 PLATFORM = i386-unknown-freebsd7.2
144 ifneq (,$(findstring i486,$(CURPLAT)))
145 PLATFORM = i386-unknown-freebsd7.2
147 ifneq (,$(findstring i386,$(CURPLAT)))
148 PLATFORM = i386-unknown-freebsd7.2
150 ifneq (,$(findstring x86_64,$(CURPLAT)))
151 PLATFORM = amd64-unknown-freebsd7.2
156 ifneq (,$(findstring vxworks,$(CURPLAT)))
157 ifneq (,$(findstring i686,$(CURPLAT)))
158 PLATFORM = i386-unknown-vxworks6.x
160 ifneq (,$(findstring i586,$(CURPLAT)))
161 PLATFORM = i386-unknown-vxworks6.x
163 ifneq (,$(findstring i486,$(CURPLAT)))
164 PLATFORM = i386-unknown-vxworks6.x
166 ifneq (,$(findstring i386,$(CURPLAT)))
167 PLATFORM = i386-unknown-vxworks6.x
169 ifneq (,$(findstring powerpc-,$(CURPLAT)))
170 PLATFORM = ppc32-unknown-vxworks6.x
183 $(error Could not determine you current platform. Please set your PLATFORM environment variable to whichever closest matches your platform: amd64-unknown-freebsd7.2 i386-unknown-freebsd7.2 i386-unknown-linux2.4 i386-unknown-vxworks6.x ppc32-unknown-vxworks6.x ppc32_bgl_ion ppc32_bgp ppc32_bgp_ion ppc32_linux ppc64_bgq_ion ppc64_linux x86_64-unknown-linux2.4)
186 # Choose default development directories if necessary variables are unset
188 LIBRARY_DEST ?= $(libdir)
189 PROGRAM_DEST ?= $(bindir)
190 INCLUDE_DEST ?= $(includedir)
193 ifeq (x$(LIBRARY_DEST),x)
194 LIBRARY_DEST = $(prefix)/lib
196 ifeq (x$(PROGRAM_DEST),x)
197 PROGRAM_DEST = $(prefix)/bin
199 ifeq (x$(INCLUDE_DEST),x)
200 LIBRARY_DEST = $(prefix)/include
204 # Destinations for library and executable installation (relative to "dyninst"!)
205 # These are here for backwards compatibility with old make.config.locals
206 LIBRARY_DEST ?= ${TO_CORE}/../${PLATFORM}/lib
207 PROGRAM_DEST ?= ${TO_CORE}/../${PLATFORM}/bin
208 INCLUDE_DEST ?= ${TO_CORE}/../include
210 # DESTDIR is a standard name to do a staged install
212 LIBRARY_DEST := ${DESTDIR}${LIBRARY_DEST}
213 PROGRAM_DEST := ${DESTDIR}${PROGRAM_DEST}
214 INCLUDE_DEST := ${DESTDIR}${INCLUDE_DEST}
217 # Usually, we look for files, binaries, libs in $(TO_CORE)/....<something>.
218 # But if the file doesn't exist there (i.e. if the user hasn't checked them out
219 # with cvs), then we should look in a backup location. That's what this vrble
220 # is about. It's used several times below in this file.
221 ifeq ($(PLATFORM),ppc32_bgl_compute)
227 ifeq ($(PLATFORM),ppc32_bgp_compute)
228 GCC = powerpc-bgp-linux-gcc
229 GXX = powerpc-bgp-linux-g++
230 CC = powerpc-bgp-linux-gcc
231 CXX = powerpc-bgp-linux-g++
251 PERL = perl # NB: perl v5 or higher required!
253 # COLLECTOR is only used by purify & quantify
254 COLLECTOR = /s/gcc-2.7.2/bin/../lib/gcc-lib/$(PLATFORM)/2.7.2/ld
255 # BUILDSTAMP is used to generate local build vouchers
256 BUILDSTAMP = $(TO_CORE)/scripts/buildstamp
259 BUILDERROR: PLATFORM must be defined in environment to build (and run) Paradyn
262 # Define all tags based on the platform string. When a new platform
263 # is added, add it to the list
266 # Brief description of -Ds:
269 # cap_save_the_world: support for creating a patched binary
270 # cap_relocation: function relocation
271 # cap_stripped_binaries: recursive parsing and function discovery without symbols
273 # cap_ptrace: uses ptrace interface
274 # cap_proc: uses /proc interface
275 # cap_proc_ioctl: uses ioctl interface to proc
276 # cap_proc_fd: uses solaris-style multiple-fd proc interface
277 # cap_threads: support for threaded applications
278 # cap_dynamic_heap: support for a dynamically growing inferior heap
279 # cap_threaded_times: (Linux only) times() returns per-thread information.
280 # cap_syscall_trap: The ability (or necessity) to place a trap instruction at the instruction following a system call.
281 # cap_slicing: (i386-unknown-linux2.4 and 2.6, sparc-sun-solaris2.8 and 2.9) Intraprocedural slicing feature
282 # cap_32_64: platforms that support 32- and 64-bit mutatees
283 # cap_liveness: liveness analysis
284 # cap_fixpoint_gen: Generate code using a fixpoint method that saves space
285 # cap_noaddr_gen: Allow code generation before determining the address code is going into
286 # cap_mutatee_traps: Traps can be handled mutatee side
287 # cap_instruction_api: System uses instruction API
288 # cap_registers: User can access registers in snippets
289 # cap_instruction_replacement: we use the replaceCode concept to implement (e.g.,) function call replacement
290 # cap_tramp_liveness: we can run liveness over our trampolines to determine what's used
293 # bug_aix_broken_fork: AIX child process does not stop on fork if requested.
294 # bug_syscall_changepc_rewind: Linux rewinds the PC by <addr width> if
295 # the change occurs within a system call; reported by SGI.
296 # bug_freebsd_missing_sigstop: A stop followed by a continue and a new SIGSTOP
297 # results in the new SIGSTOP event never being returned from waitpid
298 # bug_freebsd_mt_suspend: threads do not suspend after an attach
299 # bug_freebsd_change_pc: when changing the PC for a thread, the OS may not
300 # schedule the thread if it is blocked in the kernel.
301 # bug_phdrs_first_page: the OS requires that the program headers for a ELF
302 # binary must reside in the first page of the binary on disk
303 # bug_registers_after_exit: Linux throws an oops and kills the culprit thread
304 # when it attempts to read registers via ptrace after a pre-Exit
305 # bug_force_terminate_failure: during a ForceTerminate on Linux, there exists
306 # an OS-level race condition where we will receive a Post-Exit event but the
307 # process remains stopped
309 ifeq ($(PLATFORM),i386-unknown-linux2.4)
310 OLD_DEF = -Di386_unknown_linux2_0
311 ARCH_DEF = -Darch_x86
313 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_instruction_api -Dcap_serialization -Dcap_binary_rewriter -Dcap_virtual_registers -Dcap_cache_func_starts -Dcap_instruction_replacement -Dcap_tramp_liveness
314 BUG_DEF = -Dbug_syscall_changepc_rewind
317 ifeq ($(PLATFORM),i386-unknown-linux2.6)
318 OLD_DEF = -Di386_unknown_linux2_0
319 ARCH_DEF = -Darch_x86
321 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_instruction_api -Dcap_serialization -Dcap_binary_rewriter -Dcap_virtual_registers -Dcap_instruction_replacement -Dcap_tramp_liveness
322 BUG_DEF = -Dbug_syscall_changepc_rewind
325 ifeq ($(PLATFORM),x86_64-unknown-linux2.4)
326 OLD_DEF = -Dx86_64_unknown_linux2_4
327 ARCH_DEF = -Darch_x86_64 -Darch_64bit
329 CAP_DEF = -Dcap_ptrace -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_relocation -Dcap_dwarf -Dcap_32_64 -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_binary_rewriter -Dcap_registers -Dcap_instruction_api -Dcap_serialization -Dcap_instruction_replacement -Dcap_tramp_liveness
330 BUG_DEF = -Dbug_syscall_changepc_rewind
333 ifeq ($(PLATFORM),sparc-sun-solaris2.8)
334 OLD_DEF = -Dsparc_sun_solaris2_4
335 ARCH_DEF = -Darch_sparc
336 OS_DEF = -Dos_solaris
337 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf \
338 -Dcap_syscall_trap -Dcap_serialization
342 ifeq ($(PLATFORM),sparc-sun-solaris2.9)
343 OLD_DEF = -Dsparc_sun_solaris2_4
344 ARCH_DEF = -Darch_sparc
345 OS_DEF = -Dos_solaris
346 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf \
347 -Dcap_syscall_trap -Dcap_serialization
351 ifeq ($(PLATFORM),rs6000-ibm-aix5.1)
352 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
353 ARCH_DEF = -Darch_power
355 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap \
356 -Dcap_liveness -Dcap_use_pdvector -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_instruction_api \
357 -Dcap_stackwalker_use_symtab
361 ifeq ($(PLATFORM),rs6000-ibm-aix64-5.2)
362 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
363 ARCH_DEF = -Darch_power -Darch_64bit
365 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap \
366 -Dcap_liveness -Dcap_use_pdvector -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement \
367 -Dcap_instruction_api -Dcap_32_64
371 ifeq ($(PLATFORM),ppc64_linux)
372 OLD_DEF = -Dppc64_linux
373 ARCH_DEF = -Darch_power -Darch_64bit
375 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
376 -Dcap_32_64 -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_binary_rewriter -Dcap_instruction_api
377 BUG_DEF = -Dbug_syscall_changepc_rewind -Dbug_registers_after_exit -Dbug_force_terminate_failure
380 ifeq ($(PLATFORM),ppc32_linux)
381 OLD_DEF = -Dppc32_linux
382 ARCH_DEF = -Darch_power
384 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
385 -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_instruction_api \
386 -Dcap_binary_rewriter
387 BUG_DEF = -Dbug_syscall_changepc_rewind -Dbug_registers_after_exit -Dbug_force_terminate_failure
390 ifeq ($(PLATFORM),ppc32_bgp)
391 OLD_DEF = -Dppc32_linux
392 ARCH_DEF = -Darch_power
394 CAP_DEF = -Dcap_ptrace -Dcap_mutatee_traps -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
395 -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_instruction_api \
396 -Dcap_binary_rewriter
397 BUG_DEF = -Dbug_syscall_changepc_rewind
401 ifeq ($(PLATFORM),ppc32_bgl_ion)
402 OLD_DEF = -Dppc32_bluegene
403 ARCH_DEF = -Darch_power
404 OS_DEF = -Dos_bg -Dos_bgl -Dos_bg_ion
405 CAP_DEF = -Dcap_dwarf
409 ifeq ($(PLATFORM),ppc32_bgl_compute)
410 OLD_DEF = -Dppc32_bluegene
411 ARCH_DEF = -Darch_powerO
412 OS_DEF = -Dos_bg -Dos_bgl -Dos_bg_compute
413 CAP_DEF = -Dcap_dwarf
417 ifeq ($(PLATFORM),ppc32_bgp_ion)
418 OLD_DEF = -Dppc32_bluegene
419 ARCH_DEF = -Darch_power
420 OS_DEF = -Dos_bg -Dos_bgp -Dos_bg_ion
421 CAP_DEF = -Dcap_dwarf
425 ifeq ($(PLATFORM),ppc64_bgq_ion)
426 OLD_DEF = -Dppc64_bluegene
427 ARCH_DEF = -Darch_power -Darch_64bit
428 OS_DEF = -Dos_bg -Dos_bgq -Dos_bgq_ion
429 CAP_DEF = -Dcap_dwarf
433 ifeq ($(PLATFORM),ppc32_bgp_compute)
434 OLD_DEF = -Dppc32_bluegene
435 ARCH_DEF = -Darch_power
436 OS_DEF = -Dos_bg -Dos_bgp -Dos_bg_compute
437 CAP_DEF = -Dcap_dwarf
441 ifeq ($(PLATFORM),x86_64_catamount)
442 OLD_DEF = -Dx86_64_catamount
443 ARCH_DEF = -Darch_x86_64 -Darch_64bit
444 OS_DEF = -Dos_catamount
445 CAP_DEF = -Dcap_dwarf
448 ifeq ($(PLATFORM),x86_64_cnl)
449 OLD_DEF = -Dx86_64_cnl
450 ARCH_DEF = -Darch_x86_64 -Darch_64bit
451 OS_DEF = -Dos_linux -Dos_cnl
452 CAP_DEF = -Dcap_ptrace -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_relocation \
453 -Dcap_dwarf -Dcap_32_64 -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps \
454 -Dcap_instruction_api
455 BUG_DEF = -Dbug_syscall_changepc_rewind
459 ifeq ($(PLATFORM),ppc32-unknown-vxworks6.x)
460 OLD_DEF = -Dppc32_vxworks
461 ARCH_DEF = -Darch_power -Dtarget_ppc32 -Dtarget_smallmem -Dendian_mismatch
462 OS_DEF = -Dos_vxworks
463 CAP_DEF = -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_slicing -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dno_cap_serialization -Dcap_virtual_registers -Dcap_stackwalker_use_symtab -Dcap_cache_func_starts -Dcap_instruction_replacement -Dcap_instruction_api
464 #CAP_DEF = -Dcap_mutatee_traps -Dcap_binary_rewriter -Dcap_stripped_binaries
468 ifeq ($(PLATFORM),i386-unknown-vxworks6.x)
469 OLD_DEF = -Di386_vxworks
470 ARCH_DEF = -Darch_x86 -Dtarget_smallmem
471 OS_DEF = -Dos_vxworks -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS
472 CAP_DEF = -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_slicing -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dno_cap_serialization -Dcap_virtual_registers -Dcap_stackwalker_use_symtab -Dcap_cache_func_starts -Dcap_instruction_replacement -Dcap_instruction_api
473 #CAP_DEF = -Dcap_mutatee_traps -Dcap_binary_rewriter -Dcap_stripped_binaries
477 ifeq ($(PLATFORM),i386-unknown-freebsd7.2)
478 OLD_DEF = -Di386_unknown_freebsd7_0
479 ARCH_DEF = -Darch_x86
480 OS_DEF = -Dos_freebsd
481 CAP_DEF = -Dcap_instruction_api -Dcap_noaddr_gen -Dcap_dwarf -Dcap_binary_rewriter -Dcap_liveness -Dcap_fixpoint_gen -Dcap_registers -Dcap_instruction_replacement -Dcap_tramp_liveness -Dcap_relocation -Dcap_virtual_registers -Dcap_stripped_binaries -Dcap_threads -Dcap_mutatee_traps
482 BUG_DEF = -Dbug_freebsd_missing_sigstop -Dbug_freebsd_mt_suspend -Dbug_freebsd_change_pc -Dbug_phdrs_first_page -Dbug_syscall_changepc_rewind -Dbug_freebsd_attach_stop
485 ifeq ($(PLATFORM),amd64-unknown-freebsd7.2)
486 OLD_DEF = -Damd64_unknown_freebsd7_0
487 ARCH_DEF = -Darch_x86_64 -Darch_64bit
488 OS_DEF = -Dos_freebsd
489 CAP_DEF = -Dcap_instruction_api -Dcap_noaddr_gen -Dcap_dwarf -Dcap_binary_rewriter -Dcap_liveness -Dcap_fixpoint_gen -Dcap_registers -Dcap_instruction_replacement -Dcap_tramp_liveness -Dcap_relocation -Dcap_virtual_registers -Dcap_stripped_binaries -Dcap_32_64 -Dcap_threads -Dcap_mutatee_traps
490 BUG_DEF = -Dbug_freebsd_missing_sigstop -Dbug_freebsd_mt_suspend -Dbug_freebsd_change_pc -Dbug_phdrs_first_page -Dbug_syscall_changepc_rewind -Dbug_freebsd_attach_stop
495 CAP_DEF += -Dcap_thread_db
498 # Combine all the #defines for ease of use
499 UNIFIED_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF) $(AC_DEF)
500 UNIFIED_TEST_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF)
502 #ifeq (solaris,$(findstring solaris,$(PLATFORM)))
503 ifeq (solaris,$(findstring solaris,$(OS_DEF)))
504 #AS = /usr/ccs/bin/as
508 ifeq (linux,$(findstring linux,$(OS_DEF)))
513 ASFLAGS = -P $(UNIFIED_DEF)
516 # set the macros that control whether the stdint limit and constant
517 # macros are defined for C++ on the compilers command line so that
518 # we don't have to worry about the ordering of #includes.
519 ifeq (linux,$(findstring linux,$(PLATFORM)))
520 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
522 ifeq (freebsd,$(findstring freebsd,$(PLATFORM)))
523 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
525 ifeq (bluegene,$(findstring bluegene,$(PLATFORM)))
526 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
528 ifeq (bgp,$(findstring bgp,$(PLATFORM)))
529 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
537 # Default module compiler; modules which want $(CC) should redefine
541 MODCFLAGS = $(CXXFLAGS)
546 # Added dyninst/external for included external dependencies - bernat, 11JUN07
547 IFLAGS = $(FIRST_INCLUDE) -I../h -I. -I$(TO_CORE) -I$(TO_CORE)/dynutil/h -I$(TO_CORE)/external
549 # uncomment/comment the line below to build with/without compilation warnings
550 # SILENCE_WARNINGS=true
552 ifndef SILENCE_WARNINGS
553 BASICWARNINGS = -W -Wall
555 COMMONWARNINGS = -W -Wall -Wshadow -Wpointer-arith \
557 -Wredundant-decls -Woverloaded-virtual
559 # not as strict as above, but can actually be used -- mdc
560 USEFULWARNINGS = -W -Wall -Wpointer-arith \
564 # being nice to poor old pathetic tcl/tk header files --ari
565 TCLFRIENDLYWARNINGS = -W -Wall -Wpointer-arith \
569 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
570 COMMONWARNINGS += -Wno-unknown-pragmas
571 USEFULWARNINGS += -Wno-unknown-pragmas
572 TCLFRIENDLYWARNINGS += -Wno-unknown-pragmas
573 else # STL on Solaris with cast-align generates a warning with much output
574 COMMONWARNINGS += -Wcast-align
575 USEFULWARNINGS += -Wcast-align
577 endif # SILENCE_WARNINGS
581 GCC_VER := $(shell gcc --version)
582 ifneq (,$(findstring 2.95,$(GCC_VER)))
588 GCC_VER := $(shell gcc --version | head -n 1 | perl -ane 'print pop(@F)')
589 versionNumbers = $(sort $(GCC_VER) 2.95)
590 versionNumber = $(firstword $(versionNumbers))
591 ifneq (2.95, $(versionNumber))
597 COMMONWARNINGS += -Wno-non-template-friend
598 USEFULWARNINGS += -Wno-non-template-friend
599 TCLFRIENDLYWARNINGS += -Wno-non-template-friend
602 #don't inline -- for the files that won't emit template code
605 #inline the private members of the class -- templates.o can use this
606 TEMP_INLINE_DEFINES = -DDO_INLINE_P="inline"
608 # inline everything -- the way things should be
609 ALL_INLINE_DEFINES = -DDO_INLINE_F="inline" -DDO_INLINE_P="inline"
612 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
613 USES_LIBDYNINST_SO = true
615 ifeq (linux,$(findstring linux,$(PLATFORM)))
616 USES_LIBDYNINST_SO = true
619 # Set this variable if it's desired that dyninst be built with the native
620 # compiler on Solaris
624 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
625 USES_LIBDYNINST_SO = true
626 USES_NATIVE_CC = true
632 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
633 ifndef IBM_BPATCH_COMPAT
634 USES_LIBDYNINST_SO = true
637 USES_PERF_LIBRARY = true
638 # No longer used, because of relocation.
639 #USES_LIB_TEXT_HEAP = true
641 ifdef IBM_BPATCH_COMPAT
642 ifeq (ibm-aix, $(findstring ibm-aix, $(PLATFORM)))
643 USES_NATIVE_CC = true
647 DEPENDFLAGS = -M -E -qhalt=E -qro -qtbtable=full -DCOMPILER="xlC"
651 # As of AIX 5, the pm_init function in libpmapi takes more
652 # parameters. This is keyed by the USES_PMAPI_GROUPS define,
653 # and handled in the paradyn runtime library
654 PMAPI_VERSION := $(shell uname -v )
655 ifeq (5, $(findstring 5,$(PMAPI_VERSION)))
656 USES_PMAPI_GROUPS = true
660 # if we don't want OPT_FLAG defined for a particular part of the code
661 # (e.g. rtinst for aix), we just need to define NO_OPT_FLAG before doing
662 # the include of make.config - naim
667 # Do we shorten compile lines?
668 ifndef VERBOSE_COMPILATION
672 ifeq (ibm-aix64-, $(findstring ibm-aix64-, $(PLATFORM)))
673 ARCH_FLAGS = -maix64 -Drs6000_ibm_aix64
676 ifeq (ppc64_linux, $(findstring ppc64_linux, $(PLATFORM)))
680 # flags for normal (non-kludge) files, with common warnings
681 CFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(ARCH_FLAGS)
682 CXXFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
683 LDFLAGS = $(ARCH_FLAGS)
685 # flags for kludge files, won't have warnings generated
686 KFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(BASICWARNINGS)
690 CFLAGS += -fprofile-arcs -ftest-coverage
691 CXXFLAGS += -fprofile-arcs -ftest-coverage
692 LDFLAGS += -fprofile-arcs -ftest-coverage
697 CFLAGS += -DPURE_BUILD
698 CXXFLAGS += -DPURE_BUILD
701 ifdef USES_PERF_LIBRARY
702 # Add any platform-specific performance libraries here
703 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
705 CFLAGS += -DUSES_PMAPI
706 CXXFLAGS += -DUSES_PMAPI
708 ifdef USES_PMAPI_GROUPS
709 CFLAGS += -DPMAPI_GROUPS
710 CXXFLAGS += -DPMAPI_GROUPS
711 endif # USES_PMAPI_GROUPS
715 ifdef USE_DEPRECATED_BPATCH_VECTOR
716 CXXFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
717 CFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
718 TFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
720 #CFLAGS += -fimplicit-templates
721 CXXFLAGS += -fimplicit-templates
722 TFLAGS += -fimplicit-templates
725 ifdef IBM_BPATCH_COMPAT
726 CXXFLAGS += -DIBM_BPATCH_COMPAT
727 CFLAGS += -DIBM_BPATCH_COMPAT
735 ifeq ($(DEBUG_FLAG),none)
740 CFLAGS += $(DEBUG_FLAG)
741 CXXFLAGS += $(DEBUG_FLAG)
742 KFLAGS += $(DEBUG_FLAG)
745 ifdef VERBOSE_CFG_ACCOUNTING
746 CFLAGS += -DVERBOSE_CFG_FACTORY
747 CXXFLAGS += -DVERBOSE_CFG_FACTORY
750 # flags for template files, don't define external template flags
751 # -g is optional in this case -- should be defined at module level
752 TFLAGS = $(IFLAGS) $(TEMP_INLINE_DEFINES) $(UNIFIED_DEF) $(OPT_FLAG) $(BASICWARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
755 CFLAGS += $(ALL_INLINE_DEFINES)
756 CXXFLAGS += $(ALL_INLINE_DEFINES)
759 # Start off LIBDIR to point to the user's devel area's paradyn lib directory.
760 # As a backup, in case the user hasn't checked out & compiled some paradyn lib,
761 LIBDIR = $(FIRST_LIBDIR) \
762 -L$(TO_CORE)/../$(PLATFORM)/lib
764 # Set IGEN to point to $(TO_CORE)/../bin/$(PLATFORM)/igen, if it exists,
765 # else set it to just "igen" (i.e. assume it's in the user's path)
767 IGEN = $(shell if [ -f ${TO_CORE}/../${BASEPLATFORM}/bin/igen ]; then echo ${TO_CORE}/../${BASEPLATFORM}/bin/igen; else if [ -f ${TO_CORE}/igen/${BASEPLATFORM}/igen ]; then echo ${TO_CORE}/igen/${BASEPLATFORM}/igen; else echo igen; fi; fi )
769 IGEN = $(shell if [ -f ${TO_CORE}/${PROGRAM_DEST}/igen ]; then echo ${TO_CORE}/${PROGRAM_DEST}/igen; else if [ -f ${TO_CORE}/igen/$(PLATFORM)/igen ]; then echo ${TO_CORE}/igen/${PLATFORM}/igen; else echo igen; fi; fi )
772 ifdef NO_IMPLICIT_TEMPLATES
773 ifdef USE_DEPRECATED_BPATCH_VECTOR
774 # CFLAGS += -fno-implicit-templates
775 CXXFLAGS += -fno-implicit-templates
776 KFLAGS += -fno-implicit-templates
780 ifndef INSTANTIATE_TEMPLATES
781 ifndef NO_IMPLICIT_TEMPLATES
782 # -fexternal-templates and -Dexternal_templates should both be used or
783 # neither should be used; add them to CFLAGS, CXXFLAGS, and KFLAGS
784 # (but not to TFLAGS).
786 #CFLAGS += -fexternal-templates -Dexternal_templates
787 #CXXFLAGS += -fexternal-templates -Dexternal_templates
788 #KFLAGS += -fexternal-templates -Dexternal_templates
795 ifeq (xyes,x$(USE_PTHREADS))
796 THREADSLIB += -lpthread
798 # On Linux, programs using pthreads are supposed to define _REENTRANT
799 ifeq (linux,$(findstring linux,$(PLATFORM)))
800 CFLAGS += -D_REENTRANT=1
801 CXXFLAGS += -D_REENTRANT=1
802 KFLAGS += -D_REENTRANT=1
803 TFLAGS += -D_REENTRANT=1
807 ifeq (freebsd,$(findstring freebsd,$(PLATFORM)))
808 CFLAGS += -D_REENTRANT=1
809 CXXFLAGS += -D_REENTRANT=1
810 KFLAGS += -D_REENTRANT=1
811 TFLAGS += -D_REENTRANT=1
814 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
815 #CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
816 #CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
817 #KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
818 #TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
821 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
822 CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
823 CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
824 KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
825 TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
830 # System build constraints
831 #Build the MT daemon on AIX, Solaris, and Linux/x86
832 DONT_BUILD_PD_MT = true
833 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
836 ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
839 ifeq (i386-unknown-linux2.4,$(findstring i386-unknown-linux2.4,$(PLATFORM)))
843 ifeq (ppc32_bgp,$(findstring ppc32_bgp,$(PLATFORM)))
844 DONT_BUILD_NEWTESTSUITE = true
847 CFLAGS += -Dcap_mmtimer
848 CXXFLAGS += -Dcap_mmtimer
853 $(error error: TCLTK_DIR is not set. Please set in make.config.local)
855 TCLTK_LIB_DIR ?= $(TCLTK_DIR)/lib
856 TCLTK_INC_DIR ?= $(TCLTK_DIR)/include
859 ifdef USES_UNWIND_LIB
860 CFLAGS += -Dcap_unwind
861 CXXFLAGS += -Dcap_unwind
862 LIBUNWIND_LIB ?= $(LIBUNWINDDIR)/lib
863 LIBUNWIND_INC ?= $(LIBUNWINDDIR)/include
866 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
867 LIBELF_PLATFORM = "true"
868 LIBDWARF_PLATFORM = "true"
870 ifeq (linux,$(findstring linux,$(PLATFORM)))
871 LIBELF_PLATFORM = "true"
872 LIBDWARF_PLATFORM = "true"
874 ifeq (freebsd,$(findstring freebsd,$(PLATFORM)))
875 LIBELF_PLATFORM = "true"
876 LIBDWARF_PLATFORM = "true"
878 ifeq (vxworks,$(findstring vxworks,$(PLATFORM)))
879 LIBELF_PLATFORM = "true"
880 LIBDWARF_PLATFORM = "true"
882 ifeq (_bgq,$(findstring _bgq,$(PLATFORM)))
883 LIBELF_PLATFORM = "true"
884 LIBDWARF_PLATFORM = "true"
886 ifeq (_bgp,$(findstring _bgp,$(PLATFORM)))
887 LIBELF_PLATFORM = "true"
888 LIBDWARF_PLATFORM = "true"
890 ifeq (_bgl,$(findstring _bgl,$(PLATFORM)))
891 LIBELF_PLATFORM = "true"
892 LIBDWARF_PLATFORM = "true"
894 ifeq (_cnl,$(findstring _cnl,$(PLATFORM)))
895 LIBELF_PLATFORM = "true"
896 LIBDWARF_PLATFORM = "true"
899 ifdef HAVE_NATIVE_DEMANGLER
900 LDFLAGS += -ldemangle
901 CAP_DEF += -Dcap_native_demangler
905 CAP_DEF += -Dcap_gnu_demangler
909 CAP_DEF += -Dcap_liberty
912 DEMANGLER_LINK = -L$(LIBIBERTY_LIB) -liberty
914 DEMANGLER_LINK = -liberty
917 CAP_DEF += -Dcap_liberty_exec
919 DEMANGLER_EXEC_LINK = -L$(LIBIBERTY_LIB) -liberty
921 DEMANGLER_EXEC_LINK = -liberty
928 WITHLIBFL = --with-libfldir=$(FLEX_DIR)
934 #Build other variables based off of the above defaults
937 # use the first set if using tcl8.4,
938 # use the second set if still using tcl8.3
941 TCLTK_LIBVER_ID = 8.4
942 CFLAGS += -DTCLCONST=const
943 CXXFLAGS += -DTCLCONST=const
944 KFLAGS += -DTCLCONST=const
945 TFLAGS += -DTCLCONST=const
949 TCLTK_LIBVER_ID = 8.3
950 CFLAGS += -DTCLCONST=""
951 CXXFLAGS += -DTCLCONST=""
952 KFLAGS += -DTCLCONST=""
953 TFLAGS += -DTCLCONST=""
957 TCL_LIB = -ltcl$(TCLTK_LIBVER_ID)
958 TK_LIB = -ltk$(TCLTK_LIBVER_ID)
961 TCLTK_LIBS += -Wl,-Bstatic $(TCL_LIB) $(TK_LIB) -Wl,-Bdynamic
963 TCLTK_LIBS += $(TCL_LIB) $(TK_LIB)
966 # TCL2C is used to generate compilable sources from tcl files
967 TCL2C = $(TO_CORE)/../scripts/tcl2c
968 TCL2C_GEN_SRCS = tcl2c.C
970 IFLAGS += -I$(TCLTK_INC_DIR)
972 LIBDIR += $(patsubst %,-L%/rs_aix41/lib,$(TCLTK_DIR))
974 LIBDIR += $(patsubst %,-L%,$(TCLTK_LIB_DIR))
980 PAPI_INCDIR = $(PAPI_ROOT)
981 PAPI_LIBDIR = $(PAPI_ROOT)
982 #PAPI_LIB = -Wl,-static -lpapi -Wl,-Bdynamic
983 #PAPI_LIB = $(PAPI_LIBDIR)/libpapi.a
984 PAPI_LIB = -Wl,-rpath=$(PAPI_LIBDIR) -L$(PAPI_LIBDIR) -lpapi
985 IFLAGS += -I$(PAPI_INCDIR)
986 LIBDIR += $(patsubst %,-L%,$(PAPI_LIBDIR))
995 LIBDIR += $(patsubst %,-L%,$(FLEX_DIR))
1001 # no /s or /p allowed here
1002 #FLEX_DIR = /s/flex/rs_aix41/lib
1003 #LIBDIR += -L/p/sp2/gcc/lib
1006 ifdef LIBDWARF_HASSETFRAME
1007 CAP_DEF += -Ddwarf_has_setframe
1013 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
1014 X11DIR = /usr/openwin
1015 CFLAGS += -I$(X11DIR)/include
1016 CXXFLAGS += -I$(X11DIR)/include
1017 TFLAGS += -I$(X11DIR)/include
1018 LIBDIR += -R$(X11DIR)/lib -L$(X11DIR)/lib
1021 ifeq (linux,$(findstring linux,$(PLATFORM)))
1023 CFLAGS += -I$(X11DIR)/include/X11
1024 CXXFLAGS += -I$(X11DIR)/include/X11
1025 TFLAGS += -I$(X11DIR)/include/X11
1026 LIBDIR += -L$(X11DIR)/lib
1029 ifeq (x86_64,$(findstring x86_64,$(PLATFORM)))
1030 LIBDIR += -L$(X11DIR)/lib64
1032 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))