VirtualBox

source: kBuild/trunk/Config.kmk@ 538

Last change on this file since 538 was 533, checked in by bird, 18 years ago

o Optimization summary: libc from ~21 seconds -> 7-8 seconds (os2/nt).
o Optimized appending new stuff to variables. (major win)
o Optimized variable memory value allocation avoiding a bunch of

unnecessary copying and allocating.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1# $Id: Config.kmk 533 2006-09-18 03:02:39Z bird $
2## @file
3#
4# Build Configuration.
5#
6# Copyright (c) 2005 knut st. osmundsen <[email protected]>
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
27# Enable automatic installation of what's built.
28KBUILD_DO_AUTO_INSTALL := 1
29
30#
31# Template for building commandline tools.
32#
33TEMPLATE_BIN = Commandline binary
34
35TEMPLATE_BIN_INCS = $(PATH_ROOT)/src/lib
36
37ifeq ($(BUILD_TARGET),os2)
38TEMPLATE_BIN_TOOL = GCC3OMF
39TEMPLATE_BIN_CFLAGS.profile = -pg
40TEMPLATE_BIN_CFLAGS.release = -O3
41TEMPLATE_BIN_LDFLAGS = -Zhigh-mem -Zstack=1024
42TEMPLATE_BIN_INST = kBuild/bin/x86.os2/
43endif
44
45ifeq ($(BUILD_TARGET),win32)
46TEMPLATE_BIN_TOOL = VCC70
47TEMPLATE_BIN_DEFS = WINDOWS32 _CONSOLE WIN32 __WIN32__
48TEMPLATE_BIN_DEFS.release = NDEBUG
49TEMPLATE_BIN_CFLAGS = -MT -W3 -Zi -Zl
50TEMPLATE_BIN_CFLAGS.release = -O2
51TEMPLATE_BIN_CFLAGS.profile = -O2 -GH -Gh
52TEMPLATE_BIN_INCS += \
53 . \
54 $(PATH_ROOT)/src/gmake/w32/include \
55 $(PATH_ROOT)/src/gmake/glob \
56 $(PATH_DEV)/x86.win32/vcc70/include \
57 $(PATH_DEV)/x86.win32/sdk200209/include
58TEMPLATE_BIN_LDFLAGS = /SUBSYSTEM:console /INCREMENTAL:no /NOD
59TEMPLATE_BIN_LDFLAGS.profile = /DEBUG
60TEMPLATE_BIN_LIBS = \
61 $(PATH_DEV)/x86.win32/vcc70/lib/libcmt.lib \
62 $(PATH_DEV)/x86.win32/vcc70/lib/oldnames.lib \
63 $(PATH_DEV)/x86.win32/sdk200209/lib/Kernel32.Lib \
64 $(PATH_DEV)/x86.win32/sdk200209/lib/User32.Lib \
65 $(PATH_DEV)/x86.win32/sdk200209/lib/AdvAPI32.Lib
66TEMPLATE_BIN_LIBS.profile = g:/coding/vbox/trunk/out/win32/debug/lib/kPrf2.lib
67TEMPLATE_BIN_INST = kBuild/bin/x86.win32/
68endif
69
70ifndef TEMPLATE_BIN_TOOL
71TEMPLATE_BIN_TOOL = GCC3
72TEMPLATE_BIN_CFLAGS.release = -O3
73TEMPLATE_BIN_LDFLAGS = -static
74ifeq ($(BUILD_TARGET),linux)
75TEMPLATE_BIN_LIBS += rt
76endif
77ifeq ($(BUILD_TARGET),freebsd)
78TEMPLATE_BIN_LIBS += iconv intl
79TEMPLATE_BIN_LIBPATH += /usr/local/lib
80TEMPLATE_BIN_INCS += $(PATH_ROOT)/src/gmake/glob /usr/local/include
81endif
82TEMPLATE_BIN_INST = kBuild/bin/$(BUILD_TARGET_ARCH).$(BUILD_TARGET)/
83endif
84
85
86
87#
88# Template for building libraries for the tools.
89#
90TEMPLATE_LIB = Library for Commandline binary
91
92TEMPLATE_LIB_TOOL = $(TEMPLATE_BIN_TOOL)
93TEMPLATE_LIB_INST = lib/
94TEMPLATE_LIB_INCS = $(TEMPLATE_BIN_INCS)
95TEMPLATE_LIB_INCS.$(BUILD_TYPE) = $(TEMPLATE_BIN_INCS.$(BUILD_TYPE))
96TEMPLATE_LIB_DEFS = $(TEMPLATE_BIN_DEFS)
97TEMPLATE_LIB_DEFS.$(BUILD_TYPE) = $(TEMPLATE_BIN_DEFS.$(BUILD_TYPE))
98TEMPLATE_LIB_CFLAGS = $(TEMPLATE_BIN_CFLAGS)
99TEMPLATE_LIB_CFLAGS.$(BUILD_TYPE) = $(TEMPLATE_BIN_CFLAGS.$(BUILD_TYPE))
100TEMPLATE_LIB_CXXFLAGS = $(TEMPLATE_BIN_CXXFLAGS)
101TEMPLATE_LIB_CXXFLAGS.$(BUILD_TYPE) = $(TEMPLATE_BIN_CXXFLAGS.$(BUILD_TYPE))
102
103LIB_KDEP = $(PATH_OUT)/$(TEMPLATE_LIB_INST)$(TOOL_$(TEMPLATE_LIB_TOOL)_ARLIBPREF)kDep$$(TOOL_$(TEMPLATE_LIB_TOOL)_ARLIBSUFF)
104
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette