Displaying 2 results from an estimated 2 matches for "asan_linux".
Did you mean:
msan_linux
2012 Apr 24
1
[LLVMdev] unwind.h, header file doesnt exist ??
I want to make svn access about compiler-rt. But, after running make
clang_linux, I got this error result saying about:
/home/user-compiler-rtllvm/projects/compiler-rt/lib/asan/asan_linux.cc:31:10:
fatal error:
'unwind.h' file not found
#include <unwind.h>
^
1 error generated.
make: ***
[/home/u-one/Downloads/llvm-3.0-ioc.install/bin/clang-ru/llvm/projects/compiler-rt/clang_linux/asan-i386/i386/SubDir.lib__asan/asan_linux.o]
Error 1
Also when I tri...
2013 Feb 27
2
[LLVMdev] [PATCH] [Embtk] [compiler-rt] ASAN: Add mips support
...f3
Stack partial redzone: f4
Stack after return: f5
Stack use after scope: f8
Global redzone: f9
Global init order: f6
Poisoned by user: f7
ASan internal: fe
==267== ABORTING
Signed-off-by: Abdoulaye Walsimou Gaye <awg at embtoolkit.org>
---
lib/asan/asan_linux.cc | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/lib/asan/asan_linux.cc b/lib/asan/asan_linux.cc
index 845493d..417ecad 100644
--- a/lib/asan/asan_linux.cc
+++ b/lib/asan/asan_linux.cc
@@ -88,6 +88,11 @@ void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp) {
stk_ptr = (uptr...