Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c83d3a3b authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Disable clang optimization that has segmentation fault.

When compiling for aosp_fugu-userdebug, clang aborted in pass:

  Running pass 'Function Pass Manager' on module 'system/core/libmincrypt/p256_ec.c'.
  Running pass 'X86 DAG->DAG Instruction Selection' on function '@felem_square'

BUG: 18790528
Change-Id: I416c07cae4c1a9743655bc45bd33c10a5cc9b41f
parent 8641daee
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -6,6 +6,8 @@ include $(CLEAR_VARS)
LOCAL_MODULE := libmincrypt
LOCAL_SRC_FILES := dsa_sig.c p256.c p256_ec.c p256_ecdsa.c rsa.c sha.c sha256.c
LOCAL_CFLAGS := -Wall -Werror
# Clang's slp-vectorize phase has segmentation fault when compiling p256_ec.c.
LOCAL_CLANG_CFLAGS += -fno-slp-vectorize
include $(BUILD_STATIC_LIBRARY)

include $(CLEAR_VARS)