2 # Paradyn overall build configuration (unix)
4 # $Id: make.config,v 1.242 2008/09/20 03:56:08 jaw Exp $
12 #USE_DEPRECATED_BPATCH_VECTOR = 1
13 #IBM_BPATCH_COMPAT = 1
14 # Apart from actual "full" releases, don't modify these build Id components.
15 # For personal/experimental builds, feel free to use your
16 # dyninst/make.config.local file to (re-)define BUILD_MARK as you desire.
18 # most "main" modules are only two levels deep, but we need to be able to
19 # change this for those that are deeper in the tree
24 TO_SCRIPTS = $(TO_CORE)/../scripts
27 # If the PLATFORM environment variable isn't set, we'll try to figure it out.
29 SNAME = $(shell if [ -f ${TO_SCRIPTS}/sysname ]; then echo ${TO_SCRIPTS}/sysname; else pwd; fi )
31 CURPLAT = $(shell ${SNAME})
33 # IA64/Linux, i386/Linux, x86-64/Linux, ppc/Linux
34 ifneq (,$(findstring linux,$(CURPLAT)))
36 ifneq (,$(findstring ia64,$(CURPLAT)))
37 PLATFORM = ia64-unknown-linux2.4
39 ifneq (,$(findstring i686,$(CURPLAT)))
40 PLATFORM = i386-unknown-linux2.4
42 ifneq (,$(findstring i586,$(CURPLAT)))
43 PLATFORM = i386-unknown-linux2.4
45 ifneq (,$(findstring i486,$(CURPLAT)))
46 PLATFORM = i386-unknown-linux2.4
48 ifneq (,$(findstring i386,$(CURPLAT)))
49 PLATFORM = i386-unknown-linux2.4
51 ifneq (,$(findstring x86_64,$(CURPLAT)))
52 PLATFORM = x86_64-unknown-linux2.4
54 ifneq (,$(findstring, ppc64,$(CURPLAT)))
55 PLATFORM = ppc64_linux
61 ifneq (,$(findstring aix,$(CURPLAT)))
62 PLATFORM = rs6000-ibm-aix5.1
65 ifneq (,$(findstring solaris,$(CURPLAT)))
66 PLATFORM = sparc-sun-solaris2.8
69 ifneq (,$(findstring irix,$(CURPLAT)))
70 PLATFORM = mips-sgi-irix6.5
72 ifneq (,$(findstring osf,$(CURPLAT)))
73 PLATFORM = alpha-dec-osf5.1
80 $(error Could not determine you current platform. Please set your PLATFORM environment variable to whichever closest matches your platform: alpha-dec-osf5.1 i386-unknown-linux2.4 i386-unknown-nt4.0 ia64-unknown-linux2.4 x86_64-unknown-linux2.4 mips-sgi-irix6.5 rs6000-ibm-aix5.1 rs6000-ibm-aix64-5.2 sparc-sun-solaris2.8 )
83 # ***** EXTERNAL SOFTWARE CONFIGURATION *****
85 # Include any per-user configuration changes; this "local" config file
86 # should *not* be under CVS control, so that it never gets committed.
87 include $(TO_CORE)/make.config.local
89 # Choose default development directories if necessary variables are unset
93 # Destinations for library and executable installation (relative to "dyninst"!)
94 # Warning: modification of the build/install structure is not recommended!
95 LIBRARY_DEST ?= ${TO_CORE}/../${PLATFORM}/lib
96 PROGRAM_DEST ?= ${TO_CORE}/../${PLATFORM}/bin
97 INCLUDE_DEST ?= ${TO_CORE}/../include
99 # Usually, we look for files, binaries, libs in $(TO_CORE)/....<something>.
100 # But if the file doesn't exist there (i.e. if the user hasn't checked them out
101 # with cvs), then we should look in a backup location. That's what this vrble
102 # is about. It's used several times below in this file.
120 PERL = perl # NB: perl v5 or higher required!
122 # COLLECTOR is only used by purify & quantify
123 COLLECTOR = /s/gcc-2.7.2/bin/../lib/gcc-lib/$(PLATFORM)/2.7.2/ld
124 # BUILDSTAMP is used to generate local build vouchers
125 BUILDSTAMP = $(TO_CORE)/../scripts/buildstamp
128 BUILDERROR: PLATFORM must be defined in environment to build (and run) Paradyn
131 # Define all tags based on the platform string. When a new platform
132 # is added, add it to the list
135 # Brief description of -Ds:
138 # cap_save_the_world: support for creating a patched binary
139 # cap_relocation: function relocation
140 # cap_stripped_binaries: recursive parsing and function discovery without symbols
142 # cap_ptrace: uses ptrace interface
143 # cap_proc: uses /proc interface
144 # cap_proc_ioctl: uses ioctl interface to proc
145 # cap_proc_fd: uses solaris-style multiple-fd proc interface
146 # cap_threads: support for threaded applications
147 # cap_dynamic_heap: support for a dynamically growing inferior heap
148 # cap_threaded_times: (Linux only) times() returns per-thread information.
149 # cap_syscall_trap: The ability (or necessity) to place a trap instruction at the instruction following a system call.
150 # cap_slicing: (i386-unknown-linux2.4 and 2.6, sparc-sun-solaris2.8 and 2.9) Intraprocedural slicing feature
151 # cap_32_64: platforms that support 32- and 64-bit mutatees
152 # cap_liveness: liveness analysis
153 # cap_fixpoint_gen: Generate code using a fixpoint method that saves space
154 # cap_noaddr_gen: Allow code generation before determining the address code is going into
155 # cap_mutatee_traps: Traps can be handled mutatee side
156 # cap_instruction_api: System uses instruction API
157 # cap_registers: User can access registers in snippets
158 # cap_instruction_replacement: we use the replaceCode concept to implement (e.g.,) function call replacement
159 # cap_tramp_liveness: we can run liveness over our trampolines to determine what's used
162 # bug_aix_broken_fork: AIX child process does not stop on fork if requested.
163 # bug_syscall_changepc_rewind: Linux rewinds the PC by <addr width> if
164 # the change occurs within a system call; reported by SGI.
166 ifeq ($(PLATFORM),i386-unknown-linux2.4)
167 OLD_DEF = -Di386_unknown_linux2_0
168 ARCH_DEF = -Darch_x86
170 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
171 BUG_DEF = -Dbug_syscall_changepc_rewind
174 ifeq ($(PLATFORM),i386-unknown-linux2.6)
175 OLD_DEF = -Di386_unknown_linux2_0
176 ARCH_DEF = -Darch_x86
178 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
179 BUG_DEF = -Dbug_syscall_changepc_rewind
182 ifeq ($(PLATFORM),x86_64-unknown-linux2.4)
183 OLD_DEF = -Dx86_64_unknown_linux2_4
184 ARCH_DEF = -Darch_x86_64 -Darch_64bit
186 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
187 BUG_DEF = -Dbug_syscall_changepc_rewind
190 ifeq ($(PLATFORM),ia64-unknown-linux2.4)
191 OLD_DEF = -Dia64_unknown_linux2_4
192 ARCH_DEF = -Darch_ia64 -Darch_64bit
194 CAP_DEF = -Dcap_ptrace -Dcap_async_events -Dcap_unwind -Dcap_dynamic_heap -Dcap_threads -Dcap_dwarf -Dcap_serialization
198 ifeq ($(PLATFORM),sparc-sun-solaris2.8)
199 OLD_DEF = -Dsparc_sun_solaris2_4
200 ARCH_DEF = -Darch_sparc
201 OS_DEF = -Dos_solaris
202 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf \
203 -Dcap_syscall_trap -Dcap_serialization
207 ifeq ($(PLATFORM),sparc-sun-solaris2.9)
208 OLD_DEF = -Dsparc_sun_solaris2_4
209 ARCH_DEF = -Darch_sparc
210 OS_DEF = -Dos_solaris
211 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf \
212 -Dcap_syscall_trap -Dcap_serialization
216 ifeq ($(PLATFORM),rs6000-ibm-aix5.1)
217 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
218 ARCH_DEF = -Darch_power
220 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap \
221 -Dcap_liveness -Dcap_use_pdvector -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_instruction_api \
222 -Dcap_stackwalker_use_symtab
226 ifeq ($(PLATFORM),rs6000-ibm-aix64-5.2)
227 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
228 ARCH_DEF = -Darch_power -Darch_64bit
230 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap \
231 -Dcap_32_64 -Dcap_liveness -Dcap_use_pdvector -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement \
232 -Dcap_instruction_api
236 ifeq ($(PLATFORM),ppc64_linux)
237 OLD_DEF = -Dppc64_linux
238 ARCH_DEF = -Darch_power -Darch_64bit
240 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
241 -Dcap_32_64 -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_binary_rewriter -Dcap_instruction_api
242 BUG_DEF = -Dbug_syscall_changepc_rewind
245 ifeq ($(PLATFORM),ppc32_linux)
246 OLD_DEF = -Dppc32_linux
247 ARCH_DEF = -Darch_power
249 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
250 -Dcap_serialization -Dcap_registers -Dcap_instruction_replacement -Dcap_instruction_api \
251 -Dcap_binary_rewriter
252 BUG_DEF = -Dbug_syscall_changepc_rewind
255 ifeq ($(PLATFORM),ppc32_bgl_ion)
256 OLD_DEF = -Dppc32_bluegene
257 ARCH_DEF = -Darch_power
258 OS_DEF = -Dos_bg -Dos_bgl -Dos_bg_ion
259 CAP_DEF = -Dcap_dwarf
263 ifeq ($(PLATFORM),ppc32_bgl_compute)
264 OLD_DEF = -Dppc32_bluegene
265 ARCH_DEF = -Darch_powerO
266 OS_DEF = -Dos_bg -Dos_bgl -Dos_bg_compute
267 CAP_DEF = -Dcap_dwarf
271 ifeq ($(PLATFORM),ppc32_bgp_ion)
272 OLD_DEF = -Dppc32_bluegene
273 ARCH_DEF = -Darch_power
274 OS_DEF = -Dos_bg -Dos_bgp -Dos_bg_ion
275 CAP_DEF = -Dcap_dwarf
279 ifeq ($(PLATFORM),ppc32_bgp_compute)
280 OLD_DEF = -Dppc32_bluegene
281 ARCH_DEF = -Darch_power
282 OS_DEF = -Dos_bg -Dos_bgp -Dos_bg_compute
283 CAP_DEF = -Dcap_dwarf
287 ifeq ($(PLATFORM),x86_64_catamount)
288 OLD_DEF = -Dx86_64_catamount
289 ARCH_DEF = -Darch_x86_64 -Darch_64bit
290 OS_DEF = -Dos_catamount
291 CAP_DEF = -Dcap_dwarf
294 ifeq ($(PLATFORM),x86_64_cnl)
295 OLD_DEF = -Dx86_64_cnl
296 ARCH_DEF = -Darch_x86_64 -Darch_64bit
297 OS_DEF = -Dos_linux -Dos_cnl
298 CAP_DEF = -Dcap_ptrace -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_relocation \
299 -Dcap_dwarf -Dcap_32_64 -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps \
300 -Dcap_instruction_api
301 BUG_DEF = -Dbug_syscall_changepc_rewind
305 # Combine all the #defines for ease of use
306 UNIFIED_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF) $(AC_DEF)
307 UNIFIED_TEST_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF)
309 #ifeq (solaris,$(findstring solaris,$(PLATFORM)))
310 ifeq (solaris,$(findstring solaris,$(OS_DEF)))
315 ifeq (linux,$(findstring linux,$(OS_DEF)))
320 ASFLAGS = -P $(UNIFIED_DEF)
323 # set the macros that control whether the stdint limit and constant
324 # macros are defined for C++ on the compilers command line so that
325 # we don't have to worry about the ordering of #includes.
326 ifeq (linux,$(findstring linux,$(PLATFORM)))
327 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
329 ifeq (bluegene,$(findstring bluegene,$(PLATFORM)))
330 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
336 # Default module compiler; modules which want $(CC) should redefine
340 MODCFLAGS = $(CXXFLAGS)
345 # Added dyninst/external for included external dependencies - bernat, 11JUN07
346 IFLAGS = $(FIRST_INCLUDE) -I../h -I. -I$(TO_CORE) -I$(TO_CORE)/dynutil/h -I$(TO_CORE)/external
348 # uncomment/comment the line below to build with/without compilation warnings
349 # SILENCE_WARNINGS=true
351 ifndef SILENCE_WARNINGS
352 BASICWARNINGS = -W -Wall
354 COMMONWARNINGS = -W -Wall -Wshadow -Wpointer-arith \
356 -Wredundant-decls -Woverloaded-virtual
358 # not as strict as above, but can actually be used -- mdc
359 USEFULWARNINGS = -W -Wall -Wpointer-arith \
363 # being nice to poor old pathetic tcl/tk header files --ari
364 TCLFRIENDLYWARNINGS = -W -Wall -Wpointer-arith \
368 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
369 COMMONWARNINGS += -Wno-unknown-pragmas
370 USEFULWARNINGS += -Wno-unknown-pragmas
371 TCLFRIENDLYWARNINGS += -Wno-unknown-pragmas
372 else # STL on Solaris with cast-align generates a warning with much output
373 COMMONWARNINGS += -Wcast-align
374 USEFULWARNINGS += -Wcast-align
376 endif # SILENCE_WARNINGS
380 GCC_VER := $(shell gcc --version)
381 ifneq (,$(findstring 2.95,$(GCC_VER)))
387 GCC_VER := $(shell gcc --version | head -n 1 | perl -ane 'print pop(@F)')
388 versionNumbers = $(sort $(GCC_VER) 2.95)
389 versionNumber = $(firstword $(versionNumbers))
390 ifneq (2.95, $(versionNumber))
396 COMMONWARNINGS += -Wno-non-template-friend
397 USEFULWARNINGS += -Wno-non-template-friend
398 TCLFRIENDLYWARNINGS += -Wno-non-template-friend
401 #don't inline -- for the files that won't emit template code
404 #inline the private members of the class -- templates.o can use this
405 TEMP_INLINE_DEFINES = -DDO_INLINE_P="inline"
407 # inline everything -- the way things should be
408 ALL_INLINE_DEFINES = -DDO_INLINE_F="inline" -DDO_INLINE_P="inline"
411 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
412 USES_LIBDYNINST_SO = true
414 ifeq (linux,$(findstring linux,$(PLATFORM)))
415 USES_LIBDYNINST_SO = true
418 # Set this variable if it's desired that dyninst be built with the native
419 # compiler on Solaris
423 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
424 USES_LIBDYNINST_SO = true
425 USES_NATIVE_CC = true
431 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
432 ifndef IBM_BPATCH_COMPAT
433 USES_LIBDYNINST_SO = true
436 USES_PERF_LIBRARY = true
437 # No longer used, because of relocation.
438 #USES_LIB_TEXT_HEAP = true
440 ifdef IBM_BPATCH_COMPAT
441 ifeq (ibm-aix, $(findstring ibm-aix, $(PLATFORM)))
442 USES_NATIVE_CC = true
446 DEPENDFLAGS = -M -E -qhalt=E -qro -qtbtable=full -DCOMPILER="xlC"
450 # As of AIX 5, the pm_init function in libpmapi takes more
451 # parameters. This is keyed by the USES_PMAPI_GROUPS define,
452 # and handled in the paradyn runtime library
453 PMAPI_VERSION := $(shell uname -v )
454 ifeq (5, $(findstring 5,$(PMAPI_VERSION)))
455 USES_PMAPI_GROUPS = true
459 # if we don't want OPT_FLAG defined for a particular part of the code
460 # (e.g. rtinst for aix), we just need to define NO_OPT_FLAG before doing
461 # the include of make.config - naim
466 ifeq (ibm-aix64-, $(findstring ibm-aix64-, $(PLATFORM)))
467 ARCH_FLAGS = -maix64 -Drs6000_ibm_aix64
470 ifeq (ppc64_linux, $(findstring ppc64_linux, $(PLATFORM)))
474 # flags for normal (non-kludge) files, with common warnings
475 CFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(ARCH_FLAGS)
476 CXXFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
477 LDFLAGS = $(ARCH_FLAGS)
479 # flags for kludge files, won't have warnings generated
480 KFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(BASICWARNINGS)
484 CFLAGS += -fprofile-arcs -ftest-coverage
485 CXXFLAGS += -fprofile-arcs -ftest-coverage
486 LDFLAGS += -fprofile-arcs -ftest-coverage
491 CFLAGS += -DPURE_BUILD
492 CXXFLAGS += -DPURE_BUILD
495 ifdef USES_PERF_LIBRARY
496 # Add any platform-specific performance libraries here
497 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
499 CFLAGS += -DUSES_PMAPI
500 CXXFLAGS += -DUSES_PMAPI
502 ifdef USES_PMAPI_GROUPS
503 CFLAGS += -DPMAPI_GROUPS
504 CXXFLAGS += -DPMAPI_GROUPS
505 endif # USES_PMAPI_GROUPS
509 ifdef USE_DEPRECATED_BPATCH_VECTOR
510 CXXFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
511 CFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
512 TFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
514 #CFLAGS += -fimplicit-templates
515 CXXFLAGS += -fimplicit-templates
516 TFLAGS += -fimplicit-templates
519 ifdef IBM_BPATCH_COMPAT
520 CXXFLAGS += -DIBM_BPATCH_COMPAT
521 CFLAGS += -DIBM_BPATCH_COMPAT
529 ifeq ($(DEBUG_FLAG),none)
534 CFLAGS += $(DEBUG_FLAG)
535 CXXFLAGS += $(DEBUG_FLAG)
536 KFLAGS += $(DEBUG_FLAG)
539 # flags for template files, don't define external template flags
540 # -g is optional in this case -- should be defined at module level
541 TFLAGS = $(IFLAGS) $(TEMP_INLINE_DEFINES) $(UNIFIED_DEF) $(OPT_FLAG) $(BASICWARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
544 CFLAGS += $(ALL_INLINE_DEFINES)
545 CXXFLAGS += $(ALL_INLINE_DEFINES)
548 # Start off LIBDIR to point to the user's devel area's paradyn lib directory.
549 # As a backup, in case the user hasn't checked out & compiled some paradyn lib,
550 LIBDIR = $(FIRST_LIBDIR) \
551 -L$(TO_CORE)/../$(PLATFORM)/lib
553 # Set IGEN to point to $(TO_CORE)/../bin/$(PLATFORM)/igen, if it exists,
554 # else set it to just "igen" (i.e. assume it's in the user's path)
556 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 )
558 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 )
561 ifdef NO_IMPLICIT_TEMPLATES
562 ifdef USE_DEPRECATED_BPATCH_VECTOR
563 # CFLAGS += -fno-implicit-templates
564 CXXFLAGS += -fno-implicit-templates
565 KFLAGS += -fno-implicit-templates
569 ifndef INSTANTIATE_TEMPLATES
570 ifndef NO_IMPLICIT_TEMPLATES
571 # -fexternal-templates and -Dexternal_templates should both be used or
572 # neither should be used; add them to CFLAGS, CXXFLAGS, and KFLAGS
573 # (but not to TFLAGS).
575 #CFLAGS += -fexternal-templates -Dexternal_templates
576 #CXXFLAGS += -fexternal-templates -Dexternal_templates
577 #KFLAGS += -fexternal-templates -Dexternal_templates
584 ifeq (xyes,x$(USE_PTHREADS))
585 THREADSLIB += -lpthread
587 # On Linux, programs using pthreads are supposed to define _REENTRANT
588 ifeq (linux,$(findstring linux,$(PLATFORM)))
589 CFLAGS += -D_REENTRANT=1
590 CXXFLAGS += -D_REENTRANT=1
591 KFLAGS += -D_REENTRANT=1
592 TFLAGS += -D_REENTRANT=1
595 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
596 #CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
597 #CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
598 #KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
599 #TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
602 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
603 CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
604 CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
605 KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
606 TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
611 # System build constraints
612 #Build the MT daemon on AIX, Solaris, and Linux/x86
613 DONT_BUILD_PD_MT = true
614 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
617 ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
620 ifeq (i386-unknown-linux2.4,$(findstring i386-unknown-linux2.4,$(PLATFORM)))
624 # Build newtestsuite on i386, x86_64 and ia64 linux
625 #DONT_BUILD_NEWTESTSUITE = true
626 #ifeq (i386-unknown-linux,$(findstring i386-unknown-linux,$(PLATFORM)))
627 #DONT_BUILD_NEWTESTSUITE = false
629 #ifeq (ia64-unknown-linux,$(findstring ia64-unknown-linux,$(PLATFORM)))
630 #DONT_BUILD_NEWTESTSUITE = false
632 #ifeq (x86_64-unknown-linux,$(findstring x86_64-unknown-linux,$(PLATFORM)))
633 #DONT_BUILD_NEWTESTSUITE = false
635 #ifeq (ppc32_linux,$(findstring ppc32_linux,$(PLATFORM)))
636 #DONT_BUILD_NEWTESTSUITE = false
638 #ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
639 #DONT_BUILD_NEWTESTSUITE = false
641 #ifeq (rs6000-ibm-aix,$(findstring rs6000-ibm-aix,$(PLATFORM)))
642 #DONT_BUILD_NEWTESTSUITE = false
646 CFLAGS += -Dcap_mmtimer
647 CXXFLAGS += -Dcap_mmtimer
652 $(error error: TCLTK_DIR is not set. Please set in make.config.local)
654 TCLTK_LIB_DIR ?= $(TCLTK_DIR)/lib
655 TCLTK_INC_DIR ?= $(TCLTK_DIR)/include
658 ifdef USES_UNWIND_LIB
659 CFLAGS += -Dcap_unwind
660 CXXFLAGS += -Dcap_unwind
661 LIBUNWIND_LIB ?= $(LIBUNWINDDIR)/lib
662 LIBUNWIND_INC ?= $(LIBUNWINDDIR)/include
665 ifdef USES_DWARF_DEBUG
666 LIBDWARF_INC ?= $(LIBDWARFDIR)/include
667 LIBDWARF_LIB ?= $(LIBDWARFDIR)/lib
671 LIBELF_INC ?= $(LIBELFDIR)/include
672 LIBELF_LIB ?= $(LIBELFDIR)/lib
677 WITHLIBFL = --with-libfldir=$(FLEX_DIR)
683 #Build other variables based off of the above defaults
686 # use the first set if using tcl8.4,
687 # use the second set if still using tcl8.3
690 TCLTK_LIBVER_ID = 8.4
691 CFLAGS += -DTCLCONST=const
692 CXXFLAGS += -DTCLCONST=const
693 KFLAGS += -DTCLCONST=const
694 TFLAGS += -DTCLCONST=const
698 TCLTK_LIBVER_ID = 8.3
699 CFLAGS += -DTCLCONST=""
700 CXXFLAGS += -DTCLCONST=""
701 KFLAGS += -DTCLCONST=""
702 TFLAGS += -DTCLCONST=""
706 TCL_LIB = -ltcl$(TCLTK_LIBVER_ID)
707 TK_LIB = -ltk$(TCLTK_LIBVER_ID)
710 TCLTK_LIBS += -Wl,-Bstatic $(TCL_LIB) $(TK_LIB) -Wl,-Bdynamic
712 TCLTK_LIBS += $(TCL_LIB) $(TK_LIB)
715 # TCL2C is used to generate compilable sources from tcl files
716 TCL2C = $(TO_CORE)/../scripts/tcl2c
717 TCL2C_GEN_SRCS = tcl2c.C
719 IFLAGS += -I$(TCLTK_INC_DIR)
721 LIBDIR += $(patsubst %,-L%/rs_aix41/lib,$(TCLTK_DIR))
723 LIBDIR += $(patsubst %,-L%,$(TCLTK_LIB_DIR))
729 PAPI_INCDIR = $(PAPI_ROOT)
730 PAPI_LIBDIR = $(PAPI_ROOT)
731 #PAPI_LIB = -Wl,-static -lpapi -Wl,-Bdynamic
732 #PAPI_LIB = $(PAPI_LIBDIR)/libpapi.a
733 PAPI_LIB = -Wl,-rpath=$(PAPI_LIBDIR) -L$(PAPI_LIBDIR) -lpapi
734 IFLAGS += -I$(PAPI_INCDIR)
735 LIBDIR += $(patsubst %,-L%,$(PAPI_LIBDIR))
744 LIBDIR += $(patsubst %,-L%,$(FLEX_DIR))
750 # no /s or /p allowed here
751 #FLEX_DIR = /s/flex/rs_aix41/lib
752 #LIBDIR += -L/p/sp2/gcc/lib
756 # Since libiberty.a is in the same g++ directory as libstdc++.a and
757 # libg++.a, no need for a "-L$(LIBERTY_DIR)" entry -at
760 ifdef LIBDWARF_HASSETFRAME
761 CAP_DEF += -Ddwarf_has_setframe
767 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
768 X11DIR = /usr/openwin
769 CFLAGS += -I$(X11DIR)/include
770 CXXFLAGS += -I$(X11DIR)/include
771 TFLAGS += -I$(X11DIR)/include
772 LIBDIR += -R$(X11DIR)/lib -L$(X11DIR)/lib
775 ifeq (linux,$(findstring linux,$(PLATFORM)))
777 CFLAGS += -I$(X11DIR)/include/X11
778 CXXFLAGS += -I$(X11DIR)/include/X11
779 TFLAGS += -I$(X11DIR)/include/X11
780 LIBDIR += -L$(X11DIR)/lib
783 ifeq (x86_64,$(findstring x86_64,$(PLATFORM)))
784 LIBDIR += -L$(X11DIR)/lib64
786 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))