
- add patch debug messages - update patches - remove lld - replace __ptrace_request with int on musl - fix bug 22661 - include license
32 lines
698 B
Diff
32 lines
698 B
Diff
From 146c027efdd839b7173a922a43c4ab7003bdc160 Mon Sep 17 00:00:00 2001
|
|
From: Andrea Brancaleoni <miwaxe@gmail.com>
|
|
Date: Tue, 8 Sep 2015 22:44:22 +0200
|
|
Subject: [PATCH 1/2] disable sanitizers
|
|
|
|
---
|
|
lib/Makefile.mk | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/lib/Makefile.mk b/lib/Makefile.mk
|
|
index 7eb6489..c0efac3 100644
|
|
--- a/lib/Makefile.mk
|
|
+++ b/lib/Makefile.mk
|
|
@@ -10,10 +10,10 @@
|
|
SubDirs :=
|
|
|
|
# Add submodules.
|
|
-SubDirs += asan
|
|
+# SubDirs += asan
|
|
SubDirs += builtins
|
|
SubDirs += interception
|
|
-SubDirs += lsan
|
|
+# SubDirs += lsan
|
|
SubDirs += profile
|
|
-SubDirs += sanitizer_common
|
|
-SubDirs += ubsan
|
|
+# SubDirs += sanitizer_common
|
|
+# SubDirs += ubsan
|
|
--
|
|
2.5.1
|
|
|