cd15fc7ba8
clang is the default compiler since Android nougat Test: mma & verified it´s still build with clang Change-Id: I34adaeef2f6558a09f26027271222bad94780507 Signed-off-by: Lennart Wieboldt <lennart.1997@gmx.de>
12 lines
300 B
Makefile
12 lines
300 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := sdcard.cpp fuse.cpp
|
|
LOCAL_MODULE := sdcard
|
|
LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror
|
|
LOCAL_SHARED_LIBRARIES := libbase libcutils libminijail libpackagelistparser
|
|
|
|
LOCAL_SANITIZE := integer
|
|
|
|
include $(BUILD_EXECUTABLE)
|