target.template 5.1 KB

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