Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame^] | 1 | ## @file
|
| 2 | # Enquire application for system integer and floating point characteristics
|
| 3 | # enquiry.
|
| 4 | #
|
| 5 | # Due to the level of hardware introspection, this application MUST be built
|
| 6 | # with optimizations disabled.
|
| 7 | #
|
| 8 | # COPYRIGHT(c) 1993-9 Steven Pemberton, CWI. All rights reserved.
|
| 9 | # NOTE: Improvements gratefully received. Please mention the version.
|
| 10 | # "http://www.cwi.nl/~steven/enquire.html"
|
| 11 | #
|
| 12 | # Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
| 13 | # This program and the accompanying materials
|
| 14 | # are licensed and made available under the terms and conditions of the BSD License
|
| 15 | # which accompanies this distribution. The full text of the license may be found at
|
| 16 | # http://opensource.org/licenses/bsd-license.
|
| 17 | #
|
| 18 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 19 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 20 | #
|
| 21 | ##
|
| 22 |
|
| 23 | [Defines]
|
| 24 | INF_VERSION = 0x00010006
|
| 25 | BASE_NAME = Enquire
|
| 26 | FILE_GUID = 42f58b27-5dc3-4fa7-844d-5a7dbff06432
|
| 27 | MODULE_TYPE = UEFI_APPLICATION
|
| 28 | VERSION_STRING = 0.1
|
| 29 | ENTRY_POINT = ShellCEntryLib
|
| 30 |
|
| 31 | #
|
| 32 | # VALID_ARCHITECTURES = IA32 X64 IPF
|
| 33 | #
|
| 34 |
|
| 35 | [Sources]
|
| 36 | Enquire.c
|
| 37 |
|
| 38 | [Packages]
|
| 39 | StdLib/StdLib.dec
|
| 40 | MdePkg/MdePkg.dec
|
| 41 |
|
| 42 | [LibraryClasses]
|
| 43 | UefiLib
|
| 44 | LibC
|
| 45 | LibString
|
| 46 | LibStdio
|
| 47 | LibGdtoa
|
| 48 | LibWchar
|
| 49 |
|
| 50 | [BuildOptions]
|
| 51 | INTEL:*_*_*_CC_FLAGS = /Qdiag-disable:181,186
|
| 52 | MSFT:*_*_*_CC_FLAGS = /Od
|
| 53 | GCC:*_*_*_CC_FLAGS = -O0 -Wno-unused-variable
|