diff options
author | Ethan Chen <intervigil@gmail.com> | 2016-02-20 10:35:49 -0800 |
---|---|---|
committer | Arnav Gupta <dev@championswimmer.in> | 2016-02-20 10:57:33 -0800 |
commit | e6a79064252035b614ab5644a0f4f3a5c8d6e0c3 (patch) | |
tree | ea2061761d7ad5a0d9e5bfa760c0ce90810ecb46 | |
parent | e7d1294b4fba014f16e35b924584dcd8f81956e9 (diff) | |
download | external_boringssl-e6a79064252035b614ab5644a0f4f3a5c8d6e0c3.zip external_boringssl-e6a79064252035b614ab5644a0f4f3a5c8d6e0c3.tar.gz external_boringssl-e6a79064252035b614ab5644a0f4f3a5c8d6e0c3.tar.bz2 |
boringssl: Fix compilation
Change-Id: I232e8dacdeeb4fb35218b831f86633c9dc97e874
-rw-r--r-- | crypto-sources.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto-sources.mk b/crypto-sources.mk index 78194f2..6583ff2 100644 --- a/crypto-sources.mk +++ b/crypto-sources.mk @@ -1,7 +1,7 @@ LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/sources.mk include $(LOCAL_PATH)/sources.mk -LOCAL_CFLAGS += -I$(LOCAL_PATH)/src/include -I$(LOCAL_PATH)/src/crypto -Wno-unused-parameter +LOCAL_CFLAGS += -I$(LOCAL_PATH)/src/include -I$(LOCAL_PATH)/src/crypto -Wno-unused-parameter -std=gnu11 # Do not add in the architecture-specific files if we don't want to build assembly ifeq (,$(filter -DOPENSSL_NO_ASM,$(LOCAL_CFLAGS))) LOCAL_SRC_FILES_x86 = $(linux_x86_sources) |