summaryrefslogtreecommitdiff
path: root/Cryptlib/Makefile
diff options
context:
space:
mode:
authorSteve Langasek <steve.langasek@canonical.com>2016-09-19 15:36:20 -0700
committerSteve Langasek <steve.langasek@canonical.com>2016-09-19 15:36:20 -0700
commit6af9d134b88e5350ff71af67d0245831358f0c36 (patch)
tree6774d5cae8e1c24ce61f4e21f349bb91bc939d4a /Cryptlib/Makefile
parentc2f285a93f50edc40d6f2b8114e4f9af812398d0 (diff)
parent1442bd709766f1b82be26e93ad774f4a720d0a70 (diff)
downloadefi-boot-shim-6af9d134b88e5350ff71af67d0245831358f0c36.tar.gz
efi-boot-shim-6af9d134b88e5350ff71af67d0245831358f0c36.zip
New upstream release (fix-up commit)
Diffstat (limited to 'Cryptlib/Makefile')
-rw-r--r--Cryptlib/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Cryptlib/Makefile b/Cryptlib/Makefile
index a7f1dbbe..c9cf379a 100644
--- a/Cryptlib/Makefile
+++ b/Cryptlib/Makefile
@@ -1,13 +1,13 @@
EFI_INCLUDES = -IInclude -I$(EFI_INCLUDE) -I$(EFI_INCLUDE)/$(ARCH) -I$(EFI_INCLUDE)/protocol
-CFLAGS = -std=gnu89 -ggdb -O0 -I. -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar \
- -Wall $(EFI_INCLUDES) \
+CFLAGS = -ggdb -O0 -I. -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar \
+ -Wall $(EFI_INCLUDES) -std=gnu89 \
-ffreestanding -I$(shell $(CC) -print-file-name=include)
ifeq ($(ARCH),x86_64)
CFLAGS += -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args \
- -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI
+ -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS
endif
ifeq ($(ARCH),ia32)
CFLAGS += -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m32
@@ -19,6 +19,7 @@ OBJS = Hash/CryptMd4.o \
Hash/CryptMd5.o \
Hash/CryptSha1.o \
Hash/CryptSha256.o \
+ Hash/CryptSha512.o \
Hmac/CryptHmacMd5.o \
Hmac/CryptHmacSha1.o \
Cipher/CryptAes.o \
@@ -30,6 +31,7 @@ OBJS = Hash/CryptMd4.o \
Pk/CryptPkcs7SignNull.o \
Pk/CryptPkcs7Verify.o \
Pk/CryptDhNull.o \
+ Pk/CryptTs.o \
Pk/CryptX509.o \
Pk/CryptAuthenticode.o \
Pem/CryptPem.o \