Advertisement
egon

target.txt

Jul 1st, 2011
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. #
  2. # Copyright (c) 2006 - 2010, 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.  
  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. #
  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
  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.
  26. #ACTIVE_PLATFORM = Nt32Pkg/Nt32Pkg.dsc
  27. ACTIVE_PLATFORM = MdeModulePkg/MdeModulePkg.dsc
  28.  
  29.  
  30. # TARGET List Optional Zero or more of the following: DEBUG, RELEASE,
  31. # UserDefined; separated by a space character.
  32. # If the line is missing or no value is specified, all
  33. # valid targets specified in the platform description file
  34. # will attempt to be built. The following line will build all
  35. # platform targets.
  36. TARGET = DEBUG
  37.  
  38. # TARGET_ARCH List Optional What kind of architecture is the binary being target for.
  39. # One, or more, of the following, IA32, IPF, X64, EBC or ARM.
  40. # Multiple values can be specified on a single line, using
  41. # space charaters to separate the values. These are used
  42. # during the parsing of an platform description file,
  43. # restricting the build output target(s.)
  44. # The Build Target ARCH is determined by a logical AND of:
  45. # platform BuildOptions: <SupportedArchitectures> tag
  46. # If not specified, then all valid architectures specified
  47. # in the platform file, for which tools are available, will be
  48. # built.
  49. #TARGET_ARCH = IA32
  50. TARGET_ARCH = X64
  51.  
  52. # TOOL_DEFINITION_FILE Filename Optional Specify the name of the filename to use for specifying
  53. # the tools to use for the build. If not specified,
  54. # tools_def.txt will be used for the build. This file
  55. # MUST be located in the WORKSPACE/Conf directory.
  56. TOOL_CHAIN_CONF = Conf/tools_def.txt
  57.  
  58. # TAGNAME List Optional Specify the name(s) of the tools_def.txt TagName to use.
  59. # If not specified, all applicable TagName tools will be
  60. # used for the build. The list uses space character separation.
  61. #TOOL_CHAIN_TAG = MYTOOLS
  62. TOOL_CHAIN_TAG = XCLANG
  63.  
  64. # MAX_CONCURRENT_THREAD_NUMBER NUMBER Optional The number of concurrent threads. Recommend to set this
  65. # value to one more than the number of your compurter
  66. # cores or CPUs. Less than 2 means disable multithread build.
  67. MAX_CONCURRENT_THREAD_NUMBER = 1
  68.  
  69. # Build rules definition
  70. #
  71. #
  72. BUILD_RULE_CONF = Conf/build_rule.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement