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
161 # bug_aix_broken_fork: AIX child process does not stop on fork if requested.
162 # bug_syscall_changepc_rewind: Linux rewinds the PC by <addr width> if
163 # the change occurs within a system call; reported by SGI.
165 ifeq ($(PLATFORM),i386-unknown-linux2.4)
166 OLD_DEF = -Di386_unknown_linux2_0
167 ARCH_DEF = -Darch_x86
169 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap \
170 -Dcap_dwarf -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_instruction_api -Dno_cap_serialization \
171 -Dcap_binary_rewriter -Dcap_virtual_registers -Dcap_stackwalker_use_symtab -Dcap_cache_func_starts -Dcap_instruction_replacement
172 BUG_DEF = -Dbug_syscall_changepc_rewind
175 ifeq ($(PLATFORM),i386-unknown-linux2.6)
176 OLD_DEF = -Di386_unknown_linux2_0
177 ARCH_DEF = -Darch_x86
179 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap
180 -Dcap_dwarf -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_instruction_api -Dcap_binary_rewriter
181 -Dcap_virtual_registers -Dcap_stackwalker_use_symtab -Dcap_instruction_replacement
182 BUG_DEF = -Dbug_syscall_changepc_rewind
185 ifeq ($(PLATFORM),x86_64-unknown-linux2.4)
186 OLD_DEF = -Dx86_64_unknown_linux2_4
187 ARCH_DEF = -Darch_x86_64 -Darch_64bit
189 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_stackwalker_use_symtab -Dcap_instruction_replacement
190 BUG_DEF = -Dbug_syscall_changepc_rewind
193 ifeq ($(PLATFORM),ia64-unknown-linux2.4)
194 OLD_DEF = -Dia64_unknown_linux2_4
195 ARCH_DEF = -Darch_ia64 -Darch_64bit
197 CAP_DEF = -Dcap_ptrace -Dcap_async_events -Dcap_unwind -Dcap_dynamic_heap -Dcap_threads -Dcap_dwarf -Dno_cap_serialization -Dcap_stackwalker_use_symtab
201 ifeq ($(PLATFORM),sparc-sun-solaris2.8)
202 OLD_DEF = -Dsparc_sun_solaris2_4
203 ARCH_DEF = -Darch_sparc
204 OS_DEF = -Dos_solaris
205 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf \
206 -Dcap_syscall_trap -Dno_cap_serialization
210 ifeq ($(PLATFORM),sparc-sun-solaris2.9)
211 OLD_DEF = -Dsparc_sun_solaris2_4
212 ARCH_DEF = -Darch_sparc
213 OS_DEF = -Dos_solaris
214 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf \
215 -Dcap_syscall_trap -Dno_cap_serialization
219 ifeq ($(PLATFORM),rs6000-ibm-aix5.1)
220 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
221 ARCH_DEF = -Darch_power
223 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap \
224 -Dcap_liveness -Dcap_use_pdvector -Dno_cap_serialization -Dcap_registers -Dcap_instruction_replacement
228 ifeq ($(PLATFORM),rs6000-ibm-aix64-5.2)
229 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
230 ARCH_DEF = -Darch_power -Darch_64bit
232 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap \
233 -Dcap_32_64 -Dcap_liveness -Dcap_use_pdvector -Dno_cap_serialization -Dcap_registers -Dcap_instruction_replacement
237 ifeq ($(PLATFORM),ppc64_linux)
238 OLD_DEF = -Dppc64_linux
239 ARCH_DEF = -Darch_power -Darch_64bit
241 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
242 -Dcap_32_64 -Dno_cap_serialization -Dcap_registers -Dcap_instruction_replacement
243 BUG_DEF = -Dbug_syscall_changepc_rewind
246 ifeq ($(PLATFORM),ppc32_linux)
247 OLD_DEF = -Dppc32_linux
248 ARCH_DEF = -Darch_power
250 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness \
251 % -Dno_cap_serialization -Dcap_registers -Dcap_stackwalker_use_symtab -Dcap_instruction_replacement
252 BUG_DEF = -Dbug_syscall_changepc_rewind
255 ifeq ($(PLATFORM),ppc32_bluegene)
256 OLD_DEF = -Dppc32_bluegene
257 ARCH_DEF = -Darch_power
258 OS_DEF = -Dos_bluegene
259 CAP_DEF = -Dcap_dwarf -Dcap_stackwalker_use_symtab
263 ifeq ($(PLATFORM),ppc32_bgcompute)
264 OLD_DEF = -Dppc32_bluegene
265 ARCH_DEF = -Darch_power
266 OS_DEF = -Dos_bgcompute
267 CAP_DEF = -Dcap_dwarf
271 ifeq ($(PLATFORM),x86_64_catamount)
272 OLD_DEF = -Dx86_64_catamount
273 ARCH_DEF = -Darch_x86_64 -Darch_64bit
274 OS_DEF = -Dos_catamount
275 CAP_DEF = -Dcap_dwarf
278 ifeq ($(PLATFORM),x86_64_cnl)
279 OLD_DEF = -Dx86_64_cnl
280 ARCH_DEF = -Darch_x86_64 -Darch_64bit
281 OS_DEF = -Dos_linux -Dos_cnl
282 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_stackwalker_use_symtab
283 BUG_DEF = -Dbug_syscall_changepc_rewind
287 # Combine all the #defines for ease of use
288 UNIFIED_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF) $(AC_DEF)
289 UNIFIED_TEST_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF)
291 #ifeq (solaris,$(findstring solaris,$(PLATFORM)))
292 ifeq (solaris,$(findstring solaris,$(OS_DEF)))
297 ifeq (linux,$(findstring linux,$(OS_DEF)))
302 ASFLAGS = -P $(UNIFIED_DEF)
305 # set the macros that control whether the stdint limit and constant
306 # macros are defined for C++ on the compilers command line so that
307 # we don't have to worry about the ordering of #includes.
308 ifeq (linux,$(findstring linux,$(PLATFORM)))
309 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
311 ifeq (bluegene,$(findstring bluegene,$(PLATFORM)))
312 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
318 # Default module compiler; modules which want $(CC) should redefine
322 MODCFLAGS = $(CXXFLAGS)
327 # Added dyninst/external for included external dependencies - bernat, 11JUN07
328 IFLAGS = $(FIRST_INCLUDE) -I../h -I. -I$(TO_CORE) -I$(TO_CORE)/external -I$(TO_CORE)/dynutil/h
330 # uncomment/comment the line below to build with/without compilation warnings
331 # SILENCE_WARNINGS=true
333 ifndef SILENCE_WARNINGS
334 BASICWARNINGS = -W -Wall
336 COMMONWARNINGS = -W -Wall -Wshadow -Wpointer-arith \
338 -Wredundant-decls -Woverloaded-virtual
340 # not as strict as above, but can actually be used -- mdc
341 USEFULWARNINGS = -W -Wall -Wpointer-arith \
345 # being nice to poor old pathetic tcl/tk header files --ari
346 TCLFRIENDLYWARNINGS = -W -Wall -Wpointer-arith \
350 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
351 COMMONWARNINGS += -Wno-unknown-pragmas
352 USEFULWARNINGS += -Wno-unknown-pragmas
353 TCLFRIENDLYWARNINGS += -Wno-unknown-pragmas
354 else # STL on Solaris with cast-align generates a warning with much output
355 COMMONWARNINGS += -Wcast-align
356 USEFULWARNINGS += -Wcast-align
358 endif # SILENCE_WARNINGS
362 GCC_VER := $(shell gcc --version)
363 ifneq (,$(findstring 2.95,$(GCC_VER)))
369 GCC_VER := $(shell gcc --version | head -n 1 | perl -ane 'print pop(@F)')
370 versionNumbers = $(sort $(GCC_VER) 2.95)
371 versionNumber = $(firstword $(versionNumbers))
372 ifneq (2.95, $(versionNumber))
378 COMMONWARNINGS += -Wno-non-template-friend
379 USEFULWARNINGS += -Wno-non-template-friend
380 TCLFRIENDLYWARNINGS += -Wno-non-template-friend
383 #don't inline -- for the files that won't emit template code
386 #inline the private members of the class -- templates.o can use this
387 TEMP_INLINE_DEFINES = -DDO_INLINE_P="inline"
389 # inline everything -- the way things should be
390 ALL_INLINE_DEFINES = -DDO_INLINE_F="inline" -DDO_INLINE_P="inline"
393 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
394 USES_LIBDYNINST_SO = true
396 ifeq (linux,$(findstring linux,$(PLATFORM)))
397 USES_LIBDYNINST_SO = true
400 # Set this variable if it's desired that dyninst be built with the native
401 # compiler on Solaris
405 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
406 USES_LIBDYNINST_SO = true
407 USES_NATIVE_CC = true
413 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
414 ifndef IBM_BPATCH_COMPAT
415 USES_LIBDYNINST_SO = true
418 USES_PERF_LIBRARY = true
419 # No longer used, because of relocation.
420 #USES_LIB_TEXT_HEAP = true
422 ifdef IBM_BPATCH_COMPAT
423 ifeq (ibm-aix, $(findstring ibm-aix, $(PLATFORM)))
424 USES_NATIVE_CC = true
428 DEPENDFLAGS = -M -E -qhalt=E -qro -qtbtable=full -DCOMPILER="xlC"
432 # As of AIX 5, the pm_init function in libpmapi takes more
433 # parameters. This is keyed by the USES_PMAPI_GROUPS define,
434 # and handled in the paradyn runtime library
435 PMAPI_VERSION := $(shell uname -v )
436 ifeq (5, $(findstring 5,$(PMAPI_VERSION)))
437 USES_PMAPI_GROUPS = true
441 # if we don't want OPT_FLAG defined for a particular part of the code
442 # (e.g. rtinst for aix), we just need to define NO_OPT_FLAG before doing
443 # the include of make.config - naim
448 ifeq (ibm-aix64-, $(findstring ibm-aix64-, $(PLATFORM)))
449 ARCH_FLAGS = -maix64 -Drs6000_ibm_aix64
452 ifeq (ppc64_linux, $(findstring ppc64_linux, $(PLATFORM)))
456 # flags for normal (non-kludge) files, with common warnings
457 CFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(ARCH_FLAGS)
458 CXXFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
459 LDFLAGS = $(ARCH_FLAGS)
461 # flags for kludge files, won't have warnings generated
462 KFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(BASICWARNINGS)
466 CFLAGS += -fprofile-arcs -ftest-coverage
467 CXXFLAGS += -fprofile-arcs -ftest-coverage
468 LDFLAGS += -fprofile-arcs -ftest-coverage
473 CFLAGS += -DPURE_BUILD
474 CXXFLAGS += -DPURE_BUILD
477 ifdef USES_PERF_LIBRARY
478 # Add any platform-specific performance libraries here
479 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
481 CFLAGS += -DUSES_PMAPI
482 CXXFLAGS += -DUSES_PMAPI
484 ifdef USES_PMAPI_GROUPS
485 CFLAGS += -DPMAPI_GROUPS
486 CXXFLAGS += -DPMAPI_GROUPS
487 endif # USES_PMAPI_GROUPS
491 ifdef USE_DEPRECATED_BPATCH_VECTOR
492 CXXFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
493 CFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
494 TFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
496 #CFLAGS += -fimplicit-templates
497 CXXFLAGS += -fimplicit-templates
498 TFLAGS += -fimplicit-templates
501 ifdef IBM_BPATCH_COMPAT
502 CXXFLAGS += -DIBM_BPATCH_COMPAT
503 CFLAGS += -DIBM_BPATCH_COMPAT
511 ifeq ($(DEBUG_FLAG),none)
516 CFLAGS += $(DEBUG_FLAG)
517 CXXFLAGS += $(DEBUG_FLAG)
518 KFLAGS += $(DEBUG_FLAG)
521 # flags for template files, don't define external template flags
522 # -g is optional in this case -- should be defined at module level
523 TFLAGS = $(IFLAGS) $(TEMP_INLINE_DEFINES) $(UNIFIED_DEF) $(OPT_FLAG) $(BASICWARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
526 CFLAGS += $(ALL_INLINE_DEFINES)
527 CXXFLAGS += $(ALL_INLINE_DEFINES)
530 # Start off LIBDIR to point to the user's devel area's paradyn lib directory.
531 # As a backup, in case the user hasn't checked out & compiled some paradyn lib,
532 LIBDIR = $(FIRST_LIBDIR) \
533 -L$(TO_CORE)/../$(PLATFORM)/lib
535 # Set IGEN to point to $(TO_CORE)/../bin/$(PLATFORM)/igen, if it exists,
536 # else set it to just "igen" (i.e. assume it's in the user's path)
538 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 )
540 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 )
543 ifdef NO_IMPLICIT_TEMPLATES
544 ifdef USE_DEPRECATED_BPATCH_VECTOR
545 # CFLAGS += -fno-implicit-templates
546 CXXFLAGS += -fno-implicit-templates
547 KFLAGS += -fno-implicit-templates
551 ifndef INSTANTIATE_TEMPLATES
552 ifndef NO_IMPLICIT_TEMPLATES
553 # -fexternal-templates and -Dexternal_templates should both be used or
554 # neither should be used; add them to CFLAGS, CXXFLAGS, and KFLAGS
555 # (but not to TFLAGS).
557 #CFLAGS += -fexternal-templates -Dexternal_templates
558 #CXXFLAGS += -fexternal-templates -Dexternal_templates
559 #KFLAGS += -fexternal-templates -Dexternal_templates
566 ifeq (xyes,x$(USE_PTHREADS))
567 THREADSLIB += -lpthread
569 # On Linux, programs using pthreads are supposed to define _REENTRANT
570 ifeq (linux,$(findstring linux,$(PLATFORM)))
571 CFLAGS += -D_REENTRANT=1
572 CXXFLAGS += -D_REENTRANT=1
573 KFLAGS += -D_REENTRANT=1
574 TFLAGS += -D_REENTRANT=1
577 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
578 #CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
579 #CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
580 #KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
581 #TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
584 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
585 CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
586 CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
587 KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
588 TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
593 # System build constraints
594 #Build the MT daemon on AIX, Solaris, and Linux/x86
595 DONT_BUILD_PD_MT = true
596 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
599 ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
602 ifeq (i386-unknown-linux2.4,$(findstring i386-unknown-linux2.4,$(PLATFORM)))
606 # Build newtestsuite on i386, x86_64 and ia64 linux
607 #DONT_BUILD_NEWTESTSUITE = true
608 #ifeq (i386-unknown-linux,$(findstring i386-unknown-linux,$(PLATFORM)))
609 #DONT_BUILD_NEWTESTSUITE = false
611 #ifeq (ia64-unknown-linux,$(findstring ia64-unknown-linux,$(PLATFORM)))
612 #DONT_BUILD_NEWTESTSUITE = false
614 #ifeq (x86_64-unknown-linux,$(findstring x86_64-unknown-linux,$(PLATFORM)))
615 #DONT_BUILD_NEWTESTSUITE = false
617 #ifeq (ppc32_linux,$(findstring ppc32_linux,$(PLATFORM)))
618 #DONT_BUILD_NEWTESTSUITE = false
620 #ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
621 #DONT_BUILD_NEWTESTSUITE = false
623 #ifeq (rs6000-ibm-aix,$(findstring rs6000-ibm-aix,$(PLATFORM)))
624 #DONT_BUILD_NEWTESTSUITE = false
628 CFLAGS += -Dcap_mmtimer
629 CXXFLAGS += -Dcap_mmtimer
634 $(error error: TCLTK_DIR is not set. Please set in make.config.local)
636 TCLTK_LIB_DIR ?= $(TCLTK_DIR)/lib
637 TCLTK_INC_DIR ?= $(TCLTK_DIR)/include
640 ifdef USES_UNWIND_LIB
641 CFLAGS += -Dcap_unwind
642 CXXFLAGS += -Dcap_unwind
643 LIBUNWIND_LIB ?= $(LIBUNWINDDIR)/lib
644 LIBUNWIND_INC ?= $(LIBUNWINDDIR)/include
647 ifdef USES_DWARF_DEBUG
648 LIBDWARF_INC ?= $(LIBDWARFDIR)/include
649 LIBDWARF_LIB ?= $(LIBDWARFDIR)/lib
653 LIBELF_INC ?= $(LIBELFDIR)/include
654 LIBELF_LIB ?= $(LIBELFDIR)/lib
659 WITHLIBFL = --with-libfldir=$(FLEX_DIR)
665 #Build other variables based off of the above defaults
668 # use the first set if using tcl8.4,
669 # use the second set if still using tcl8.3
672 TCLTK_LIBVER_ID = 8.4
673 CFLAGS += -DTCLCONST=const
674 CXXFLAGS += -DTCLCONST=const
675 KFLAGS += -DTCLCONST=const
676 TFLAGS += -DTCLCONST=const
680 TCLTK_LIBVER_ID = 8.3
681 CFLAGS += -DTCLCONST=""
682 CXXFLAGS += -DTCLCONST=""
683 KFLAGS += -DTCLCONST=""
684 TFLAGS += -DTCLCONST=""
688 TCL_LIB = -ltcl$(TCLTK_LIBVER_ID)
689 TK_LIB = -ltk$(TCLTK_LIBVER_ID)
692 TCLTK_LIBS += -Wl,-Bstatic $(TCL_LIB) $(TK_LIB) -Wl,-Bdynamic
694 TCLTK_LIBS += $(TCL_LIB) $(TK_LIB)
697 # TCL2C is used to generate compilable sources from tcl files
698 TCL2C = $(TO_CORE)/../scripts/tcl2c
699 TCL2C_GEN_SRCS = tcl2c.C
701 IFLAGS += -I$(TCLTK_INC_DIR)
703 LIBDIR += $(patsubst %,-L%/rs_aix41/lib,$(TCLTK_DIR))
705 LIBDIR += $(patsubst %,-L%,$(TCLTK_LIB_DIR))
711 PAPI_INCDIR = $(PAPI_ROOT)
712 PAPI_LIBDIR = $(PAPI_ROOT)
713 #PAPI_LIB = -Wl,-static -lpapi -Wl,-Bdynamic
714 #PAPI_LIB = $(PAPI_LIBDIR)/libpapi.a
715 PAPI_LIB = -Wl,-rpath=$(PAPI_LIBDIR) -L$(PAPI_LIBDIR) -lpapi
716 IFLAGS += -I$(PAPI_INCDIR)
717 LIBDIR += $(patsubst %,-L%,$(PAPI_LIBDIR))
726 LIBDIR += $(patsubst %,-L%,$(FLEX_DIR))
732 # no /s or /p allowed here
733 #FLEX_DIR = /s/flex/rs_aix41/lib
734 #LIBDIR += -L/p/sp2/gcc/lib
738 # Since libiberty.a is in the same g++ directory as libstdc++.a and
739 # libg++.a, no need for a "-L$(LIBERTY_DIR)" entry -at
745 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
746 X11DIR = /usr/openwin
747 CFLAGS += -I$(X11DIR)/include
748 CXXFLAGS += -I$(X11DIR)/include
749 TFLAGS += -I$(X11DIR)/include
750 LIBDIR += -R$(X11DIR)/lib -L$(X11DIR)/lib
753 ifeq (linux,$(findstring linux,$(PLATFORM)))
755 CFLAGS += -I$(X11DIR)/include/X11
756 CXXFLAGS += -I$(X11DIR)/include/X11
757 TFLAGS += -I$(X11DIR)/include/X11
758 LIBDIR += -L$(X11DIR)/lib
761 ifeq (x86_64,$(findstring x86_64,$(PLATFORM)))
762 LIBDIR += -L$(X11DIR)/lib64
764 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))