diff options
author | Cecil Sheng <cecil.sheng@hpe.com> | 2015-09-08 06:49:47 +0000 |
---|---|---|
committer | ydong10 <ydong10@Edk2> | 2015-09-08 06:49:47 +0000 |
commit | db3b92b40e17f4bf9393eea4a10f79d5165aeead (patch) | |
tree | 741811113e836416e6ea7501f509ba7ed8918ceb /MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf | |
parent | 2ba88dc554f074946189ec178b82ae2a9974247a (diff) | |
download | edk2-platforms-db3b92b40e17f4bf9393eea4a10f79d5165aeead.tar.xz |
MdeModulePkg: Regular expression protocol
Add driver to produce EFI_REGULAR_EXPRESSION_PROTOCOL. Based on
Oniguruma v5.9.6 (BSD 2-clause license), which provides full Unicode
support, and POSIX ERE and Perl regex syntaxes.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Cecil Sheng <cecil.sheng@hpe.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18411 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf')
-rw-r--r-- | MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf b/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf new file mode 100644 index 0000000000..7f1023eed0 --- /dev/null +++ b/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf @@ -0,0 +1,98 @@ +##
+# @file
+#
+# EFI_REGULAR_EXPRESSION_PROTOCOL Implementation
+#
+# Copyright (c) 2015, Hewlett Packard Enterprise Development, L.P.<BR>
+#
+# This program and the accompanying materials are licensed and made available
+# under the terms and conditions of the BSD License that accompanies this
+# distribution. The full text of the license may be found at
+# http://opensource.org/licenses/bsd-license.php.
+#
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
+# WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+##
+
+[Defines]
+ INF_VERSION = 0x00010018
+ BASE_NAME = RegularExpressionDxe
+ FILE_GUID = 3E197E9C-D8DC-42D3-89CE-B04FA9833756
+ MODULE_TYPE = UEFI_DRIVER
+ VERSION_STRING = 1.0
+ ENTRY_POINT = RegularExpressionDxeEntry
+
+[Sources]
+ RegularExpressionDxe.c
+ RegularExpressionDxe.h
+ Oniguruma/OnigurumaUefiPort.h
+ Oniguruma/OnigurumaUefiPort.c
+ Oniguruma/OnigurumaIntrinsics.c | MSFT
+
+# Upstream Oniguruma code
+ Oniguruma/oniguruma.h
+ Oniguruma/regcomp.c
+ Oniguruma/regenc.c
+ Oniguruma/regenc.h
+ Oniguruma/regerror.c
+ Oniguruma/regexec.c
+ Oniguruma/oniggnu.h
+ Oniguruma/reggnu.c
+ Oniguruma/regint.h
+ Oniguruma/regparse.c
+ Oniguruma/regparse.h
+ Oniguruma/regposerr.c
+ Oniguruma/onigposix.h
+ Oniguruma/regposix.c
+ Oniguruma/regsyntax.c
+ Oniguruma/regtrav.c
+ Oniguruma/regversion.c
+ Oniguruma/st.c
+ Oniguruma/st.h
+
+# Supported Character Encodings
+ Oniguruma/enc/ascii.c
+ Oniguruma/enc/unicode.c
+ Oniguruma/enc/utf16_le.c
+
+[Packages]
+ MdePkg/MdePkg.dec
+ MdeModulePkg/MdeModulePkg.dec
+
+[LibraryClasses]
+ UefiBootServicesTableLib
+ UefiDriverEntryPoint
+ MemoryAllocationLib
+ BaseMemoryLib
+ DebugLib
+
+[Guids]
+ gEfiRegexSyntaxTypePosixExtendedGuid
+ gEfiRegexSyntaxTypePerlGuid
+
+[Protocols]
+ gEfiRegularExpressionProtocolGuid
+
+[BuildOptions]
+ # Override MSFT build option to remove /Oi and /GL
+ MSFT:DEBUG_*_IA32_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2 /FIAutoGen.h /EHs-c- /GR- /GF /Gy /Zi /Gm
+ MSFT:RELEASE_*_IA32_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2 /FIAutoGen.h /EHs-c- /GR- /GF
+ MSFT:DEBUG_*_X64_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2s /FIAutoGen.h /EHs-c- /GR- /GF /Gy /Zi /Gm /X
+ MSFT:RELEASE_*_X64_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2s /FIAutoGen.h /EHs-c- /GR- /GF /Gy /X
+ MSFT:DEBUG_*_IPF_CC_FLAGS == /nologo /c /WX /GS- /W4 /EHs-c- /GR- /Gy /Os /FIAutoGen.h /QIPF_fr32 /Zi /X
+ MSFT:RELEASE_*_IPF_CC_FLAGS == /nologo /c /WX /GS- /W4 /EHs-c- /GR- /Gy /Os /FIAutoGen.h /QIPF_fr32 /X
+ INTEL:*_*_*_CC_FLAGS = /Oi-
+ GCC:*_*_*_CC_FLAGS = -fno-builtin
+
+ # Oniguruma: potentially uninitialized local variable used
+ MSFT:*_*_*_CC_FLAGS = /wd4701
+
+ # Oniguruma: intrinsic function not declared
+ MSFT:*_*_*_CC_FLAGS = /wd4164
+
+ # Oniguruma: old style declaration in st.c
+ MSFT:*_*_*_CC_FLAGS = /wd4131
+
+ # Oniguruma: 'type cast' : truncation from 'OnigUChar *' to 'unsigned int'
+ MSFT:*_*_*_CC_FLAGS = /wd4305 /wd4306
+
|