mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
4ce35a3c60
Fixed up: LineageOS-16.0/android_packages_apps_Backgrounds/308977.patch LineageOS-16.0/android_packages_apps_Settings/0001-Captive_Portal_Toggle.patch LineageOS-17.1/android_packages_apps_Settings/0001-Captive_Portal_Toggle.patch LineageOS-18.1/android_packages_apps_Settings/0001-Captive_Portal_Toggle.patch Must review again: LineageOS-14.1/android_packages_apps_PackageInstaller/64d8b44.patch Signed-off-by: Tad <tad@spotco.us>
27 lines
729 B
Diff
27 lines
729 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Tue, 13 Sep 2016 22:05:56 -0400
|
|
Subject: [PATCH] use -fwrapv when signed overflow checking is off
|
|
|
|
---
|
|
core/config_sanitizers.mk | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/core/config_sanitizers.mk b/core/config_sanitizers.mk
|
|
index d3adee5ae2..83988bb603 100644
|
|
--- a/core/config_sanitizers.mk
|
|
+++ b/core/config_sanitizers.mk
|
|
@@ -435,3 +435,9 @@ ifneq ($(findstring fsanitize,$(my_cflags)),)
|
|
endif
|
|
endif
|
|
endif
|
|
+
|
|
+ifeq ($(filter signed-integer-overflow integer undefined,$(my_sanitize)),)
|
|
+ ifeq ($(filter -ftrapv,$(my_cflags)),)
|
|
+ my_cflags += -fwrapv
|
|
+ endif
|
|
+endif
|
|
--
|
|
2.31.1
|
|
|