target.template 4.7 KB

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