2007-10-17 03:54:36 +02:00
|
|
|
#
|
2019-05-21 17:09:05 +02:00
|
|
|
# Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
2007-10-17 03:54:36 +02:00
|
|
|
#
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-10-17 03:54:36 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# ALL Paths are Relative to WORKSPACE
|
|
|
|
|
|
|
|
# Separate multiple LIST entries with a SINGLE SPACE character, do not use comma characters.
|
|
|
|
# Un-set an option by either commenting out the line, or not setting a value.
|
|
|
|
|
|
|
|
#
|
|
|
|
# PROPERTY Type Use Description
|
|
|
|
# ---------------- -------- -------- -----------------------------------------------------------
|
|
|
|
# ACTIVE_PLATFORM Filename Recommended Specify the WORKSPACE relative Path and Filename
|
2007-12-25 10:23:17 +01:00
|
|
|
# of the platform description file that will be used for the
|
|
|
|
# build. This line is required if and only if the current
|
|
|
|
# working directory does not contain one or more description
|
|
|
|
# files.
|
2019-05-21 17:09:05 +02:00
|
|
|
ACTIVE_PLATFORM = EmulatorPkg/EmulatorPkg.dsc
|
2007-10-17 03:54:36 +02:00
|
|
|
|
2011-09-18 14:17:25 +02:00
|
|
|
# TARGET List Optional Zero or more of the following: DEBUG, RELEASE, NOOPT
|
2007-10-17 03:54:36 +02:00
|
|
|
# UserDefined; separated by a space character.
|
|
|
|
# If the line is missing or no value is specified, all
|
2007-12-25 10:23:17 +01:00
|
|
|
# valid targets specified in the platform description file
|
2011-08-26 09:46:26 +02:00
|
|
|
# will attempt to be built. The following line will build
|
|
|
|
# DEBUG platform target.
|
2007-10-17 03:54:36 +02:00
|
|
|
TARGET = DEBUG
|
|
|
|
|
|
|
|
# TARGET_ARCH List Optional What kind of architecture is the binary being target for.
|
2013-08-23 04:18:16 +02:00
|
|
|
# One, or more, of the following, IA32, IPF, X64, EBC, ARM
|
|
|
|
# or AArch64.
|
2007-10-17 03:54:36 +02:00
|
|
|
# Multiple values can be specified on a single line, using
|
2019-02-06 08:44:39 +01:00
|
|
|
# space characters to separate the values. These are used
|
2011-08-26 09:46:26 +02:00
|
|
|
# during the parsing of a platform description file,
|
2007-12-25 10:23:17 +01:00
|
|
|
# restricting the build output target(s.)
|
2011-08-26 09:46:26 +02:00
|
|
|
# The Build Target ARCH is determined by (precedence high to low):
|
|
|
|
# Command-line: -a ARCH option
|
|
|
|
# target.txt: TARGET_ARCH values
|
|
|
|
# DSC file: [Defines] SUPPORTED_ARCHITECTURES tag
|
2007-10-17 03:54:36 +02:00
|
|
|
# If not specified, then all valid architectures specified
|
2007-12-25 10:23:17 +01:00
|
|
|
# in the platform file, for which tools are available, will be
|
2007-10-17 03:54:36 +02:00
|
|
|
# built.
|
|
|
|
TARGET_ARCH = IA32
|
|
|
|
|
|
|
|
# TOOL_DEFINITION_FILE Filename Optional Specify the name of the filename to use for specifying
|
|
|
|
# the tools to use for the build. If not specified,
|
2011-08-26 09:46:26 +02:00
|
|
|
# WORKSPACE/Conf/tools_def.txt will be used for the build.
|
2007-10-17 03:54:36 +02:00
|
|
|
TOOL_CHAIN_CONF = Conf/tools_def.txt
|
|
|
|
|
|
|
|
# TAGNAME List Optional Specify the name(s) of the tools_def.txt TagName to use.
|
|
|
|
# If not specified, all applicable TagName tools will be
|
|
|
|
# used for the build. The list uses space character separation.
|
2019-01-28 04:19:50 +01:00
|
|
|
TOOL_CHAIN_TAG = VS2015x86
|
2007-10-17 03:54:36 +02:00
|
|
|
|
2018-02-05 07:14:07 +01:00
|
|
|
# MAX_CONCURRENT_THREAD_NUMBER NUMBER Optional The number of concurrent threads. If not specified or set
|
|
|
|
# to zero, tool automatically detect number of processor
|
|
|
|
# threads. Recommend to set this value to one less than the
|
|
|
|
# number of your computer cores or CPUs. When value set to 1,
|
|
|
|
# means disable multi-thread build, value set to more than 1,
|
|
|
|
# means user specify the thread number to build. Not specify
|
|
|
|
# the default value in this file.
|
|
|
|
# MAX_CONCURRENT_THREAD_NUMBER = 1
|
2008-02-19 07:39:47 +01:00
|
|
|
|
2011-08-26 09:46:26 +02:00
|
|
|
|
|
|
|
# BUILD_RULE_CONF Filename Optional Specify the file name to use for the build rules that are followed
|
|
|
|
# when generating Makefiles. If not specified, the file:
|
|
|
|
# WORKSPACE/Conf/build_rule.txt will be used
|
2008-02-19 07:39:47 +01:00
|
|
|
BUILD_RULE_CONF = Conf/build_rule.txt
|
|
|
|
|