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 core/make.config.local
16 # 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
23 TO_SCRIPTS = $(TO_CORE)/../scripts
25 # If the PLATFORM environment variable isn't set, we'll try to figure it out.
27 SNAME = $(shell if [ -f ${TO_SCRIPTS}/sysname ]; then echo ${TO_SCRIPTS}/sysname; else pwd; fi )
29 CURPLAT = $(shell ${SNAME})
31 # IA64/Linux, i386/Linux, x86-64/Linux, ppc/Linux
32 ifneq (,$(findstring linux,$(CURPLAT)))
34 ifneq (,$(findstring ia64,$(CURPLAT)))
35 PLATFORM = ia64-unknown-linux2.4
37 ifneq (,$(findstring i686,$(CURPLAT)))
38 PLATFORM = i386-unknown-linux2.4
40 ifneq (,$(findstring i586,$(CURPLAT)))
41 PLATFORM = i386-unknown-linux2.4
43 ifneq (,$(findstring i486,$(CURPLAT)))
44 PLATFORM = i386-unknown-linux2.4
46 ifneq (,$(findstring i386,$(CURPLAT)))
47 PLATFORM = i386-unknown-linux2.4
49 ifneq (,$(findstring x86_64,$(CURPLAT)))
50 PLATFORM = x86_64-unknown-linux2.4cv
52 ifneq (,$(findstring, ppc64,$(CURPLAT)))
53 PLATFORM = ppc64_linux
59 ifneq (,$(findstring aix,$(CURPLAT)))
60 PLATFORM = rs6000-ibm-aix5.1
63 ifneq (,$(findstring solaris,$(CURPLAT)))
64 PLATFORM = sparc-sun-solaris2.8
67 ifneq (,$(findstring irix,$(CURPLAT)))
68 PLATFORM = mips-sgi-irix6.5
70 ifneq (,$(findstring osf,$(CURPLAT)))
71 PLATFORM = alpha-dec-osf5.1
78 $(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 )
81 # Destinations for library and executable installation (relative to core!)
82 # Warning: modification of the build/install structure is not recommended!
83 LIBRARY_DEST ?= ../${PLATFORM}/lib
84 PROGRAM_DEST ?= ../${PLATFORM}/bin
85 INCLUDE_DEST ?= ../include
87 # Usually, we look for files, binaries, libs in $(TO_CORE)/....<something>.
88 # But if the file doesn't exist there (i.e. if the user hasn't checked them out
89 # with cvs), then we should look in a backup location. That's what this vrble
90 # is about. It's used several times below in this file.
108 PERL = perl # NB: perl v5 or higher required!
110 # COLLECTOR is only used by purify & quantify
111 COLLECTOR = /s/gcc-2.7.2/bin/../lib/gcc-lib/$(PLATFORM)/2.7.2/ld
112 # BUILDSTAMP is used to generate local build vouchers
113 BUILDSTAMP = $(TO_CORE)/../scripts/buildstamp
116 BUILDERROR: PLATFORM must be defined in environment to build (and run) Paradyn
119 # Define all tags based on the platform string. When a new platform
120 # is added, add it to the list
123 # Brief description of -Ds:
126 # cap_save_the_world: support for creating a patched binary
127 # cap_relocation: function relocation
128 # cap_stripped_binaries: recursive parsing and function discovery without symbols
130 # cap_ptrace: uses ptrace interface
131 # cap_proc: uses /proc interface
132 # cap_proc_ioctl: uses ioctl interface to proc
133 # cap_proc_fd: uses solaris-style multiple-fd proc interface
134 # cap_threads: support for threaded applications
135 # cap_dynamic_heap: support for a dynamically growing inferior heap
136 # cap_threaded_times: (Linux only) times() returns per-thread information.
137 # cap_syscall_trap: The ability (or necessity) to place a trap instruction at the instruction following a system call.
138 # cap_slicing: (i386-unknown-linux2.4 and 2.6, sparc-sun-solaris2.8 and 2.9) Intraprocedural slicing feature
139 # cap_32_64: platforms that support 32- and 64-bit mutatees
140 # cap_liveness: liveness analysis
141 # cap_fixpoint_gen: Generate code using a fixpoint method that saves space
142 # cap_noaddr_gen: Allow code generation before determining the address code is going into
143 # cap_mutatee_traps: Traps can be handled mutatee side
144 # cap_instruction_api: System uses instruction API
145 # cap_registers: User can access registers in snippets
146 # cap_instruction_replacement: we use the replaceCode concept to implement (e.g.,) function call replacement
149 # bug_aix_broken_fork: AIX child process does not stop on fork if requested.
150 # bug_syscall_changepc_rewind: Linux rewinds the PC by <addr width> if
151 # the change occurs within a system call; reported by SGI.
153 ifeq ($(PLATFORM),i386-unknown-linux2.4)
154 OLD_DEF = -Di386_unknown_linux2_0
155 ARCH_DEF = -Darch_x86
157 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_slicing -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_instruction_api -Dno_cap_serialization -Dcap_binary_rewriter -Dcap_virtual_registers -Dcap_stackwalker_use_symtab -Dcap_cache_func_starts
158 BUG_DEF = -Dbug_syscall_changepc_rewind
161 ifeq ($(PLATFORM),i386-unknown-linux2.6)
162 OLD_DEF = -Di386_unknown_linux2_0
163 ARCH_DEF = -Darch_x86
165 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_stripped_binaries -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_slicing -Dcap_liveness -Dcap_fixpoint_gen -Dcap_noaddr_gen -Dcap_mutatee_traps -Dcap_instruction_api -Dcap_binary_rewriter -Dcap_virtual_registers -Dcap_stackwalker_use_symtab
166 BUG_DEF = -Dbug_syscall_changepc_rewind
169 ifeq ($(PLATFORM),x86_64-unknown-linux2.4)
170 OLD_DEF = -Dx86_64_unknown_linux2_4
171 ARCH_DEF = -Darch_x86_64 -Darch_64bit
173 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
174 BUG_DEF = -Dbug_syscall_changepc_rewind
177 ifeq ($(PLATFORM),ia64-unknown-linux2.4)
178 OLD_DEF = -Dia64_unknown_linux2_4
179 ARCH_DEF = -Darch_ia64 -Darch_64bit
181 CAP_DEF = -Dcap_ptrace -Dcap_async_events -Dcap_unwind -Dcap_dynamic_heap -Dcap_threads -Dcap_dwarf -Dno_cap_serialization -Dcap_stackwalker_use_symtab
185 ifeq ($(PLATFORM),sparc-sun-solaris2.8)
186 OLD_DEF = -Dsparc_sun_solaris2_4
187 ARCH_DEF = -Darch_sparc
188 OS_DEF = -Dos_solaris
189 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf -Dcap_syscall_trap -Dcap_slicing -Dno_cap_serialization
193 ifeq ($(PLATFORM),sparc-sun-solaris2.9)
194 OLD_DEF = -Dsparc_sun_solaris2_4
195 ARCH_DEF = -Darch_sparc
196 OS_DEF = -Dos_solaris
197 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_dynamic_heap -Dcap_threads -Dcap_relocation -Dcap_dwarf -Dcap_syscall_trap -Dcap_slicing -Dno_cap_serialization
201 ifeq ($(PLATFORM),rs6000-ibm-aix5.1)
202 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
203 ARCH_DEF = -Darch_power
205 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap -Dcap_liveness -Dcap_use_pdvector -Dno_cap_serialization -Dcap_registers -Dcap_instruction_replacement
209 ifeq ($(PLATFORM),rs6000-ibm-aix64-5.2)
210 OLD_DEF = -Drs6000_ibm_aix5_1 -Drs6000_ibm_aix4_1
211 ARCH_DEF = -Darch_power -Darch_64bit
213 CAP_DEF = -Dcap_proc -Dcap_proc_fd -Dcap_async_events -Dcap_relocation -Dcap_threads -Dcap_dynamic_heap -Dcap_syscall_trap -Dcap_32_64 -Dcap_liveness -Dcap_use_pdvector -Dno_cap_serialization -Dcap_registers -Dcap_instruction_replacement
217 ifeq ($(PLATFORM),ppc64_linux)
218 OLD_DEF = -Dppc64_linux
219 ARCH_DEF = -Darch_power -Darch_64bit
221 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness -Dcap_32_64 -Dno_cap_serialization -Dcap_registers -Dcap_instruction_replacement
222 BUG_DEF = -Dbug_syscall_changepc_rewind
225 ifeq ($(PLATFORM),ppc32_linux)
226 OLD_DEF = -Dppc32_linux
227 ARCH_DEF = -Darch_power
229 CAP_DEF = -Dcap_ptrace -Dcap_relocation -Dcap_async_events -Dcap_threads -Dcap_dynamic_heap -Dcap_dwarf -Dcap_liveness -Dno_cap_serialization -Dcap_registers -Dcap_stackwalker_use_symtab -Dcap_instruction_replacement
230 BUG_DEF = -Dbug_syscall_changepc_rewind
233 ifeq ($(PLATFORM),ppc32_bluegene)
234 OLD_DEF = -Dppc32_bluegene
235 ARCH_DEF = -Darch_power
236 OS_DEF = -Dos_bluegene
237 CAP_DEF = -Dcap_dwarf -Dcap_stackwalker_use_symtab
241 ifeq ($(PLATFORM),ppc32_bgcompute)
242 OLD_DEF = -Dppc32_bluegene
243 ARCH_DEF = -Darch_power
244 OS_DEF = -Dos_bgcompute
245 CAP_DEF = -Dcap_dwarf
249 ifeq ($(PLATFORM),x86_64_catamount)
250 OLD_DEF = -Dx86_64_catamount
251 ARCH_DEF = -Darch_x86_64 -Darch_64bit
252 OS_DEF = -Dos_catamount
253 CAP_DEF = -Dcap_dwarf
256 ifeq ($(PLATFORM),x86_64_cnl)
257 OLD_DEF = -Dx86_64_cnl
258 ARCH_DEF = -Darch_x86_64 -Darch_64bit
259 OS_DEF = -Dos_linux -Dos_cnl
260 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
261 BUG_DEF = -Dbug_syscall_changepc_rewind
265 # Combine all the #defines for ease of use
266 UNIFIED_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF) $(AC_DEF)
267 UNIFIED_TEST_DEF = $(ARCH_DEF) $(OS_DEF) $(VER_DEF) $(CAP_DEF) $(BUG_DEF) $(OLD_DEF)
269 #ifeq (solaris,$(findstring solaris,$(PLATFORM)))
270 ifeq (solaris,$(findstring solaris,$(OS_DEF)))
275 ifeq (linux,$(findstring linux,$(OS_DEF)))
280 ASFLAGS = -P $(UNIFIED_DEF)
283 # set the macros that control whether the stdint limit and constant
284 # macros are defined for C++ on the compilers command line so that
285 # we don't have to worry about the ordering of #includes.
286 ifeq (linux,$(findstring linux,$(PLATFORM)))
287 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
289 ifeq (bluegene,$(findstring bluegene,$(PLATFORM)))
290 STDINT_MACROS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
296 # Default module compiler; modules which want $(CC) should redefine
300 MODCFLAGS = $(CXXFLAGS)
305 # Added core/external for included external dependencies - bernat, 11JUN07
306 IFLAGS = $(FIRST_INCLUDE) -I../h -I. -I$(TO_CORE) -I$(TO_CORE)/external -I$(TO_CORE)/dynutil/h
308 # uncomment/comment the line below to build with/without compilation warnings
309 # SILENCE_WARNINGS=true
311 ifndef SILENCE_WARNINGS
312 BASICWARNINGS = -W -Wall
314 COMMONWARNINGS = -W -Wall -Wshadow -Wpointer-arith \
316 -Wredundant-decls -Woverloaded-virtual
318 # not as strict as above, but can actually be used -- mdc
319 USEFULWARNINGS = -W -Wall -Wpointer-arith \
323 # being nice to poor old pathetic tcl/tk header files --ari
324 TCLFRIENDLYWARNINGS = -W -Wall -Wpointer-arith \
328 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
329 COMMONWARNINGS += -Wno-unknown-pragmas
330 USEFULWARNINGS += -Wno-unknown-pragmas
331 TCLFRIENDLYWARNINGS += -Wno-unknown-pragmas
332 else # STL on Solaris with cast-align generates a warning with much output
333 COMMONWARNINGS += -Wcast-align
334 USEFULWARNINGS += -Wcast-align
336 endif # SILENCE_WARNINGS
340 GCC_VER := $(shell gcc --version)
341 ifneq (,$(findstring 2.95,$(GCC_VER)))
347 GCC_VER := $(shell gcc --version | head -n 1 | perl -ane 'print pop(@F)')
348 versionNumbers = $(sort $(GCC_VER) 2.95)
349 versionNumber = $(firstword $(versionNumbers))
350 ifneq (2.95, $(versionNumber))
356 COMMONWARNINGS += -Wno-non-template-friend
357 USEFULWARNINGS += -Wno-non-template-friend
358 TCLFRIENDLYWARNINGS += -Wno-non-template-friend
361 #don't inline -- for the files that won't emit template code
364 #inline the private members of the class -- templates.o can use this
365 TEMP_INLINE_DEFINES = -DDO_INLINE_P="inline"
367 # inline everything -- the way things should be
368 ALL_INLINE_DEFINES = -DDO_INLINE_F="inline" -DDO_INLINE_P="inline"
371 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
372 USES_LIBDYNINST_SO = true
374 ifeq (linux,$(findstring linux,$(PLATFORM)))
375 USES_LIBDYNINST_SO = true
378 # Set this variable if it's desired that dyninst be built with the native
379 # compiler on Solaris
383 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
384 USES_LIBDYNINST_SO = true
385 USES_NATIVE_CC = true
391 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
392 ifndef IBM_BPATCH_COMPAT
393 USES_LIBDYNINST_SO = true
396 USES_PERF_LIBRARY = true
397 # No longer used, because of relocation.
398 #USES_LIB_TEXT_HEAP = true
400 ifdef IBM_BPATCH_COMPAT
401 ifeq (ibm-aix, $(findstring ibm-aix, $(PLATFORM)))
402 USES_NATIVE_CC = true
406 DEPENDFLAGS = -M -E -qhalt=E -qro -qtbtable=full -DCOMPILER="xlC"
410 # As of AIX 5, the pm_init function in libpmapi takes more
411 # parameters. This is keyed by the USES_PMAPI_GROUPS define,
412 # and handled in the paradyn runtime library
413 PMAPI_VERSION := $(shell uname -v )
414 ifeq (5, $(findstring 5,$(PMAPI_VERSION)))
415 USES_PMAPI_GROUPS = true
419 # if we don't want OPT_FLAG defined for a particular part of the code
420 # (e.g. rtinst for aix), we just need to define NO_OPT_FLAG before doing
421 # the include of make.config - naim
426 ifeq (ibm-aix64-, $(findstring ibm-aix64-, $(PLATFORM)))
427 ARCH_FLAGS = -maix64 -Drs6000_ibm_aix64
430 ifeq (ppc64_linux, $(findstring ppc64_linux, $(PLATFORM)))
434 # flags for normal (non-kludge) files, with common warnings
435 CFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(ARCH_FLAGS)
436 CXXFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(OPT_FLAG) $(COMMON_WARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
437 LDFLAGS = $(ARCH_FLAGS)
439 # flags for kludge files, won't have warnings generated
440 KFLAGS = $(IFLAGS) $(UNIFIED_DEF) $(BASICWARNINGS)
444 CFLAGS += -fprofile-arcs -ftest-coverage
445 CXXFLAGS += -fprofile-arcs -ftest-coverage
446 LDFLAGS += -fprofile-arcs -ftest-coverage
451 CFLAGS += -DPURE_BUILD
452 CXXFLAGS += -DPURE_BUILD
455 ifdef USES_PERF_LIBRARY
456 # Add any platform-specific performance libraries here
457 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
459 CFLAGS += -DUSES_PMAPI
460 CXXFLAGS += -DUSES_PMAPI
462 ifdef USES_PMAPI_GROUPS
463 CFLAGS += -DPMAPI_GROUPS
464 CXXFLAGS += -DPMAPI_GROUPS
465 endif # USES_PMAPI_GROUPS
469 ifdef USE_DEPRECATED_BPATCH_VECTOR
470 CXXFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
471 CFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
472 TFLAGS += -DUSE_DEPRECATED_BPATCH_VECTOR
474 #CFLAGS += -fimplicit-templates
475 CXXFLAGS += -fimplicit-templates
476 TFLAGS += -fimplicit-templates
479 ifdef IBM_BPATCH_COMPAT
480 CXXFLAGS += -DIBM_BPATCH_COMPAT
481 CFLAGS += -DIBM_BPATCH_COMPAT
489 ifeq ($(DEBUG_FLAG),none)
494 CFLAGS += $(DEBUG_FLAG)
495 CXXFLAGS += $(DEBUG_FLAG)
496 KFLAGS += $(DEBUG_FLAG)
499 # flags for template files, don't define external template flags
500 # -g is optional in this case -- should be defined at module level
501 TFLAGS = $(IFLAGS) $(TEMP_INLINE_DEFINES) $(UNIFIED_DEF) $(OPT_FLAG) $(BASICWARNINGS) $(STDINT_MACROS) $(ARCH_FLAGS)
504 CFLAGS += $(ALL_INLINE_DEFINES)
505 CXXFLAGS += $(ALL_INLINE_DEFINES)
508 # Start off LIBDIR to point to the user's devel area's paradyn lib directory.
509 # As a backup, in case the user hasn't checked out & compiled some paradyn lib,
510 LIBDIR = $(FIRST_LIBDIR) \
511 -L$(TO_CORE)/../$(PLATFORM)/lib
513 # Set IGEN to point to $(TO_CORE)/../bin/$(PLATFORM)/igen, if it exists,
514 # else set it to just "igen" (i.e. assume it's in the user's path)
516 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 )
518 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 )
521 ifdef NO_IMPLICIT_TEMPLATES
522 ifdef USE_DEPRECATED_BPATCH_VECTOR
523 # CFLAGS += -fno-implicit-templates
524 CXXFLAGS += -fno-implicit-templates
525 KFLAGS += -fno-implicit-templates
529 ifndef INSTANTIATE_TEMPLATES
530 ifndef NO_IMPLICIT_TEMPLATES
531 # -fexternal-templates and -Dexternal_templates should both be used or
532 # neither should be used; add them to CFLAGS, CXXFLAGS, and KFLAGS
533 # (but not to TFLAGS).
535 #CFLAGS += -fexternal-templates -Dexternal_templates
536 #CXXFLAGS += -fexternal-templates -Dexternal_templates
537 #KFLAGS += -fexternal-templates -Dexternal_templates
544 ifeq (xyes,x$(USE_PTHREADS))
545 THREADSLIB += -lpthread
547 # On Linux, programs using pthreads are supposed to define _REENTRANT
548 ifeq (linux,$(findstring linux,$(PLATFORM)))
549 CFLAGS += -D_REENTRANT=1
550 CXXFLAGS += -D_REENTRANT=1
551 KFLAGS += -D_REENTRANT=1
552 TFLAGS += -D_REENTRANT=1
555 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
556 #CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
557 #CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
558 #KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
559 #TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
562 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
563 CFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
564 CXXFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
565 KFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
566 TFLAGS += -D_REENTRANT=1 -D_THREAD_SAFE=1 -D_THREAD_SAFE_ERRNO=1
571 # System build constraints
572 #Build the MT daemon on AIX, Solaris, and Linux/x86
573 DONT_BUILD_PD_MT = true
574 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))
577 ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
580 ifeq (i386-unknown-linux2.4,$(findstring i386-unknown-linux2.4,$(PLATFORM)))
584 # Build newtestsuite on i386, x86_64 and ia64 linux
585 DONT_BUILD_NEWTESTSUITE = true
586 ifeq (i386-unknown-linux,$(findstring i386-unknown-linux,$(PLATFORM)))
587 DONT_BUILD_NEWTESTSUITE = false
589 ifeq (ia64-unknown-linux,$(findstring ia64-unknown-linux,$(PLATFORM)))
590 DONT_BUILD_NEWTESTSUITE = false
592 ifeq (x86_64-unknown-linux,$(findstring x86_64-unknown-linux,$(PLATFORM)))
593 DONT_BUILD_NEWTESTSUITE = false
595 ifeq (ppc32_linux,$(findstring ppc32_linux,$(PLATFORM)))
596 DONT_BUILD_NEWTESTSUITE = false
598 ifeq (sparc-sun-solaris,$(findstring sparc-sun-solaris,$(PLATFORM)))
599 DONT_BUILD_NEWTESTSUITE = false
601 ifeq (rs6000-ibm-aix,$(findstring rs6000-ibm-aix,$(PLATFORM)))
602 DONT_BUILD_NEWTESTSUITE = false
605 # ***** EXTERNAL SOFTWARE CONFIGURATION *****
607 # Include any per-user configuration changes; this "local" config file
608 # should *not* be under CVS control, so that it never gets committed.
609 -include $(TO_CORE)/make.config.local
611 # Choose default development directories if necessary variables are unset
614 CFLAGS += -Dcap_mmtimer
615 CXXFLAGS += -Dcap_mmtimer
620 $(error error: TCLTK_DIR is not set. Please set in make.config.local)
622 TCLTK_LIB_DIR ?= $(TCLTK_DIR)/lib
623 TCLTK_INC_DIR ?= $(TCLTK_DIR)/include
626 ifdef USES_UNWIND_LIB
627 CFLAGS += -Dcap_unwind
628 CXXFLAGS += -Dcap_unwind
629 LIBUNWIND_LIB ?= $(LIBUNWINDDIR)/lib
630 LIBUNWIND_INC ?= $(LIBUNWINDDIR)/include
633 ifdef USES_DWARF_DEBUG
634 LIBDWARF_INC ?= $(LIBDWARFDIR)/include
635 LIBDWARF_LIB ?= $(LIBDWARFDIR)/lib
639 LIBELF_INC ?= $(LIBELFDIR)/include
640 LIBELF_LIB ?= $(LIBELFDIR)/lib
645 WITHLIBFL = --with-libfldir=$(FLEX_DIR)
651 #Build other variables based off of the above defaults
654 # use the first set if using tcl8.4,
655 # use the second set if still using tcl8.3
658 TCLTK_LIBVER_ID = 8.4
659 CFLAGS += -DTCLCONST=const
660 CXXFLAGS += -DTCLCONST=const
661 KFLAGS += -DTCLCONST=const
662 TFLAGS += -DTCLCONST=const
666 TCLTK_LIBVER_ID = 8.3
667 CFLAGS += -DTCLCONST=""
668 CXXFLAGS += -DTCLCONST=""
669 KFLAGS += -DTCLCONST=""
670 TFLAGS += -DTCLCONST=""
674 TCL_LIB = -ltcl$(TCLTK_LIBVER_ID)
675 TK_LIB = -ltk$(TCLTK_LIBVER_ID)
678 TCLTK_LIBS += -Wl,-Bstatic $(TCL_LIB) $(TK_LIB) -Wl,-Bdynamic
680 TCLTK_LIBS += $(TCL_LIB) $(TK_LIB)
683 # TCL2C is used to generate compilable sources from tcl files
684 TCL2C = $(TO_CORE)/../scripts/tcl2c
685 TCL2C_GEN_SRCS = tcl2c.C
687 IFLAGS += -I$(TCLTK_INC_DIR)
689 LIBDIR += $(patsubst %,-L%/rs_aix41/lib,$(TCLTK_DIR))
691 LIBDIR += $(patsubst %,-L%,$(TCLTK_LIB_DIR))
697 PAPI_INCDIR = $(PAPI_ROOT)
698 PAPI_LIBDIR = $(PAPI_ROOT)
699 #PAPI_LIB = -Wl,-static -lpapi -Wl,-Bdynamic
700 #PAPI_LIB = $(PAPI_LIBDIR)/libpapi.a
701 PAPI_LIB = -Wl,-rpath=$(PAPI_LIBDIR) -L$(PAPI_LIBDIR) -lpapi
702 IFLAGS += -I$(PAPI_INCDIR)
703 LIBDIR += $(patsubst %,-L%,$(PAPI_LIBDIR))
712 LIBDIR += $(patsubst %,-L%,$(FLEX_DIR))
718 # no /s or /p allowed here
719 #FLEX_DIR = /s/flex/rs_aix41/lib
720 #LIBDIR += -L/p/sp2/gcc/lib
724 # Since libiberty.a is in the same g++ directory as libstdc++.a and
725 # libg++.a, no need for a "-L$(LIBERTY_DIR)" entry -at
731 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
732 X11DIR = /usr/openwin
733 CFLAGS += -I$(X11DIR)/include
734 CXXFLAGS += -I$(X11DIR)/include
735 TFLAGS += -I$(X11DIR)/include
736 LIBDIR += -R$(X11DIR)/lib -L$(X11DIR)/lib
739 ifeq (linux,$(findstring linux,$(PLATFORM)))
741 CFLAGS += -I$(X11DIR)/include/X11
742 CXXFLAGS += -I$(X11DIR)/include/X11
743 TFLAGS += -I$(X11DIR)/include/X11
744 LIBDIR += -L$(X11DIR)/lib
747 ifeq (x86_64,$(findstring x86_64,$(PLATFORM)))
748 LIBDIR += -L$(X11DIR)/lib64
750 ifeq (ibm-aix,$(findstring ibm-aix,$(PLATFORM)))