slightly closer to doze builds
[feisty_meow.git] / scripts / clam / cpp / variables.def
1 ###############################################################################
2
3 # CLAM System default variable definitions for C++ compilation.
4
5 ###############################################################################
6
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)
11 endif
12 ifeq "$(PARAMETER_FILE)" ""
13   # last ditch attempt to get one that will work.
14   export PARAMETER_FILE = $(PRODUCTION_STORE)/feisty_meow_config.ini
15 endif
16
17 ###############################################################################
18
19 # Pull in the base support for CLAM.
20 include variables.def
21
22 ###############################################################################
23
24 #export CLAM_BINARIES = $(CLAM_SCRIPTS)/../bin
25
26 ###############################################################################
27
28 # BASE_CPU is a flag that distinguishes the type of processor, if necessary.
29 export BASE_CPU
30 #BASE_CPU := m68k = motorola 68000 series | m68340 = motorola 68340
31 #    | x86 = intel x86 | ppc = power pc | arm = ARM core
32
33 # set the CPU to a default if it has not been set previously.
34 ifeq "$(BASE_CPU)" ""
35   BASE_CPU := $(shell machine 2>/dev/null || arch 2>/dev/null || uname -m 2>/dev/null || echo i686)
36 endif
37
38 # COMPILER is a flag that specifies the compiler that will be used to build
39 # code.  It is mainly used within CLAM itself for determining the proper
40 # compiler flags.
41 export COMPILER
42 #COMPILER := GNU_LINUX | GNU_ARM_LINUX | GNU_DARWIN | GNU_WINDOWS 
43
44 # choose a default compiler if none was specified.
45 ifeq "$(COMPILER)" ""
46   ifeq "$(OP_SYSTEM)" "UNIX"
47     ifeq "$(OS_SUBCLASS)" "darwin"
48       COMPILER := GNU_DARWIN
49     else
50       COMPILER := GNU_LINUX
51     endif
52   endif
53   ifeq "$(OP_SYSTEM)" "WIN32"
54     COMPILER := GNU_WINDOWS
55   endif
56   ifeq "$(COMPILER)" ""
57     # if we get into this case, we have no idea how to set the default
58     # compiler.  you may need to change the above logic for guessing it
59     # anyhow.  but we will go with our favorite default.
60     COMPILER := GNU_LINUX
61   endif
62 endif
63
64 # COMPILER_VERSION specifies the version of a particular compiler, if this is
65 # needed to distinguish how the code is built.
66 export COMPILER_VERSION
67
68 ###############################################################################
69
70 # "TYPE" is the kind of product being generated by this project.  this is
71 # used to decide where to put the final products of compilation.  this is a
72 # variable in the user makefile.
73 # Valid Types:
74 #     TYPE = library        (outputs are static or dynamic libraries)
75 #     TYPE = application    (outputs are main-line executables)
76 #     TYPE = test           (outputs are test programs)
77 #     TYPE = hierarchy      (there are no outputs; just invokes other makes)
78 export TYPE
79
80 ###############################################################################
81
82 # "DEFINITIONS" is a list of compiler flags that define the value of c macros.
83 # These usually have the format of -D<flag>, but in this variable, only the
84 # <flag> itself should be listed because the compiler option -D is added
85 # automatically.
86 DEFINITIONS += CLAM_BUILT
87   # simple definition that tells the code that clam is building it.
88
89 ifneq "$(BOOT_STRAPPING)" ""
90   # the software is being built from the ground up, including the binaries
91   # we use for building (like value_tagger and others).
92   DEFINITIONS += BOOT_STRAPPING
93 endif
94
95 # "UNDEFINITIONS" is a list of macros to undefine.
96 #UNDEFINITIONS =
97
98 # GLOBAL_PRODUCT_NAME is an important variable for tagging the entire code base
99 # with some branding.  It is provided as a macro definition to all source
100 # files.  The initial value for the macro should come from the build init
101 # file, but if it does not, we pick a default.
102 ifeq "$(product_name)" ""
103   GLOBAL_PRODUCT_NAME := \\\"HOOPLE\\\"
104 else
105   GLOBAL_PRODUCT_NAME := \\\"$(product_name)\\\"
106 endif
107
108 # *_PRODUCT_VERSION records parts of our version numbers for the code to see.
109 DEFINITIONS += MAJOR_PRODUCT_VERSION=$(major) MINOR_PRODUCT_VERSION=$(minor)
110
111 # TEST_MAKEFILE tells the preconditions to check that the files specified
112 # in the makefile are actually present.
113 export TEST_MAKEFILE =
114
115 ###############################################################################
116
117 # pseudo-boolean variable section.  if these have any value at all, then they
118 # are treated as being true.  note that these are flags that should generally
119 # be passed on the command line to a make.  if they are intended to be used
120 # from inside a makefile, then they must appear before this file is included.
121
122 # "REBUILD" causes a rebuild of all source files if it is true.
123 export REBUILD
124
125 # "DEBUG" is used to specify a debugging build.  the default is for this to
126 # be false, which causes a release build.
127 export DEBUG
128
129 # Add in a macro definition if debugging is turned on.  This allows us to
130 # easily eliminate code from release builds.
131 ifneq "$(DEBUG)" ""
132   DEFINITIONS += __DEBUGGING__
133 endif
134
135 # "CONSOLE_MODE" causes the program to be generated as a console application.
136 # this is relevant in systems where programs are otherwise built with graphical
137 # user interfaces.  these are always built statically.
138 #CONSOLE_MODE =
139
140 # "OPTIMIZE" creates optimized code.
141 export OPTIMIZE
142
143 # "NO_COMPILE" just runs through the targets without compiling.
144 export NO_COMPILE
145
146 # "BUILD_LIST_FILE" is the set of files that need to be recompiled for
147 # visual c++.
148 export BUILD_LIST_FILE = $(CLAM_TMP)/clam_rebuild.$(PROJECT)
149
150 # "BUILD_WHACK_FILE" is the set of object files that should be removed if
151 # a build failure occurs.
152 export BUILD_WHACK_FILE = $(CLAM_TMP)/clam_whack.$(PROJECT)
153
154 # we are adding the build list to the flag files so we know it gets cleaned up.
155 FLAG_FILES += $(BUILD_LIST_FILE) $(BUILD_WHACK_FILE)
156
157 ###############################################################################
158
159 # This section implements the HOOPLE directory scheme.  If your scheme differs,
160 # then you will want to modify these appropriately.
161
162 # "THIRD_PARTY_DIR" is the root of our support libraries.
163 export THIRD_PARTY_DIR
164 ifeq "$(THIRD_PARTY_DIR)" ""
165   export THIRD_PARTY_DIR := "$(PRODUCTION_STORE)/3rdparty"
166 endif
167
168 # "OUTPUT_ROOT" is the root of all output directories for objects and other
169 # products being built.
170 export OUTPUT_ROOT = $(CLAM_TMP)/objects
171
172 # "PLATFORM_ADD_IN" is an option discriminator for the intended execution
173 # platform.  it should end in an underscore if it is provided.
174 #PLATFORM_ADD_IN = linux_ | w32_
175
176 # "CPU_BUILD_DIR" distinguishes object directories by including the CPU
177 # name and the type of build.
178 ifneq "$(DEBUG)" ""
179   CPU_BUILD_DIR = $(BASE_CPU)_$(PLATFORM_ADD_IN)dbg
180 else
181   CPU_BUILD_DIR = $(BASE_CPU)_$(PLATFORM_ADD_IN)rel
182 endif
183
184 # "BASE_OUTPUT_PATH" is the parent directory of objects for this type of
185 # CPU and this type of build.
186 export BASE_OUTPUT_PATH = $(OUTPUT_ROOT)/$(CPU_BUILD_DIR)
187
188 # special case when doing arm-linux builds
189 ifeq "$(COMPILER)" "GNU_ARM_LINUX"
190   export TARGETS_STORE = $(FEISTY_MEOW_APEX)/$(CPU_BUILD_DIR)
191   # special output directory for firmware does not include CPU name because
192   #  the repository already include the CPU name
193   BASE_OUTPUT_PATH = $(OUTPUT_ROOT)
194 endif
195
196 # "OUTPUT_PATH" is the directory to generate all compiled products into.
197 export OUTPUT_PATH = $(BASE_OUTPUT_PATH)/$(PROJECT)
198
199 # "OBJECT_DIR" is where object files will be stored during compilation for the
200 # target type being produced.
201 export OBJECT_DIR = $(OUTPUT_PATH)
202
203 # These specify where files are to be created or located for our local build.
204 export EXECUTABLE_DIR = $(TARGETS_STORE)
205 export DYNAMIC_LIBRARY_DIR = $(TARGETS_STORE)
206 export STATIC_LIBRARY_DIR = $(TARGETS_STORE)
207
208 # "HEADER_SEARCH_PATH" is where the class interface files are to be found.
209 # we add the generated store folder for the build version file.
210 HEADER_SEARCH_PATH = $(FEISTY_MEOW_GENERATED_STORE)/versions
211
212 # "HOOPLE_HEADERS" are locations where the HOOPLE headers can be found.
213 ifeq "$(HOOPLE_HEADERS)" ""
214 #seems like some of this is redundant with earlier 3rdparty exploring.
215   LOCUS_LIBRARY_HEADERS = $(shell bash -c '\
216     if [ -d "$(FEISTY_MEOW_APEX)/nucleus" ]; then \
217       echo "$(FEISTY_MEOW_APEX)/nucleus" "$(FEISTY_MEOW_APEX)/octopi" "$(FEISTY_MEOW_APEX)/graphiq" ; \
218     else \
219       echo ""; \
220     fi | tr "\\\\" / | sed -e "s/\([a-zA-Z]\):\/\([^ ]*\)/\/cygdrive\/\1\/\2/g" ')
221     # above assumes cygwin support for windows!  was assuming msys support.
222   HOOPLE_HEADERS := $(shell $(FIND) $(LOCUS_LIBRARY_HEADERS) -mindepth 1 -maxdepth 1 -type d )
223 endif
224
225 # "LOCAL_HEADERS" are overrides that go first in the header search path.
226 LOCAL_HEADERS = $(THIRD_PARTY_DIR)
227
228 # "CODEBASE_HEADERS" is a list that can be changed for a particular codebase.
229 # it is guaranteed that clam will not interfere with this list, whereas
230 # the LOCAL_HEADERS can be modified by clam.
231 #CODEBASE_HEADERS =
232
233 # "LOCAL_LIBRARIES" are overrides that go first in the library search path.
234 #LOCAL_LIBRARIES =
235
236 # "LIBRARY_SEARCH_PATH" is where the library files are to be found.
237 #LIBRARY_SEARCH_PATH =
238
239 # "HOOPLE_LIBRARIES" is where our local libraries are located.
240 HOOPLE_LIBRARIES =
241
242 # "EXTRA_COPIES" is a list of files that need to be among the files copied
243 # to a project output folder.
244 export EXTRA_COPIES
245
246 # "EXTRA_VERSIONS" is a list of version files to synchronize with the main
247 # library version for this build.  if a file called "version.ini" exists in
248 # the project directory, then it will automatically be upgraded, so the
249 # extra version files are mainly useful when you have a project with multiple
250 # programs in it and you want them to have independent version files (as you
251 # should perhaps want).
252 export EXTRA_VERSIONS
253
254 # "DEPS_FILE" is where the auto-dependency information is stored.
255 export DEPS_FILE = $(OUTPUT_PATH)/$(PROJECT).deps
256
257 # "NO_DEPS" is an exclusion flag.  if it is defined, then no auto-dependency
258 # files will be generated.  this is useful if you are missing makedep or trying
259 # to compile it...
260 #NO_DEPS = t
261
262 # "OMIT_VERSIONS" is another exclusion flag.  this one turns off the creation
263 # of version resource files and eliminates any references that would include
264 # such files.  this is needed when rebuilding version_stamper.
265 #OMIT_VERSIONS = t
266
267 # add the cleanup values we already know.
268 CLEANUPS += $(OUTPUT_PATH) $(DEPS_FILE)
269
270 SUPPLEMENTAL_CLEANUP_TARGETS = cpp_add_to_cleanups_variable
271
272 # "GENDEPS" is a flag that causes dependencies to be generated into
273 # statically built applications.
274 export GENDEPS
275
276 ###############################################################################
277
278 # "SEARCH_DIRS" is a list of directories that should be searched for both C++
279 # header files and for C++ code libraries.  The items placed in SEARCH_DIRS
280 # are fed into both the LIBRARY_SEARCH_PATH and the HEADER_SEARCH_PATH.
281 #SEARCH_DIRS =
282
283 # "DEPENDENCY_DEFINITIONS" is a list of extra definitions that only get passed
284 # to the makedep tool.  this can vary for each compiler.
285 #DEPENDENCY_DEFINITIONS =
286
287 # "DEPENDENCY_ADDITIONS" is a set of parameters passed directly to makedep.
288 #DEPENDENCY_ADDITIONS =
289
290 # "DEBUG_FLAGS" these flags are used for generating specialized versions of
291 # object files, such as ones that include debugging code or that add code for
292 # profiling.
293 # Possible values are -g for adding GDB debugging code and -pg for adding
294 # gprof profiling code.
295 #DEBUG_FLAGS = -g
296 #DEBUG_FLAGS = -pg
297 #DEBUG_FLAGS =
298
299 # "COMPILER_FLAGS" are the flags for the pre-processor and compiler.
300 #COMPILER_FLAGS =
301
302 # "STRICT_WARNINGS" turns on all warnings and forces them to be considered
303 # as errors when encountered.
304 #STRICT_WARNINGS = 
305
306 # "LIBRARIAN_FLAGS" are flags that need to be passed to the library tool
307 # that creates static code libraries.
308 #LIBRARIAN_FLAGS =
309
310 # "SOURCE" is the list of files that are turned into objects.
311 #SOURCE=
312
313 # "OBJECTS" are the files to be created by compilation and added to any
314 # libraries or executables that are made.
315 #OBJECTS =
316
317 # "EXTRA_OBJECTS" are files that are created elsewhere but need to be bound
318 # into the target.
319 #EXTRA_OBJECTS =
320
321 # "LIBS_USED" are system or compiler code libraries that the targets to be
322 # created depend upon.
323 LIBS_USED =
324
325 # "LOCAL_LIBS_USED" is very similar to the LIBS_USED, but these libraries
326 # actually cause executables and object files to be recompiled when the
327 # libraries specified have changed.  To accomplish this, these libraries MUST
328 # be located in the STATIC_LIBRARY_DIR rather than at some arbitrary place
329 # on the LIBRARY_SEARCH_PATH.
330 #LOCAL_LIBS_USED=
331
332 # Load flags tell the linker and loader how to deal with the files and where
333 # to locate library components.  The prefix goes before object files are
334 # listed, and the suffix after.  The prefix should have things like the
335 # directories to be searched for code libraries (although they should be added
336 # to LIBRARY_SEARCH_PATH) and the loading mode for functions (static/dynamic).
337 # In the suffix, actual library loading statements (like -lmath) can be
338 # included (although they should be listed in a different form in LIBS_USED).
339 # Remember that the unix loader looks for functions in libraries in a bizarre
340 # way: ld searches for a function only when it has already been asked for it.
341 # This means that it does not remember what functions it has already been
342 # provided with in the libraries and object files, and it will fail if those
343 # functions are only asked for after they have already been encountered.
344 #LOAD_FLAG_PREFIX =
345 #LOAD_FLAG_SUFFIX =
346
347 # The prefix used on library names, mostly for unix.
348 export LIB_PREFIX
349 # The standard suffix for static or import libraries on this operating system.
350 export LIB_ENDING
351
352 # The dynamic library ending differs between platforms.
353 export DYNLIB_ENDING
354
355 # Flag for specifying the library name to create.
356 #CREATE_LIBRARY_FLAG =
357
358 # Flag for specifying a library to include in linking.
359 LIBRARY_NAME_FLAG = -l
360
361 # Flag for specifying the name of an object file to include in a library or exe.
362 OBJECT_NAME_FLAG = -o
363
364 # Flag for specifying a directory to add to the search path for libs.
365 LIBRARY_PATH_FLAG = -L
366
367 # Flag for specifying the name of an output from the linker.
368 #LINKER_OUTPUT_FLAG =
369
370 # Flag for separating linker options from compilation options for a combined
371 # compiler / linker.
372 #LINKER_OPTION_SEPARATOR =
373
374 # Flag that passes special options when building executable programs.  It is
375 # passed just before the LOAD_FLAG_PREFIX.
376 #EXE_FLAGS = 
377
378 # The name of the compiler tool.
379 #CC =
380
381 # The name of the library creator tool.
382 #LIBRARY_TOOL =
383
384 # the root name of the version file.  This is currently irrelevant on
385 # non-windoze platforms.
386 VERSION_RC_ROOT = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/rc_name.sh)
387
388 ifneq "$(CONSOLE_MODE)" ""
389   # this definition can be used to signal different behavior when the app is
390   # being built for console mode.  that generally implies that it should send
391   # debugging info to standard out and avoid doing much with graphics.
392   DEFINITIONS += CONSOLE_MODE
393 endif
394
395 ###############################################################################
396
397 # Operating system dependent flags.
398 # (not so OS dependent with move to only gnu compilation...)
399
400 LIB_ENDING = .a
401 DYNLIB_ENDING = .so
402
403 ###############################################################################
404
405 # Compiler Dependent Flags
406 #
407 # "COMPILER_ROOT_DIR" is the top-level for the C++ compiler location.
408 export COMPILER_ROOT_DIR
409 # "COMPILER_HEADER_DIR" is where the compiler headers are.
410 export COMPILER_HEADER_DIR
411 # "COMPILER_LIBRARY_DIR" is where archived libraries are.
412 # "CC" is the name of the C++ compiler to be used.
413
414 # These flags may be useful across multiple compilers.
415 #
416 # SSL brings in the OpenSSL libraries.
417 USE_SSL=
418
419 # CURL provides access to the curl library.
420 USE_CURL=
421
422 # Enables wxwidget library support.
423 USE_WXWIDGETS=
424
425 ifneq "$(OMIT_VERSIONS)" ""
426   DEFINITIONS += NO_VERSION
427 endif
428
429 ############################################################################
430 # compiler specific section below.
431 ############################################################################
432
433 ifeq "$(COMPILER)" "GNU_LINUX"
434   # Unix GNU compiler...
435   CC = g++
436   COMPILER_ROOT_DIR = /
437   PLATFORM_ADD_IN = linux_
438   ARCHITECTURE = $(shell machine 2>/dev/null || arch 2>/dev/null || echo i686)
439
440   export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
441
442   DEFINITIONS += _FILE_OFFSET_BITS=64 
443
444   DEPENDENCY_DEFINITIONS += NO_VERSION
445   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
446
447   # "USE_XWIN" specifies that this project needs X window system support.
448   #USE_XWIN =
449
450   ifeq "x86_64" "$(ARCHITECTURE)"
451     COMPILER_LIBRARY_DIR = /lib64 /usr/lib64 /usr/local/lib64
452   else
453     COMPILER_LIBRARY_DIR = /lib /usr/lib /usr/local/lib
454   endif
455   DEFINITIONS += __LINUX__ linux __linux__ UNIX unix __UNIX__ __USE_GNU 
456   # X Window System not enabled by default.
457   #DEFINITIONS += __XWINDOWS__ 
458
459   LIBRARY_TOOL = ar
460   LIB_PREFIX = lib
461   LOAD_FLAG_PREFIX += -Xlinker -O3 
462     # -Xlinker --print-map : shows what went in and why.
463     # -Xlinker -O3 : linker optimization
464
465   CREATE_LIBRARY_FLAG += -r 
466     # space on end is significant.
467   LINKER_OUTPUT_FLAG = -o 
468   LINK_TOOL = g++
469   # compiler flags for gcc:
470   # -finline-functions: inline functions as needed.
471   # -fPIC: generate position independent code.
472   # -fpic: generate position independent code, but less portable.
473   # -frepo: automatic template instantiation at link time, no implicit ones.
474   # -ffunction-sections: put each function in own section, improving linking.
475   # -fdata-sections: put data in own section, improving linking.
476   # -shared-libgcc: use the shared library version of compiler libraries.
477   # -fno-exceptions: do not support exception handling and stack unwinding.
478
479   COMPILER_FLAGS += -shared-libgcc -fPIC  
480
481   ifeq "$(DEBUG)" ""
482 #    COMPILER_FLAGS += -finline-functions 
483   endif
484   ifneq "$(STRICT_WARNINGS)" ""
485     COMPILER_FLAGS += -Wall -Werror -Wextra -Wno-long-long
486   endif
487
488   ifeq "$(CONSOLE_MODE)" ""
489     LIBS_USED += dl 
490      # dl=dynamic library.
491   endif
492
493   LIBS_USED += pthread rt 
494      # pthread=thread libraries.
495      # rt=real time libraries for shared memory.
496
497   ifneq "$(DEBUG)" ""
498     # add in debugging flags.
499     COMPILER_FLAGS += -g3 -O0
500
501 ##LOAD_FLAG_PREFIX += -lefence
502 #electric fence
503
504 ###COMPILER_FLAGS += -pg
505 ###LOAD_FLAG_PREFIX += -pg
506 ####trying out profiling: does not work so well yet.  generates gmon.out files
507 ####  in pretty random places.  the parameters to the linker do not even
508 ####  mention this flag, and the compiler flags do not seem to provide an
509 ####  option for where the file goes.  so, it is on hold.
510
511   endif
512
513 endif
514
515 ############################################################################
516
517 ifeq "$(COMPILER)" "GNU_ARM_LINUX"
518   # ARM-linux GNU compiler...
519   COMPILER_ROOT_DIR = /usr/local/arm-linux
520   CC = $(COMPILER_ROOT_DIR)/bin/g++
521   PLATFORM_ADD_IN = linux_
522
523   export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
524
525   SNAPGEAR_ROOT_DIR = $(HOME)/snapgear
526
527   DEPENDENCY_DEFINITIONS += NO_VERSION
528
529   COMPILER_HEADER_DIR = $(SNAPGEAR_ROOT_DIR)/linux-2.4.x/include
530 #  COMPILER_HEADER_DIR += $(SNAPGEAR_ROOT_DIR)/include 
531   COMPILER_HEADER_DIR += $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/lib 
532   COMPILER_HEADER_DIR += /usr/local/lib/gcc-lib/arm-linux/3.3.2/include
533   
534   COMPILER_LIBRARY_DIR = $(SNAPGEAR_ROOT_DIR)/lib $(COMPILER_ROOT_DIR)/lib/be
535
536   DEFINITIONS += linux __linux__ unix UNIX __UNIX__ __LINUX__ 
537
538   COMPILER_FLAGS += -mbig-endian -finline-functions -ffunction-sections -fPIC -nostdinc -nostdinc++ 
539   ifneq "$(STRICT_WARNINGS)" ""
540     COMPILER_FLAGS += -Wall -Werror
541   endif
542
543   LIBRARY_TOOL = $(COMPILER_ROOT_DIR)/bin/ar
544   LIB_PREFIX = lib
545   CREATE_LIBRARY_FLAG += -r 
546     # space on end is significant.
547   
548   LINK_TOOL = $(COMPILER_ROOT_DIR)/bin/g++
549   LINKER_OUTPUT_FLAG = -o
550   EXE_FLAGS = -mbig-endian
551   LOAD_FLAG_PREFIX += -v -mbig-endian
552
553   LIBS_USED += pthread dl
554
555   ifneq "$(DEBUG)" ""
556     COMPILER_FLAGS += -g3 -O0
557   endif
558
559 endif
560
561 ############################################################################
562
563 ifeq "$(COMPILER)" "GNU_WINDOWS"
564   # GNU compiler for MS Windoze...
565   CC = g++
566   COMPILER_ROOT_DIR = /
567   ARCHITECTURE = $(shell machine 2>/dev/null || arch 2>/dev/null || echo i686)
568 #hmmm: below fixes nothing!  argh!
569 #  ARCHITECTURE = i386
570
571   export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
572
573 #  RC := $(COMPILER_ROOT_DIR)/bin/windres
574   PLATFORM_ADD_IN = w32_
575
576   COMPILER_HEADER_DIR = $(COMPILER_ROOT_DIR)/include $(COMPILER_ROOT_DIR)/include/c++/3.4.2 
577 #$(COMPILER_ROOT_DIR)/lib/gcc/mingw32/3.4.2/include 
578 ###$(COMPILER_ROOT_DIR)/usr/include/mingw $(COMPILER_ROOT_DIR)/usr/include $(COMPILER_ROOT_DIR)/usr/include/w32api $(COMPILER_ROOT_DIR)/usr/include/extras
579
580   COMPILER_LIBRARY_DIR = $(COMPILER_ROOT_DIR)/lib
581   DEFINITIONS += __GNU_WINDOWS__ _Windows _WINDOWS WIN32 __WIN32__ __FLAT__ VC_EXTRALEAN WIN32_LEAN_AND_MEAN ATL_NO_LEAN_AND_MEAN _WIN32 __USE_W32_SOCKETS
582 #__cplusplus 
583 #__USE_GNU 
584
585   LIBRARY_TOOL = ar
586   LIBRARY_PATH_FLAG = -L 
587   LIB_PREFIX = lib
588   LIB_ENDING = .a
589 #  LOAD_FLAG_PREFIX += -lpthread
590   LOAD_FLAG_PREFIX += -mwindows
591   CREATE_LIBRARY_FLAG += -r 
592     # space on end is significant.
593   LINKER_OUTPUT_FLAG = -o
594   LINK_TOOL = g++
595   MIDL = midl -Oicf $(MIDL_DEFS) $(HEADER_SEARCH_PATH:%=-I% ) $(DEFINITIONS:%=-D% )
596   MIDL_DEFS = -no_robust
597   # some lovely definitions used by some of the mfc and other ms code.
598   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
599
600 endif
601
602 ############################################################################
603
604 ifeq "$(COMPILER)" "GNU_DARWIN"
605   # Darwin kernel GNU compiler...  really more general macos (MacOS) here these days.
606   CC = g++
607   COMPILER_ROOT_DIR = /
608   PLATFORM_ADD_IN = darwin
609   ARCHITECTURE = $(shell machine 2>/dev/null || arch 2>/dev/null || echo i686)
610
611   export COMPILER_VERSION = $(shell $(SHELL) $(CLAM_SCRIPTS)/cpp/get_version.sh $(COMPILER) $(COMPILER_ROOT_DIR) )
612
613   DEFINITIONS += _FILE_OFFSET_BITS=64 
614
615   DEPENDENCY_DEFINITIONS += NO_VERSION
616 #  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
617   DEPENDENCY_ADDITIONS = -X/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
618
619   COMPILER_HEADER_DIR := /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
620 #/usr/local/include /usr/include 
621 #old /System/Library/Frameworks/Foundation.framework/Versions/C/Headers
622 #/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
623 #/Library/Developer/CommandLineTools/usr/include
624
625   # "USE_XWIN" specifies that this project needs X window system support.
626   #USE_XWIN =
627
628 #  ifeq "x86_64" "$(ARCHITECTURE)"
629 #    COMPILER_LIBRARY_DIR = /lib64 /usr/lib64 /usr/local/lib64
630 #  else
631     COMPILER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib
632 #/usr/lib /usr/local/lib
633 #  endif
634
635 #  DEFINITIONS += __LINUX__ linux __linux__ UNIX unix __UNIX__ __USE_GNU 
636   DEFINITIONS += UNIX unix __UNIX__ __USE_GNU 
637   # X Window System not enabled by default.
638   #DEFINITIONS += __XWINDOWS__ 
639
640   LIBRARY_TOOL = ar
641   LIB_PREFIX = lib
642 #  LOAD_FLAG_PREFIX += -Xlinker 
643 #mac has no o3???
644 #-O3 
645   # special flags for getting rid of warnings on fd_set.
646   LOAD_FLAG_PREFIX=-Wl,-U,___darwin_check_fd_set_overflow
647
648 # -Xlinker --print-map : shows what went in and why.
649 # -Xlinker -O3 : linker optimization
650   CREATE_LIBRARY_FLAG += -r 
651     # space on end is significant.
652   LINKER_OUTPUT_FLAG = -o 
653   LINK_TOOL = g++
654 #  COMPILER_FLAGS += -shared-libgcc -fPIC  
655 #old: -Wl,-export-dynamic
656 #  ifeq "$(DEBUG)" ""
657 #    COMPILER_FLAGS += -finline-functions 
658 #  endif
659 #  ifneq "$(STRICT_WARNINGS)" ""
660 #    COMPILER_FLAGS += -Wall -Werror -Wextra -pedantic-errors -Wno-long-long
661 #  endif
662 #  LIBS_USED += dl pthread rt 
663 #mac no like these libs
664      # dl=dynamic library.
665      # pthread=thread libraries.
666      # rt=real time libraries for shared memory.
667
668   # mac specific flags
669   COMPILER_FLAGS += -Wno-nullability-completeness
670 #trying this one again, which had been turned off.
671   COMPILER_FLAGS += -fgnu-runtime
672
673   ifneq "$(DEBUG)" ""
674     # add in debugging flags.
675 #    COMPILER_FLAGS += -g3 -O0
676   endif
677 endif
678
679 ############################################################################
680
681 # these activities are done after the compiler specific stuff.
682
683 # add a definition for programs to be able to differentiate the versions.
684 DEFINITIONS += COMPILER_VERSION=$(COMPILER_VERSION)
685
686 # set a variable that scripts can use to get most of the definitions.
687 export VARIABLE_DEFINITION_SET := $(DEFINITIONS)
688
689 ###############################################################################
690