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

Commit 0ede6ef3 authored by Stephen Hines's avatar Stephen Hines Committed by Android Git Automerger
Browse files

am 9c01c44b: Merge "Add -Wno-inline-asm to Clang flags."

* commit '9c01c44b':
  Add -Wno-inline-asm to Clang flags.
parents 3cc18a2c 9c01c44b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -29,6 +29,9 @@ LOCAL_CFLAGS := \
    $($(module)_cflags) \
    $($(module)_cflags_$(build_type)) \

LOCAL_CLANG_CFLAGS += \
    $(libbacktrace_common_clang_cflags) \

LOCAL_CONLYFLAGS += \
    $(common_conlyflags) \
    $($(module)_conlyflags) \
+4 −0
Original line number Diff line number Diff line
@@ -26,6 +26,10 @@ common_conlyflags := \
common_cppflags := \
	-std=gnu++11 \

# The latest clang (r230699) does not allow SP/PC to be declared in inline asm lists.
libbacktrace_common_clang_cflags += \
    -Wno-inline-asm

build_host := false
ifeq ($(HOST_OS),linux)
ifeq ($(HOST_ARCH),$(filter $(HOST_ARCH),x86 x86_64))