diff --git a/Android.bp b/Android.bp index 4ab69df..11725a6 100644 --- a/Android.bp +++ b/Android.bp @@ -1,10 +1,10 @@ common_cflags = [ + "-pipe", "-O3", //"-flto", "-fPIC", "-fvisibility=hidden", //"-fno-plt", - "-pipe", "-Wall", "-Wextra", "-Wcast-align", diff --git a/Makefile b/Makefile index e5551c5..0f9a797 100644 --- a/Makefile +++ b/Makefile @@ -18,9 +18,9 @@ $(shell $(CC) $(if $(filter clang,$(CC)),-Werror=unknown-warning-option) -E $1 - endef CPPFLAGS := $(CPPFLAGS) -D_GNU_SOURCE -I include -SHARED_FLAGS := -O3 -flto -fPIC -fvisibility=hidden -fno-plt \ - $(call safe_flag,-fstack-clash-protection) -fstack-protector-strong -pipe -Wall -Wextra \ - $(call safe_flag,-Wcast-align=strict,-Wcast-align) -Wcast-qual -Wwrite-strings +SHARED_FLAGS := -pipe -O3 -flto -fPIC -fvisibility=hidden -fno-plt \ + $(call safe_flag,-fstack-clash-protection) -fstack-protector-strong \ + -Wall -Wextra $(call safe_flag,-Wcast-align=strict,-Wcast-align) -Wcast-qual -Wwrite-strings ifeq ($(CONFIG_WERROR),true) SHARED_FLAGS += -Werror