jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 1 | #
|
lgao4 | 4234283 | 2011-08-26 07:46:26 +0000 | [diff] [blame] | 2 | # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 3 | #
|
lgao4 | 40d841f | 2010-05-18 05:04:32 +0000 | [diff] [blame] | 4 | # This program and the accompanying materials
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 5 | # are licensed and made available under the terms and conditions of the BSD License
|
| 6 | # which accompanies this distribution. The full text of the license may be found at
|
| 7 | # http://opensource.org/licenses/bsd-license.php
|
| 8 |
|
| 9 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 10 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 11 | #
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 12 | #
|
| 13 | # ALL Paths are Relative to WORKSPACE
|
| 14 |
|
| 15 | # Separate multiple LIST entries with a SINGLE SPACE character, do not use comma characters.
|
| 16 | # Un-set an option by either commenting out the line, or not setting a value.
|
| 17 |
|
| 18 | #
|
| 19 | # PROPERTY Type Use Description
|
| 20 | # ---------------- -------- -------- -----------------------------------------------------------
|
| 21 | # ACTIVE_PLATFORM Filename Recommended Specify the WORKSPACE relative Path and Filename
|
jwang36 | 106c688 | 2007-12-25 09:23:17 +0000 | [diff] [blame] | 22 | # of the platform description file that will be used for the
|
| 23 | # build. This line is required if and only if the current
|
| 24 | # working directory does not contain one or more description
|
| 25 | # files.
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 26 | ACTIVE_PLATFORM = Nt32Pkg/Nt32Pkg.dsc
|
| 27 |
|
lgao4 | b36d134 | 2011-09-18 12:17:25 +0000 | [diff] [blame] | 28 | # TARGET List Optional Zero or more of the following: DEBUG, RELEASE, NOOPT
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 29 | # UserDefined; separated by a space character.
|
| 30 | # If the line is missing or no value is specified, all
|
jwang36 | 106c688 | 2007-12-25 09:23:17 +0000 | [diff] [blame] | 31 | # valid targets specified in the platform description file
|
lgao4 | 4234283 | 2011-08-26 07:46:26 +0000 | [diff] [blame] | 32 | # will attempt to be built. The following line will build
|
| 33 | # DEBUG platform target.
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 34 | TARGET = DEBUG
|
| 35 |
|
| 36 | # TARGET_ARCH List Optional What kind of architecture is the binary being target for.
|
| 37 | # One, or more, of the following, IA32, IPF, X64, EBC or ARM.
|
| 38 | # Multiple values can be specified on a single line, using
|
| 39 | # space charaters to separate the values. These are used
|
lgao4 | 4234283 | 2011-08-26 07:46:26 +0000 | [diff] [blame] | 40 | # during the parsing of a platform description file,
|
jwang36 | 106c688 | 2007-12-25 09:23:17 +0000 | [diff] [blame] | 41 | # restricting the build output target(s.)
|
lgao4 | 4234283 | 2011-08-26 07:46:26 +0000 | [diff] [blame] | 42 | # The Build Target ARCH is determined by (precedence high to low):
|
| 43 | # Command-line: -a ARCH option
|
| 44 | # target.txt: TARGET_ARCH values
|
| 45 | # DSC file: [Defines] SUPPORTED_ARCHITECTURES tag
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 46 | # If not specified, then all valid architectures specified
|
jwang36 | 106c688 | 2007-12-25 09:23:17 +0000 | [diff] [blame] | 47 | # in the platform file, for which tools are available, will be
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 48 | # built.
|
| 49 | TARGET_ARCH = IA32
|
| 50 |
|
| 51 | # TOOL_DEFINITION_FILE Filename Optional Specify the name of the filename to use for specifying
|
| 52 | # the tools to use for the build. If not specified,
|
lgao4 | 4234283 | 2011-08-26 07:46:26 +0000 | [diff] [blame] | 53 | # WORKSPACE/Conf/tools_def.txt will be used for the build.
|
jljusten | 07a756b | 2007-10-17 01:54:36 +0000 | [diff] [blame] | 54 | TOOL_CHAIN_CONF = Conf/tools_def.txt
|
| 55 |
|
| 56 | # TAGNAME List Optional Specify the name(s) of the tools_def.txt TagName to use.
|
| 57 | # If not specified, all applicable TagName tools will be
|
| 58 | # used for the build. The list uses space character separation.
|
| 59 | TOOL_CHAIN_TAG = MYTOOLS
|
| 60 |
|
jwang36 | 2eab98c | 2008-12-31 05:53:26 +0000 | [diff] [blame] | 61 | # MAX_CONCURRENT_THREAD_NUMBER NUMBER Optional The number of concurrent threads. Recommend to set this
|
| 62 | # value to one more than the number of your compurter
|
| 63 | # cores or CPUs. Less than 2 means disable multithread build.
|
jwang36 | 04e031d | 2007-10-31 09:07:31 +0000 | [diff] [blame] | 64 | MAX_CONCURRENT_THREAD_NUMBER = 1
|
jwang36 | e2336e3 | 2008-02-19 06:39:47 +0000 | [diff] [blame] | 65 |
|
lgao4 | 4234283 | 2011-08-26 07:46:26 +0000 | [diff] [blame] | 66 |
|
| 67 | # BUILD_RULE_CONF Filename Optional Specify the file name to use for the build rules that are followed
|
| 68 | # when generating Makefiles. If not specified, the file:
|
| 69 | # WORKSPACE/Conf/build_rule.txt will be used
|
jwang36 | e2336e3 | 2008-02-19 06:39:47 +0000 | [diff] [blame] | 70 | BUILD_RULE_CONF = Conf/build_rule.txt
|
| 71 |
|