1 ###############################################################################
3 # CLAM System default variable definitions for C++ compilation.
5 ###############################################################################
7 ifneq "$(BUILD_PARAMETER_FILE)" ""
8 # define our version of the build parameter file. this should be set
9 # beforehand so we override the default parameter file for clam.
10 export PARAMETER_FILE = $(BUILD_PARAMETER_FILE)
12 ifeq "$(PARAMETER_FILE)" ""
13 # last ditch attempt to get one that will work.
14 export PARAMETER_FILE = $(PRODUCTION_STORE)/feisty_meow_config.ini
17 ###############################################################################
19 # Pull in the base support for CLAM.
22 ###############################################################################
24 #no # set the repository directory if it is still set to the base version.
25 #ifeq "$(FEISTY_MEOW_APEX)" ""
26 # ifeq "$(OP_SYSTEM)" "UNIX"
27 # export FEISTY_MEOW_APEX = $(HOME)/hoople
29 # ifeq "$(OP_SYSTEM)" "WIN32"
30 # export FEISTY_MEOW_APEX = l:
34 #export CLAM_BINARIES = $(CLAM_SCRIPTS)/../bin
36 ###############################################################################
38 # BASE_CPU is a flag that distinguishes the type of processor, if necessary.
40 #BASE_CPU := m68k = motorola 68000 series | m68340 = motorola 68340
41 # | x86 = intel x86 | ppc = power pc | arm = ARM core
43 # set the CPU to a default if it has not been set previously.
45 # ifneq "$(OP_SYSTEM)" "WIN32"
46 BASE_CPU := $(shell machine 2>/dev/null || arch 2>/dev/null || uname -m 2>/dev/null || echo i686)
49 # ifeq "$(BASE_CPU)" ""
50 # BASE_CPU := $(shell uname -m)
51 # BASE_CPU := $(shell arch)
52 # ifeq "$(BASE_CPU)" ""
53 # # failed to get the cpu type.
59 # COMPILER is a flag that specifies the compiler that will be used to build
60 # code. It is mainly used within CLAM itself for determining the proper
63 #COMPILER := GNU_LINUX | GNU_ARM_LINUX | GNU_DARWIN | GNU_WINDOWS | VISUAL_CPP
65 # choose a default compiler if none was specified.
67 ifeq "$(OP_SYSTEM)" "UNIX"
68 ifeq "$(OS_SUBCLASS)" "darwin"
69 COMPILER := GNU_DARWIN
74 ifeq "$(OP_SYSTEM)" "WIN32"
75 # COMPILER := GNU_WINDOWS
76 COMPILER := VISUAL_CPP
79 # if we get into this case, we have no idea how to set the default
80 # compiler. you may need to change the above logic for guessing it
81 # anyhow. but we will go with our favorite default.
86 # COMPILER_VERSION specifies the version of a particular compiler, if this is
87 # needed to distinguish how the code is built.
88 export COMPILER_VERSION
90 ###############################################################################
92 # "TYPE" is the kind of product being generated by this project. this is
93 # used to decide where to put the final products of compilation. this is a
94 # variable in the user makefile.
96 # TYPE = library (outputs are static or dynamic libraries)
97 # TYPE = application (outputs are main-line executables)
98 # TYPE = test (outputs are test programs)
99 # TYPE = hierarchy (there are no outputs; just invokes other makes)
102 ###############################################################################
104 # "DEFINITIONS" is a list of compiler flags that define the value of c macros.
105 # These usually have the format of -D<flag>, but in this variable, only the
106 # <flag> itself should be listed because the compiler option -D is added
108 DEFINITIONS += CLAM_BUILT
109 # simple definition that tells the code that clam is building it.
111 ifneq "$(BOOT_STRAPPING)" ""
112 # the software is being built from the ground up, including the binaries
113 # we use for building (like value_tagger and others).
114 DEFINITIONS += BOOT_STRAPPING
117 # "UNDEFINITIONS" is a list of macros to undefine.
120 # GLOBAL_PRODUCT_NAME is an important variable for tagging the entire code base
121 # with some branding. It is provided as a macro definition to all source
122 # files. The initial value for the macro should come from the build init
123 # file, but if it does not, we pick a default.
124 ifeq "$(product_name)" ""
125 GLOBAL_PRODUCT_NAME := \\\"HOOPLE\\\"
127 GLOBAL_PRODUCT_NAME := \\\"$(product_name)\\\"
130 # *_PRODUCT_VERSION records parts of our version numbers for the code to see.
131 DEFINITIONS += MAJOR_PRODUCT_VERSION=$(major) MINOR_PRODUCT_VERSION=$(minor)
133 # TEST_MAKEFILE tells the preconditions to check that the files specified
134 # in the makefile are actually present.
135 export TEST_MAKEFILE =
137 ###############################################################################
139 # pseudo-boolean variable section. if these have any value at all, then they
140 # are treated as being true. note that these are flags that should generally
141 # be passed on the command line to a make. if they are intended to be used
142 # from inside a makefile, then they must appear before this file is included.
144 # "REBUILD" causes a rebuild of all source files if it is true.
147 # "DEBUG" is used to specify a debugging build. the default is for this to
148 # be false, which causes a release build.
151 # Add in a macro definition if debugging is turned on. This allows us to
152 # easily eliminate code from release builds.
154 DEFINITIONS += __DEBUGGING__
157 # "CONSOLE_MODE" causes the program to be generated as a console application.
158 # this is relevant in systems where programs are otherwise built with graphical
159 # user interfaces. these are always built statically.
162 # "OPTIMIZE" creates optimized code.
165 # "NO_COMPILE" just runs through the targets without compiling.
168 # "BUILD_LIST_FILE" is the set of files that need to be recompiled for
170 export BUILD_LIST_FILE = $(CLAM_TMP)/clam_rebuild.$(PROJECT)
172 # "BUILD_WHACK_FILE" is the set of object files that should be removed if
173 # a build failure occurs.
174 export BUILD_WHACK_FILE = $(CLAM_TMP)/clam_whack.$(PROJECT)
176 # we are adding the build list to the flag files so we know it gets cleaned up.
177 FLAG_FILES += $(BUILD_LIST_FILE) $(BUILD_WHACK_FILE)
179 ###############################################################################
181 # This section implements the HOOPLE directory scheme. If your scheme differs,
182 # then you will want to modify these appropriately.
184 # "THIRD_PARTY_DIR" is the root of our support libraries.
185 export THIRD_PARTY_DIR
186 ifeq "$(THIRD_PARTY_DIR)" ""
187 export THIRD_PARTY_DIR := "$(PRODUCTION_STORE)/3rdparty"
190 # "OUTPUT_ROOT" is the root of all output directories for objects and other
191 # products being built.
192 export OUTPUT_ROOT = $(CLAM_TMP)/objects
194 # "PLATFORM_ADD_IN" is an option discriminator for the intended execution
195 # platform. it should end in an underscore if it is provided.
196 #PLATFORM_ADD_IN = linux_ | w32_
198 # "CPU_BUILD_DIR" distinguishes object directories by including the CPU
199 # name and the type of build.
201 CPU_BUILD_DIR = $(BASE_CPU)_$(PLATFORM_ADD_IN)dbg
203 CPU_BUILD_DIR = $(BASE_CPU)_$(PLATFORM_ADD_IN)rel
206 # "BASE_OUTPUT_PATH" is the parent directory of objects for this type of
207 # CPU and this type of build.
208 export BASE_OUTPUT_PATH = $(OUTPUT_ROOT)/$(CPU_BUILD_DIR)
210 # special case when doing arm-linux builds
211 ifeq "$(COMPILER)" "GNU_ARM_LINUX"
212 export TARGETS_STORE = $(FEISTY_MEOW_APEX)/$(CPU_BUILD_DIR)
213 # special output directory for firmware does not include CPU name because
214 # the repository already include the CPU name
215 BASE_OUTPUT_PATH = $(OUTPUT_ROOT)
218 # "OUTPUT_PATH" is the directory to generate all compiled products into.
219 export OUTPUT_PATH = $(BASE_OUTPUT_PATH)/$(PROJECT)
221 # "OBJECT_DIR" is where object files will be stored during compilation for the
222 # target type being produced.
223 export OBJECT_DIR = $(OUTPUT_PATH)
225 # These specify where files are to be created or located for our local build.
226 export EXECUTABLE_DIR = $(TARGETS_STORE)
227 export DYNAMIC_LIBRARY_DIR = $(TARGETS_STORE)
228 export STATIC_LIBRARY_DIR = $(TARGETS_STORE)
230 # "HEADER_SEARCH_PATH" is where the class interface files are to be found.
231 # we add the generated store folder for the build version file.
232 HEADER_SEARCH_PATH = $(FEISTY_MEOW_GENERATED_STORE)/versions
234 # "HOOPLE_HEADERS" are locations where the HOOPLE headers can be found.
235 ifeq "$(HOOPLE_HEADERS)" ""
236 #seems like some of this is redundant with earlier 3rdparty exploring.
237 LOCUS_LIBRARY_HEADERS = $(shell bash -c '\
238 if [ -d "$(FEISTY_MEOW_APEX)/nucleus" ]; then \
239 echo "$(FEISTY_MEOW_APEX)/nucleus" "$(FEISTY_MEOW_APEX)/octopi" "$(FEISTY_MEOW_APEX)/graphiq" ; \
242 fi | tr "\\\\" / | sed -e "s/\([a-zA-Z]\):\/\([^ ]*\)/\/cygdrive\/\1\/\2/g" ')
243 # above assumes cygwin support for windows! was assuming msys support.
244 HOOPLE_HEADERS := $(shell $(FIND) $(LOCUS_LIBRARY_HEADERS) -mindepth 1 -maxdepth 1 -type d )
247 # "LOCAL_HEADERS" are overrides that go first in the header search path.
248 LOCAL_HEADERS = $(THIRD_PARTY_DIR)
250 # "CODEBASE_HEADERS" is a list that can be changed for a particular codebase.
251 # it is guaranteed that clam will not interfere with this list, whereas
252 # the LOCAL_HEADERS can be modified by clam.
255 # "LOCAL_LIBRARIES" are overrides that go first in the library search path.
258 # "LIBRARY_SEARCH_PATH" is where the library files are to be found.
259 #LIBRARY_SEARCH_PATH =
261 # "HOOPLE_LIBRARIES" is where our local libraries are located.
264 # "EXTRA_COPIES" is a list of files that need to be among the files copied
265 # to a project output folder.
268 # "EXTRA_VERSIONS" is a list of version files to synchronize with the main
269 # library version for this build. if a file called "version.ini" exists in
270 # the project directory, then it will automatically be upgraded, so the
271 # extra version files are mainly useful when you have a project with multiple
272 # programs in it and you want them to have independent version files (as you
273 # should perhaps want).
274 export EXTRA_VERSIONS
276 # "DEPS_FILE" is where the auto-dependency information is stored.
277 export DEPS_FILE = $(OUTPUT_PATH)/$(PROJECT).deps
279 # "NO_DEPS" is an exclusion flag. if it is defined, then no auto-dependency
280 # files will be generated. this is useful if you are missing makedep or trying
284 # "OMIT_VERSIONS" is another exclusion flag. this one turns off the creation
285 # of version resource files and eliminates any references that would include
286 # such files. this is needed when rebuilding version_stamper.
289 # add the cleanup values we already know.
290 CLEANUPS += $(OUTPUT_PATH) $(DEPS_FILE)
292 SUPPLEMENTAL_CLEANUP_TARGETS = cpp_add_to_cleanups_variable
294 # "GENDEPS" is a flag that causes dependencies to be generated into
295 # statically built applications.
298 ###############################################################################
300 # "SEARCH_DIRS" is a list of directories that should be searched for both C++
301 # header files and for C++ code libraries. The items placed in SEARCH_DIRS
302 # are fed into both the LIBRARY_SEARCH_PATH and the HEADER_SEARCH_PATH.
305 # "DEPENDENCY_DEFINITIONS" is a list of extra definitions that only get passed
306 # to the makedep tool. this can vary for each compiler.
307 #DEPENDENCY_DEFINITIONS =
309 # "DEPENDENCY_ADDITIONS" is a set of parameters passed directly to makedep.
310 #DEPENDENCY_ADDITIONS =
312 # "DEBUG_FLAGS" these flags are used for generating specialized versions of
313 # object files, such as ones that include debugging code or that add code for
315 # Possible values are -g for adding GDB debugging code and -pg for adding
316 # gprof profiling code.
321 # "COMPILER_FLAGS" are the flags for the pre-processor and compiler.
324 # "STRICT_WARNINGS" turns on all warnings and forces them to be considered
325 # as errors when encountered.
328 # "LIBRARIAN_FLAGS" are flags that need to be passed to the library tool
329 # that creates static code libraries.
332 # "SOURCE" is the list of files that are turned into objects.
335 # "OBJECTS" are the files to be created by compilation and added to any
336 # libraries or executables that are made.
339 # "EXTRA_OBJECTS" are files that are created elsewhere but need to be bound
343 # "LIBS_USED" are system or compiler code libraries that the targets to be
344 # created depend upon.
347 # "LOCAL_LIBS_USED" is very similar to the LIBS_USED, but these libraries
348 # actually cause executables and object files to be recompiled when the
349 # libraries specified have changed. To accomplish this, these libraries MUST
350 # be located in the STATIC_LIBRARY_DIR rather than at some arbitrary place
351 # on the LIBRARY_SEARCH_PATH.
354 # Load flags tell the linker and loader how to deal with the files and where
355 # to locate library components. The prefix goes before object files are
356 # listed, and the suffix after. The prefix should have things like the
357 # directories to be searched for code libraries (although they should be added
358 # to LIBRARY_SEARCH_PATH) and the loading mode for functions (static/dynamic).
359 # In the suffix, actual library loading statements (like -lmath) can be
360 # included (although they should be listed in a different form in LIBS_USED).
361 # Remember that the unix loader looks for functions in libraries in a bizarre
362 # way: ld searches for a function only when it has already been asked for it.
363 # This means that it does not remember what functions it has already been
364 # provided with in the libraries and object files, and it will fail if those
365 # functions are only asked for after they have already been encountered.
369 # The prefix used on library names, mostly for unix.
371 # The standard suffix for static or import libraries on this operating system.
374 # The dynamic library ending differs between platforms.
377 # Flag for specifying the library name to create.
378 #CREATE_LIBRARY_FLAG =
380 # Flag for specifying a library to include in linking.
381 LIBRARY_NAME_FLAG = -l
383 # Flag for specifying the name of an object file to include in a library or exe.
384 OBJECT_NAME_FLAG = -o
386 # Flag for specifying a directory to add to the search path for libs.
387 LIBRARY_PATH_FLAG = -L
389 # Flag for specifying the name of an output from the linker.
390 #LINKER_OUTPUT_FLAG =
392 # Flag for separating linker options from compilation options for a combined
394 #LINKER_OPTION_SEPARATOR =
396 # Flag that passes special options when building executable programs. It is
397 # passed just before the LOAD_FLAG_PREFIX.
400 # The name of the compiler tool.
403 # The name of the library creator tool.
406 # the root name of the version file. This is currently irrelevant on
407 # non-win32 platforms.
408 VERSION_RC_ROOT = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/rc_name.sh)
410 ifneq "$(CONSOLE_MODE)" ""
411 # this definition can be used to signal different behavior when the app is
412 # being built for console mode. that generally implies that it should send
413 # debugging info to standard out and avoid doing much with graphics.
414 DEFINITIONS += CONSOLE_MODE
417 ###############################################################################
419 # Operating system dependent flags.
421 ifeq "$(OP_SYSTEM)" "UNIX"
425 ifeq "$(OP_SYSTEM)" "WIN32"
426 ifeq "$(COMPILER)" "VISUAL_CPP"
435 ###############################################################################
437 # Compiler Dependent Flags
439 # "COMPILER_ROOT_DIR" is the top-level for the C++ compiler location.
440 export COMPILER_ROOT_DIR
441 # "COMPILER_HEADER_DIR" is where the compiler headers are.
442 export COMPILER_HEADER_DIR
443 # "COMPILER_LIBRARY_DIR" is where archived libraries are.
444 # "CC" is the name of the C++ compiler to be used.
446 # These flags may be useful across multiple compilers.
448 # SSL brings in the OpenSSL libraries.
451 # CURL provides access to the curl library.
454 # Enables wxwidget library support.
457 ifneq "$(OMIT_VERSIONS)" ""
458 DEFINITIONS += NO_VERSION
461 ############################################################################
462 # compiler specific section below.
463 ############################################################################
465 ifeq "$(COMPILER)" "GNU_LINUX"
466 # Unix GNU compiler...
468 COMPILER_ROOT_DIR = /
469 PLATFORM_ADD_IN = linux_
470 ARCHITECTURE = $(shell machine 2>/dev/null || arch 2>/dev/null || echo i686)
472 export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
474 DEFINITIONS += _FILE_OFFSET_BITS=64
476 DEPENDENCY_DEFINITIONS += NO_VERSION
477 DEPENDENCY_ADDITIONS = -X/usr/include -X/usr/include/c++/$(COMPILER_VERSION) -X/usr/include/c++/$(COMPILER_VERSION)/tr1 -X/usr/local/include -X/usr/include/linux -X/usr/include/wx-2.8 -X/usr/lib/gcc/i586-suse-linux/$(COMPILER_VERSION)/include -X/usr/lib/gcc/i486-linux-gnu/$(COMPILER_VERSION)/include -X/usr/lib/gcc/i686-linux-gnu/$(COMPILER_VERSION)/include -X/usr/lib/gcc/x86_64-linux-gnu/$(COMPILER_VERION)/include -X/usr/include/x86_64-linux-gnu -X/usr/include/i386-linux-gnu
479 # "USE_XWIN" specifies that this project needs X window system support.
482 ifeq "x86_64" "$(ARCHITECTURE)"
483 COMPILER_LIBRARY_DIR = /lib64 /usr/lib64 /usr/local/lib64
485 COMPILER_LIBRARY_DIR = /lib /usr/lib /usr/local/lib
487 DEFINITIONS += __LINUX__ linux __linux__ UNIX unix __UNIX__ __USE_GNU
488 # X Window System not enabled by default.
489 #DEFINITIONS += __XWINDOWS__
493 LOAD_FLAG_PREFIX += -Xlinker -O3
494 # -Xlinker --print-map : shows what went in and why.
495 # -Xlinker -O3 : linker optimization
497 CREATE_LIBRARY_FLAG += -r
498 # space on end is significant.
499 LINKER_OUTPUT_FLAG = -o
501 # compiler flags for gcc:
502 # -finline-functions: inline functions as needed.
503 # -fPIC: generate position independent code.
504 # -fpic: generate position independent code, but less portable.
505 # -frepo: automatic template instantiation at link time, no implicit ones.
506 # -ffunction-sections: put each function in own section, improving linking.
507 # -fdata-sections: put data in own section, improving linking.
508 # -shared-libgcc: use the shared library version of compiler libraries.
509 # -fno-exceptions: do not support exception handling and stack unwinding.
511 COMPILER_FLAGS += -shared-libgcc -fPIC
514 # COMPILER_FLAGS += -finline-functions
516 ifneq "$(STRICT_WARNINGS)" ""
517 COMPILER_FLAGS += -Wall -Werror -Wextra -Wno-long-long
520 ifeq "$(CONSOLE_MODE)" ""
522 # dl=dynamic library.
525 LIBS_USED += pthread rt
526 # pthread=thread libraries.
527 # rt=real time libraries for shared memory.
530 # add in debugging flags.
531 COMPILER_FLAGS += -g3 -O0
533 ##LOAD_FLAG_PREFIX += -lefence
536 ###COMPILER_FLAGS += -pg
537 ###LOAD_FLAG_PREFIX += -pg
538 ####trying out profiling: does not work so well yet. generates gmon.out files
539 #### in pretty random places. the parameters to the linker do not even
540 #### mention this flag, and the compiler flags do not seem to provide an
541 #### option for where the file goes. so, it is on hold.
547 ############################################################################
549 ifeq "$(COMPILER)" "GNU_ARM_LINUX"
550 # ARM-linux GNU compiler...
551 COMPILER_ROOT_DIR = /usr/local/arm-linux
552 CC = $(COMPILER_ROOT_DIR)/bin/g++
553 PLATFORM_ADD_IN = linux_
555 export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
557 SNAPGEAR_ROOT_DIR = $(HOME)/snapgear
559 DEPENDENCY_DEFINITIONS += NO_VERSION
561 COMPILER_HEADER_DIR = $(SNAPGEAR_ROOT_DIR)/linux-2.4.x/include
562 # COMPILER_HEADER_DIR += $(SNAPGEAR_ROOT_DIR)/include
563 COMPILER_HEADER_DIR += $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/lib
564 COMPILER_HEADER_DIR += /usr/local/lib/gcc-lib/arm-linux/3.3.2/include
566 COMPILER_LIBRARY_DIR = $(SNAPGEAR_ROOT_DIR)/lib $(COMPILER_ROOT_DIR)/lib/be
568 DEFINITIONS += linux __linux__ unix UNIX __UNIX__ __LINUX__
570 COMPILER_FLAGS += -mbig-endian -finline-functions -ffunction-sections -fPIC -nostdinc -nostdinc++
571 ifneq "$(STRICT_WARNINGS)" ""
572 COMPILER_FLAGS += -Wall -Werror
575 LIBRARY_TOOL = $(COMPILER_ROOT_DIR)/bin/ar
577 CREATE_LIBRARY_FLAG += -r
578 # space on end is significant.
580 LINK_TOOL = $(COMPILER_ROOT_DIR)/bin/g++
581 LINKER_OUTPUT_FLAG = -o
582 EXE_FLAGS = -mbig-endian
583 LOAD_FLAG_PREFIX += -v -mbig-endian
585 LIBS_USED += pthread dl
588 COMPILER_FLAGS += -g3 -O0
593 ############################################################################
595 ifeq "$(COMPILER)" "GNU_WINDOWS"
596 # GNU compiler for MS Windoze...
598 ifeq "$(COMPILER_ROOT_DIR)" ""
599 COMPILER_ROOT_DIR = $(CYGROOT)
602 export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
604 RC := $(COMPILER_ROOT_DIR)/bin/windres
605 PLATFORM_ADD_IN = w32_
607 COMPILER_HEADER_DIR = $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/include/c++/3.4.2
608 #$(COMPILER_ROOT_DIR)/lib/gcc/mingw32/3.4.2/include
609 ###$(COMPILER_ROOT_DIR)/usr/include/mingw $(COMPILER_ROOT_DIR)/usr/include $(COMPILER_ROOT_DIR)/usr/include/w32api $(COMPILER_ROOT_DIR)/usr/include/extras
611 COMPILER_LIBRARY_DIR = $(COMPILER_ROOT_DIR)/lib
612 DEFINITIONS += __GNU_WINDOWS__ _Windows _WINDOWS WIN32 __WIN32__ __FLAT__ VC_EXTRALEAN WIN32_LEAN_AND_MEAN ATL_NO_LEAN_AND_MEAN _WIN32 __USE_W32_SOCKETS
617 LIBRARY_PATH_FLAG = -L
620 # LOAD_FLAG_PREFIX += -lpthread
621 LOAD_FLAG_PREFIX += -mwindows
622 CREATE_LIBRARY_FLAG += -r
623 # space on end is significant.
624 LINKER_OUTPUT_FLAG = -o
626 MIDL = midl -Oicf $(MIDL_DEFS) $(HEADER_SEARCH_PATH:%=-I% ) $(DEFINITIONS:%=-D% )
627 MIDL_DEFS = -no_robust
628 # some lovely definitions used by some of the mfc and other ms code.
629 DEPENDENCY_DEFINITIONS += __cplusplus __MINGW32__ _WIN32 _CHAR_UNSIGNED M_I86 _M_I86 _M_IX86=500 _WIN32_WINNT=0x501 __RPC_WIN32__ __RPCNDR_H_VERSION__ __RPCPROXY_H_VERSION__ TARGET_IS_NT40_OR_LATER PGM_SETCHILD _MFC_VER=0x0600
633 ############################################################################
635 ifeq "$(COMPILER)" "VISUAL_CPP"
636 # microsoft visual c++ 4.x, 5.x or 6.x.
638 PLATFORM_ADD_IN = w32_
642 CLEANUPS += $(PDB_DIR)/$(PROJECT)_bookkeeping.pdb
643 #hmmm: import libs for dynamic libraries on ms-win32 do not currently get
646 # ensure that any setting for this is seen by sub-shells.
647 export WIN32_MANIFEST_FILE
649 # these define special characteristics for a program being built.
650 # BASE is almost always defined and pulls in fundamental w32 support.
651 # RPC supplies the remote procedure call libraries.
652 # SECURITY links with the w32 security APIs.
653 # CLR sets options that are appropriate for managed code.
661 # the framework dir points at the .net framework to be used for compilation.
662 ifeq "$(FRAMEWORK_VERSION)" ""
665 # SHORT_FRAMEWORK_VERSION = 1.1
666 # FRAMEWORK_VERSION = $(SHORT_FRAMEWORK_VERSION).4322
669 SHORT_FRAMEWORK_VERSION = 2.0
670 FRAMEWORK_VERSION = $(SHORT_FRAMEWORK_VERSION).50727
672 ifeq "$(FRAMEWORK_DIR)" ""
673 FRAMEWORK_DIR = $(subst \,/,$(WINDIR))/Microsoft.NET/Framework/v$(FRAMEWORK_VERSION)
676 # calculate the visual studio root directory.
677 ifeq "$(VIS_STU_ROOT)" ""
678 export VIS_STU_ROOT := $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/ms_root_dir.sh )
680 ifneq "$(VIS_STU_ROOT)" ""
681 export COMPILER_ROOT_DIR = $(VIS_STU_ROOT)/VC
683 ifeq "$(COMPILER_ROOT_DIR)" ""
684 HOSEUP = $(shell echo The compiler directory is not set. Please define the environment variable)
685 HOSEUP = $(shell echo VSxCOMNTOOLS (x=80, 90 or 100) to point at the folder where visual )
686 HOSEUP = $(shell echo Studio is installed.)
690 # redo the compiler version with our new info.
691 export COMPILER_VERSION := $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
693 # set up a directory for debugging files to be stored. these are not
694 # moved with the postconditions--they are generated in place.
695 export PDB_DIR = $(TARGETS_STORE)
697 # set these way up here so we can override them later.
698 CC = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(COMPILER_ROOT_DIR)/bin/cl.exe
699 LINK_TOOL = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(COMPILER_ROOT_DIR)/bin/link.exe
700 LIBRARY_TOOL = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(COMPILER_ROOT_DIR)/bin/lib
702 # This is needed to protect against the use of 64-bit time_t structure
703 # on windows. We are casting to time_t from a 32-bit structure.
704 DEFINITIONS += _USE_32BIT_TIME_T
706 # vary the locations for compiler files based on the version.
707 ifeq "$(COMPILER_VERSION)" "6"
708 COMPILER_HEADER_DIR = $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/atl/include
709 COMPILER_LIBRARY_DIR = $(COMPILER_ROOT_DIR)/lib $(COMPILER_ROOT_DIR)/atl/lib
710 RC = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(COMPILER_ROOT_DIR)/../common/msdev98/bin/rc
712 ifeq "$(COMPILER_VERSION)" "7"
713 COMPILER_HEADER_DIR = $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/atlmfc/include $(COMPILER_ROOT_DIR)/platformsdk/include $(FRAMEWORK_DIR)
714 COMPILER_LIBRARY_DIR = $(COMPILER_ROOT_DIR)/lib $(COMPILER_ROOT_DIR)/atlmfc/lib $(COMPILER_ROOT_DIR)/platformsdk/lib
715 RC = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(COMPILER_ROOT_DIR)/bin/rc
716 COMPILER_FLAGS += -Zc:forScope
717 # turn on proper loop scoping.
719 ifeq "$(COMPILER_VERSION)" "8"
720 COMPILER_HEADER_DIR = $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/atlmfc/include $(COMPILER_ROOT_DIR)/platformsdk/include $(FRAMEWORK_DIR)
721 COMPILER_LIBRARY_DIR = $(COMPILER_ROOT_DIR)/lib $(COMPILER_ROOT_DIR)/atlmfc/lib $(COMPILER_ROOT_DIR)/platformsdk/lib
722 RC = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(COMPILER_ROOT_DIR)/bin/rc
723 COMPILER_FLAGS += -Zc:forScope
724 # turn on proper loop scoping.
725 DEFINITIONS += _WIN32_WINNT=0x501
726 DEPENDENCY_DEFINITIONS += _WIN32_WINNT=0x501
729 # ver 9 (vis stu 2008) is not in here but is probably similar to 8 or 10.
731 ifeq "$(COMPILER_VERSION)" "10"
732 export PLATYPUS = $(WindowsSdkDir)
733 COMPILER_HEADER_DIR = $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/atlmfc/include $(PLATYPUS)/include
735 COMPILER_LIBRARY_DIR = $(COMPILER_ROOT_DIR)/lib $(COMPILER_ROOT_DIR)/atlmfc/lib $(PLATYPUS)/lib
736 DEFINITIONS += _WIN32_WINNT=0x501
737 DEPENDENCY_DEFINITIONS += _WIN32_WINNT=0x501
738 RC = $(BUILD_SCRIPTS_PATH)/wrapdoze.sh $(PLATYPUS)/bin/rc
739 COMPILER_FLAGS += -Zc:forScope
740 # turn on proper loop scoping.
742 ifeq "$(COMPILER_HEADER_DIR)" ""
743 HOSEUP = $(shell echo The compiler version is not set. Please define COMPILER_VERSION.)
745 ifeq "$(COMPILER_HEADER_DIR)" ""
746 HOSEUP = $(shell echo The compiler version is not set. Please define COMPILER_VERSION.)
748 ifeq "$(COMPILER_HEADER_DIR)" "0"
749 HOSEUP = $(shell echo The compiler version is not set. Please define COMPILER_VERSION.)
752 # add in the mfc directories.
753 COMPILER_HEADER_DIR += $(COMPILER_ROOT_DIR)/mfc/include
754 COMPILER_LIBRARY_DIR += $(COMPILER_ROOT_DIR)/mfc/lib
756 DEFINITIONS += _Windows _WINDOWS WIN32 __WIN32__ __FLAT__ VC_EXTRALEAN WIN32_LEAN_AND_MEAN ATL_NO_LEAN_AND_MEAN
758 LOAD_FLAG_PREFIX = -subsystem:windows -machine:X86 -nologo
761 MIDL = "$(COMPILER_ROOT_DIR)/../Common7/Tools/Bin"/midl.exe -Oicf $(MIDL_DEFS) $(HEADER_SEARCH_PATH:%=-I% ) $(DEFINITIONS:%=-D% )
762 MIDL_DEFS = -no_robust
764 # additional definitions that get put on the command line for makedep. these
765 # are needed since visual c++ defines them automatically.
766 DEPENDENCY_DEFINITIONS += __cplusplus _WIN32 _CHAR_UNSIGNED M_I86 _M_I86 _MSC_VER=1200 _M_IX86=500 __RPC_WIN32__ __RPCNDR_H_VERSION__ __RPCPROXY_H_VERSION__ TARGET_IS_NT40_OR_LATER PGM_SETCHILD _MFC_VER=0x0600
768 # set the flags used by visual c++.
769 CREATE_LIBRARY_FLAG = -out:
771 LIBRARY_PATH_FLAG = -libpath:
772 LINKER_OPTION_SEPARATOR = -link
773 LINKER_OUTPUT_FLAG = -out:
774 OBJECT_NAME_FLAG = -Fo
776 # Add the extra files created by visual c++.
777 #is this needed now that we whack whole output path? CLEANUPS += $(OUTPUT_PATH)/*.*db
779 # compilation parameters for microsoft.
780 # -c specifies compilation without linking.
781 # -EHsc is the flag for turning on exception handling.
782 # -FD is for getting the best dependency checking in visual studio.
783 # -Fd[filename] names the program database (PDB) file used for debugging.
784 # -Fp[filename] names the precompiled header file name.
785 # -FR[filename] names the browser output path used for source analysis.
786 # -Gd calling convention is cdecl.
787 # -Gm enables minimal rebuild (only if source files changed).
788 # Note! as of Visual Studio 6 SP 3, minimal rebuild does not work
789 # properly. Do not use it unless you want inconsistent builds!
790 # -GR enables run-time type identification (RTTI).
791 # -GS enables buffer checking.
792 # -GX turns on synchronous exception handling. (deprecated)
793 # -Gz uses __stdcall calling convention.
794 # -MD specifies multi-threaded DLL (MDd means debug).
795 # -ML signifies uni-threaded executable (MLd means debug).
796 # -MT indicates multi-threaded executable (MTd means debug)
797 # -O is for optimization (1 small code, 2 fast code, d disabled).
798 # do not use 1 or 2 though; they both include "global optimization",
799 # which seems plagued with problems. the specific optimizations are:
800 # -Oa assume no aliasing
801 # -Obn inline function expansion, where n is 1 (enable) or 0 (disable)
802 # -Od disable (for debug)
803 # -Oi generate intrinsic functions
804 # -Og global optimizations (flawed)
805 # -Op improve float consistency
806 # -Os favor small code
807 # -Ot favor fast code
808 # -Ow assume aliasing across function calls
809 # -Ox full optimization
810 # -Oy frame pointer optimization
811 # -O1 has g s y b1 Gs Gf Gy
812 # -O2 has g i t y b1 Gs Gf Gy
813 # -TP C++ compilation.
814 # -W sets the warning level (from 0 (least warnings) through 4 (loudest)).
815 # -WX turns all warnings into errors.
816 # -Yu[filename] uses a precompiled header file.
817 # -YX turns on precompiled headers. not used due to poor implementation.
818 # -Zi generates debugging information into the PDB file.
820 # put the common flags into the compiler flags.
821 COMPILER_FLAGS += -nologo -Fd$(PDB_DIR)/$(PROJECT)_bookkeeping.pdb -GR -W3 -Zi -EHsc -GS -Gd
825 # disable function inlining and optimizations for debug.
826 COMPILER_FLAGS += -Ob0 -Od
828 # enable function inlining for release only.
829 COMPILER_FLAGS += -Ob1
831 ifneq "$(OPTIMIZE)" ""
832 # add in fast code optimization.
833 COMPILER_FLAGS += -O2
840 # linking parameters for microsoft.
841 # -dll specifies that a dynamic library is to be created.
842 # -debug specifies that debugging information is to be included.
843 # -map turns on the map file.
844 # -warn sets the warning level, from 0 to 3, where 3 is the most verbose.
845 # kernel32.lib is the kernel support.
846 # user32.lib is the user level support.
847 # gdi32.lib is the graphical device interface? support.
848 # winspool.lib contains printer support.
849 # comdlg32.lib provides the common dialogs.
850 # advapi32.lib provides deeper win32 features, like registry, services, etc.
852 # ole32.lib supplies OLE support.
853 # oleaut32.lib is the OLE automation library.
854 # uuid.lib has unique id management?
855 # odbc32.lib provides ODBC data source functionality.
856 # odbccp32.lib is something?
857 # winmm.lib has the win32 multimedia support.
858 # version.lib offers up splendid version services.
860 # check if profiling is to be enabled.
862 ifneq "$(PROFILE)" ""
863 PROFILER_FLAG = -profile
866 LIBS_USED += htmlhelp.lib
868 # add the common linker flags. the debugging flag is added because we
869 # want to be able to debug into release code, but since the pdb files
870 # are separate, we are not exposing ourselves when we do not include them.
871 LOAD_FLAG_PREFIX += $(PROFILER_FLAG) -debug -opt:ref -opt:icf
874 # "USE_MFC" dictates whether mfc should be allowed in the application.
875 # the default is not to use MFC extension style dlls. this can be turned
876 # on in the individual makefiles that require MFC.
879 # the library creator gets a couple of flags.
880 LIBRARIAN_FLAGS += -nologo -machine:X86 -subsystem:windows
882 # now, vary the flag configuration based on the flags that have been set.
884 ####override for windows since things are broken with WinMain
885 ###export CONSOLE_MODE = true
887 ifneq "$(CONSOLE_MODE)" ""
888 # console type of applications are built using the static flag so that
889 # they are more redistributable.
890 DEFINITIONS += _CONSOLE
891 LOAD_FLAG_SUFFIX += -subsystem:console
892 LIBRARIAN_FLAGS += -subsystem:console
895 # dynamically linked library or application flags.
898 DEFINITIONS += _DEBUG
899 COMPILER_FLAGS += -MDd
902 DEFINITIONS += NDEBUG
903 COMPILER_FLAGS += -MD
904 LOAD_FLAG_PREFIX += -map
907 ifneq "$(STRICT_WARNINGS)" ""
908 COMPILER_FLAGS += -WX
909 #would like to add W4 but that triggers warnings in microsoft headers.
914 ############################################################################
916 ifeq "$(COMPILER)" "GNU_DARWIN"
917 # Darwin kernel GNU compiler...
919 COMPILER_ROOT_DIR = /
920 PLATFORM_ADD_IN = darwin
921 ARCHITECTURE = $(shell machine 2>/dev/null || arch 2>/dev/null || echo i686)
922 # COMPILER_FLAGS += -fgnu-runtime
924 export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
926 DEFINITIONS += _FILE_OFFSET_BITS=64
928 DEPENDENCY_DEFINITIONS += NO_VERSION
929 DEPENDENCY_ADDITIONS = -X/usr/include -X/usr/include/c++/$(COMPILER_VERSION) -X/usr/include/c++/$(COMPILER_VERSION)/tr1 -X/usr/local/include -X/usr/include/linux -X/usr/include/wx-2.8 -X/usr/lib/gcc/i586-suse-linux/$(COMPILER_VERSION)/include -X/usr/lib/gcc/i486-linux-gnu/$(COMPILER_VERSION)/include
931 #protect other additions to make them only for debian?
932 # COMPILER_HEADER_DIR := /usr/include /usr/local/include
933 COMPILER_HEADER_DIR := /System/Library/Frameworks/Foundation.framework/Versions/C/Headers
935 # "USE_XWIN" specifies that this project needs X window system support.
938 # ifeq "x86_64" "$(ARCHITECTURE)"
939 # COMPILER_LIBRARY_DIR = /lib64 /usr/lib64 /usr/local/lib64
942 COMPILER_LIBRARY_DIR = /usr/lib
947 DEFINITIONS += __LINUX__ linux __linux__ UNIX unix __UNIX__ __USE_GNU
948 # X Window System not enabled by default.
949 #DEFINITIONS += __XWINDOWS__
953 # LOAD_FLAG_PREFIX += -Xlinker
957 # -Xlinker --print-map : shows what went in and why.
958 # -Xlinker -O3 : linker optimization
959 CREATE_LIBRARY_FLAG += -r
960 # space on end is significant.
961 LINKER_OUTPUT_FLAG = -o
963 # COMPILER_FLAGS += -shared-libgcc -fPIC
964 #old: -Wl,-export-dynamic
966 # COMPILER_FLAGS += -finline-functions
968 # ifneq "$(STRICT_WARNINGS)" ""
969 # COMPILER_FLAGS += -Wall -Werror -Wextra -pedantic-errors -Wno-long-long
971 # LIBS_USED += dl pthread rt
972 #mac no like these libs
973 # dl=dynamic library.
974 # pthread=thread libraries.
975 # rt=real time libraries for shared memory.
978 # add in debugging flags.
979 # COMPILER_FLAGS += -g3 -O0
983 ############################################################################
985 # these activities are done after the compiler specific stuff.
987 # add a definition for programs to be able to differentiate the versions.
988 DEFINITIONS += COMPILER_VERSION=$(COMPILER_VERSION)
990 # set a variable that scripts can use to get most of the definitions.
991 export VARIABLE_DEFINITION_SET := $(DEFINITIONS)
993 ###############################################################################