search for: lib__asan

Displaying 5 results from an estimated 5 matches for "lib__asan".

2012 Apr 24
1
[LLVMdev] unwind.h, header file doesnt exist ??
...r-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 tried, by searching google, using the following syntax, google doesnt find me about concerning file. unwind.h site:http://llvm.org/svn/llvm-project/compiler-rt/trunk/ Regards ..
2012 Jul 15
3
[LLVMdev] Compiling llvm and Clang on Linux
...tvanit/LLVM/llvm/projects/compiler-rt/lib/asan/asan_new_delete.cc:19:10: fatal error: 'new' file not found #include <new> ^ 1 error generated. make[5]: *** [/gpfs/haifa-p4/00/pincette/sitvanit/LLVM/build/tools/clang/runtime/compiler-rt/clang_linux/asan-i386/i386/SubDir.lib__asan/asan_new_delete.o] Error 1 make[5]: Leaving directory `/gpfs/haifa-p4/00/pincette/sitvanit/LLVM/llvm/projects/compiler-rt' make[4]: *** [BuildRuntimeLibraries] Error 2 make[4]: Leaving directory `/gpfs/haifa-p4/00/pincette/sitvanit/LLVM/build/tools/clang/runtime/compiler-rt' make[3]: *** [...
2012 Jul 15
0
[LLVMdev] Compiling llvm and Clang on Linux
...rt/lib/asan/asan_new_delete.cc:19:10: > fatal error: > 'new' file not found > #include <new> > ^ > 1 error generated. > make[5]: *** > [/gpfs/haifa-p4/00/pincette/sitvanit/LLVM/build/tools/clang/runtime/compiler-rt/clang_linux/asan-i386/i386/SubDir.lib__asan/asan_new_delete.o] > Error 1 > make[5]: Leaving directory > `/gpfs/haifa-p4/00/pincette/sitvanit/LLVM/llvm/projects/compiler-rt' > make[4]: *** [BuildRuntimeLibraries] Error 2 > make[4]: Leaving directory > `/gpfs/haifa-p4/00/pincette/sitvanit/LLVM/build/tools/clang/runtime/c...
2012 Jul 15
0
[LLVMdev] Compiling llvm and Clang on Linux
PS: Do you actually have gcc-4.4 installed and in your path? What do the commands gcc44 -v and g++44 -v output? On 15/07/12 10:59, Duncan Sands wrote: > Hi Sitvanit, > >> I tried >> >> CC=gcc44 CXX=g++44 ../llvm/configure >> >> and got >> >> CC=gcc44: Command not found >> >> So the syntax is indeed as wriiten in the help. >
2012 Jul 15
2
[LLVMdev] Compiling llvm and Clang on Linux
Hi Sitvanit, > I tried > > CC=gcc44 CXX=g++44 ../llvm/configure > > and got > > CC=gcc44: Command not found > > So the syntax is indeed as wriiten in the help. actually, no, this just means that you are using a shell that doesn't support this syntax. What shell are you using? Try export CC=gcc44 export CXX=g++44 ../llvm/configure Ciao, Duncan. >