source: trunk/kBuild/tools/GCC3.kmk@ 785

Last change on this file since 785 was 782, checked in by bird, 19 years ago

copyright 2007

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 11.0 KB
Line 
1# $Id: GCC3.kmk 782 2007-01-24 20:19:57Z bird $
2## @file
3#
4# kBuild Tool Config - Generic GCC v3.2.x or later Using The System GCC.
5#
6# Copyright (c) 2004-2007 knut st. osmundsen <bird-kBuild-spam@anduin.net>
7#
8#
9# This file is part of kBuild.
10#
11# kBuild is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# kBuild is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with kBuild; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24#
25#
26
27TOOL_GCC3 := Generic GCC v3.2.x or later Using The System GCC.
28
29# Tool Specific Properties
30TOOL_GCC3_CC ?= gcc$(HOSTSUFF_EXE)
31TOOL_GCC3_CXX ?= g++$(HOSTSUFF_EXE)
32TOOL_GCC3_AS ?= gcc$(HOSTSUFF_EXE)
33TOOL_GCC3_AR ?= ar$(HOSTSUFF_EXE)
34ifeq ($(BUILD_TARGET),os2)
35TOOL_GCC3_AR_IMP ?= emximp$(HOSTSTUFF_EXE)
36else
37TOOL_GCC3_AR_IMP ?= $(ECHO) not supported!
38endif
39TOOL_GCC3_LD ?= g++$(HOSTSUFF_EXE)
40TOOL_GCC3_LD_SYSMOD ?= ld$(HOSTSUFF_EXE)
41ifndef TOOL_GCC3_LDFLAGS.$(BUILD_TARGET)
42TOOL_GCC3_LDFLAGS.dll ?= -shared
43else
44TOOL_GCC3_LDFLAGS.dll ?= $(TOOL_GCC3_LDFLAGS.$(BUILD_TARGET))
45endif
46TOOL_GCC3_LDFLAGS.sysmod ?= -r
47TOOL_GCC3_LD_SONAME ?= -Wl,-soname=$(firstword $($(1)_SONAME.$(BUILD_TARGET).$(BUILD_TYPE)) $($(1)_SONAME.$(BUILD_TARGET)) $($(1)_SONAME.$(BUILD_TYPE)) $($(1)_SONAME) $(notdir $(2)))
48ifeq ($(BUILD_TARGET),os2)
49TOOL_GCC3_LD_MAP ?= -Zmap=$(1)
50TOOL_GCC3_LD_SYSMOD_MAP ?= -Zmap=$(1)
51else
52TOOL_GCC3_LD_MAP ?= -Wl,-Map -Wl,$(1) -Wl,--cref
53TOOL_GCC3_LD_SYSMOD_MAP ?= -Map $(1) --cref
54endif
55ifdef SLKRUNS
56TOOL_GCC3_CC += -fmessage-length=0
57TOOL_GCC3_CXX += -fmessage-length=0
58endif
59
60# General Properties used by kBuild
61TOOL_GCC3_COBJSUFF ?= .o
62TOOL_GCC3_CFLAGS ?=
63TOOL_GCC3_CFLAGS.debug ?= -g
64TOOL_GCC3_CFLAGS.profile ?= -g -O2 #-pg
65TOOL_GCC3_CFLAGS.release ?= -O2
66TOOL_GCC3_CINCS ?=
67TOOL_GCC3_CDEFS ?=
68
69TOOL_GCC3_CXXOBJSUFF ?= .o
70TOOL_GCC3_CXXOBJSUFF ?= .o
71TOOL_GCC3_CXXFLAGS ?=
72TOOL_GCC3_CXXFLAGS.debug ?= -g
73TOOL_GCC3_CXXFLAGS.profile ?= -g -O2 #-pg
74TOOL_GCC3_CXXFLAGS.release ?= -O2
75TOOL_GCC3_CXXINCS ?=
76TOOL_GCC3_CXXDEFS ?=
77
78TOOL_GCC3_ASFLAGS ?= -x assembler-with-cpp
79TOOL_GCC3_ASFLAGS.debug ?= -g
80TOOL_GCC3_ASFLAGS.profile ?= -g
81TOOL_GCC3_ASOBJSUFF ?= .o
82
83TOOL_GCC3_ARFLAGS ?= cr
84TOOL_GCC3_ARLIBSUFF ?= .a
85
86TOOL_GCC3_LDFLAGS ?=
87TOOL_GCC3_LDFLAGS.debug ?= -g
88TOOL_GCC3_LDFLAGS.profile ?= -g
89
90
91## Compile C source.
92# @param $(target) Normalized main target name.
93# @param $(source) Source filename (relative).
94# @param $(obj) Object file name. This shall be (re)created by the compilation.
95# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
96# @param $(flags) Flags.
97# @param $(defs) Definitions. No -D or something.
98# @param $(incs) Includes. No -I or something.
99# @param $(dirdep) Directory creation dependency.
100# @param $(deps) Other dependencies.
101#
102# @param $(outbase) Output basename (full). Use this for list files and such.
103# @param $(objsuff) Object suffix.
104TOOL_GCC3_COMPILE_C_OUTPUT =
105TOOL_GCC3_COMPILE_C_DEPEND =
106TOOL_GCC3_COMPILE_C_DEPORD =
107define TOOL_GCC3_COMPILE_C_CMDS
108 $(QUIET)$(TOOL_GCC3_CC) -c\
109 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
110 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
111 -o $(obj)\
112 $(abspath $(source))
113endef
114
115
116## Compile C++ source.
117# @param $(target) Normalized main target name.
118# @param $(source) Source filename (relative).
119# @param $(obj) Object file name. This shall be (re)created by the compilation.
120# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
121# @param $(flags) Flags.
122# @param $(defs) Definitions. No -D or something.
123# @param $(incs) Includes. No -I or something.
124# @param $(dirdep) Directory creation dependency.
125# @param $(deps) Other dependencies.
126# @param $(outbase) Output basename (full). Use this for list files and such.
127# @param $(objsuff) Object suffix.
128TOOL_GCC3_COMPILE_CXX_OUTPUT =
129TOOL_GCC3_COMPILE_CXX_DEPEND =
130TOOL_GCC3_COMPILE_CXX_DEPORD =
131define TOOL_GCC3_COMPILE_CXX_CMDS
132 $(QUIET)$(TOOL_GCC3_CXX) -c\
133 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
134 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
135 -o $(obj)\
136 $(abspath $(source))
137endef
138
139
140## Compile Assembly source.
141# @param $(target) Normalized main target name.
142# @param $(source) Source filename (relative).
143# @param $(obj) Object file name. This shall be (re)created by the compilation.
144# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
145# @param $(flags) Flags.
146# @param $(defs) Definitions. No -D or something.
147# @param $(incs) Includes. No -I or something.
148# @param $(dirdep) Directory creation dependency.
149# @param $(deps) Other dependencies.
150# @param $(outbase) Output basename (full). Use this for list files and such.
151# @param $(objsuff) Object suffix.
152#
153TOOL_GCC3_COMPILE_AS_OUTPUT =
154TOOL_GCC3_COMPILE_AS_DEPEND =
155TOOL_GCC3_COMPILE_AS_DEPORD =
156define TOOL_GCC3_COMPILE_AS_CMDS
157 $(QUIET)$(TOOL_GCC3_AS) -c\
158 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
159 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
160 -o $(obj)\
161 $(abspath $(source))
162endef
163
164
165## Link library
166# @param $(target) Normalized main target name.
167# @param $(out) Library name.
168# @param $(objs) Object files to put in the library.
169# @param $(flags) Flags.
170# @param $(dirdep) Directory creation dependency.
171# @param $(deps) Other dependencies.
172# @param $(othersrc) Unhandled sources.
173# @param $(outbase) Output basename (full). Use this for list files and such.
174TOOL_GCC3_LINK_LIBRARY_OUTPUT = $(out).ar-script $(outbase).imp.a
175TOOL_GCC3_LINK_LIBRARY_DEPEND = $(othersrc)
176TOOL_GCC3_LINK_LIBRARY_DEPORD =
177ifeq ($(filter append-dash-n,$(KMK_FEATURES)),append-dash-n)
178define TOOL_GCC3_LINK_LIBRARY_CMDS
179 $(QUIET)$(APPEND) $(out).ar-script 'CREATE $(out)'
180 $(QUIET)$(APPEND) -n $(out).ar-script \
181 $(foreach o,$(objs), 'ADDMOD $(o)') \
182 $(foreach o,$(filter-out %.def %.imp,$(othersrc)), 'ADDLIB $(o)')
183 $(if $(filter %.def %.imp,$(othersrc))\
184 ,$(TOOL_GCC3_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp,$(othersrc))\
185 $(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script 'ADDLIB $(outbase).imp.a')
186 $(QUIET)$(APPEND) $(out).ar-script 'SAVE'
187 $(QUIET)$(APPEND) $(out).ar-script 'END'
188 $(QUIET)$(TOOL_GCC3_AR) -M < $(out).ar-script
189endef
190else
191define TOOL_GCC3_LINK_LIBRARY_CMDS
192 $(QUIET)$(APPEND) $(out).ar-script "CREATE $(out)"
193 $(foreach o, $(objs)\
194 ,$(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script "ADDMOD $(o)")
195 $(foreach srclib, $(filter-out %.def %.imp,$(othersrc))\
196 ,$(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script "ADDLIB $(srclib)")
197 $(if $(filter %.def %.imp,$(othersrc))\
198 ,$(TOOL_GCC3_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp,$(othersrc))\
199 $(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script "ADDLIB $(outbase).imp.a")
200 $(QUIET)$(APPEND) $(out).ar-script "SAVE"
201 $(QUIET)$(APPEND) $(out).ar-script "END"
202 $(QUIET)$(TOOL_GCC3_AR) -M < $(out).ar-script
203endef
204endif
205
206
207## Link program
208# @param $(target) Normalized main target name.
209# @param $(out) Program name.
210# @param $(objs) Object files to link together.
211# @param $(libs) Libraries to search.
212# @param $(libpath) Library search paths.
213# @param $(flags) Flags.
214# @param $(dirdep) Directory creation dependency.
215# @param $(deps) Other dependencies.
216# @param $(othersrc) Unhandled sources.
217# @param $(custom_pre) Custom step invoked before linking.
218# @param $(custom_post) Custom step invoked after linking.
219# @param $(outbase) Output basename (full). Use this for list files and such.
220TOOL_GCC3_LINK_PROGRAM_OUTPUT = $(outbase).map
221TOOL_GCC3_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))\
222 $(filter %.def, $(othersrc))
223TOOL_GCC3_LINK_PROGRAM_DEPORD =
224define TOOL_GCC3_LINK_PROGRAM_CMDS
225 $(QUIET)$(TOOL_GCC3_LD) $(flags) -o $(out) $(objs)\
226 $(filter %.def, $(othersrc))\
227 $(foreach p,$(libpath), -L$(p))\
228 $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib)))\
229 $(call TOOL_GCC3_LD_MAP,$(outbase).map)
230endef
231
232
233## Link DLL
234# @param $(target) Normalized main target name.
235# @param $(out) Program name.
236# @param $(objs) Object files to link together.
237# @param $(libs) Libraries to search.
238# @param $(libpath) Library search paths.
239# @param $(flags) Flags.
240# @param $(dirdep) Directory creation dependency.
241# @param $(deps) Other dependencies.
242# @param $(othersrc) Unhandled sources.
243# @param $(custom_pre) Custom step invoked before linking.
244# @param $(custom_post) Custom step invoked after linking.
245# @param $(outbase) Output basename (full). Use this for list files and such.
246TOOL_GCC3_LINK_DLL_OUTPUT = $(outbase).map
247TOOL_GCC3_LINK_DLL_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))\
248 $(filter %.def, $(othersrc))
249TOOL_GCC3_LINK_DLL_DEPORD =
250define TOOL_GCC3_LINK_DLL_CMDS
251 $(QUIET)$(TOOL_GCC3_LD) $(TOOL_GCC3_LDFLAGS.dll) $(flags) -o $(out)\
252 $(if $(filter-out win32 os2, $(BUILD_TARGET)),$(call TOOL_GCC3_LD_SONAME,$(target),$(out)))\
253 $(objs)\
254 $(filter %.def, $(othersrc))\
255 $(foreach p,$(libpath), -L$(p))\
256 $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib)))\
257 $(call TOOL_GCC3_LD_MAP,$(outbase).map)
258endef
259
260
261## Link system module (windows aka driver, linux aka kernel module)
262# @param $(target) Normalized main target name.
263# @param $(out) System module name.
264# @param $(objs) Object files to link together.
265# @param $(libs) Libraries to search.
266# @param $(libpath) Library search paths.
267# @param $(flags) Flags.
268# @param $(dirdep) Directory creation dependency.
269# @param $(deps) Other dependencies.
270# @param $(othersrc) Unhandled sources.
271# @param $(custom_pre) Custom step invoked before linking.
272# @param $(custom_post) Custom step invoked after linking.
273# @param $(outbase) Output basename (full). Use this for list files and such.
274TOOL_GCC3_LINK_SYSMOD_OUTPUT = $(outbase).map
275TOOL_GCC3_LINK_SYSMOD_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))\
276 $(filter %.def, $(othersrc))
277TOOL_GCC3_LINK_SYSMOD_DEPORD =
278define TOOL_GCC3_LINK_SYSMOD_CMDS
279 $(QUIET)$(TOOL_GCC3_LD_SYSMOD) $(TOOL_GCC3_LDFLAGS.sysmod) $(flags) -o $(out) $(objs)\
280 $(filter %.def, $(othersrc))\
281 $(foreach p,$(libpath), -L$(p))\
282 $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib)))\
283 $(call TOOL_GCC3_LD_SYSMOD_MAP,$(outbase).map)
284endef
285
Note: See TracBrowser for help on using the repository browser.