Displaying 3 results from an estimated 3 matches for "llvm_path_gv".
2009 Jan 20
1
[LLVMdev] [PATCH] correct argument order of gv when viewgraph is called
...riate.
thanks,
Patrick.
-------------- next part --------------
Index: lib/Support/GraphWriter.cpp
===================================================================
--- lib/Support/GraphWriter.cpp (revision 62576)
+++ lib/Support/GraphWriter.cpp (working copy)
@@ -57,8 +57,8 @@
sys::Path gv(LLVM_PATH_GV);
args.clear();
args.push_back(gv.c_str());
- args.push_back("--spartan");
args.push_back(PSFilename.c_str());
+ args.push_back("-spartan");
args.push_back(0);
ErrMsg.clear();
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a
/lot/ of errors like this (strangely I hit none of these in check-llvm,
only in check-clang):
Any ideas?
==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes
at address 0x631000014800
==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...LEPATH=/usr/bin/circo
//Path to a program.
LLVM_PATH_DOT:FILEPATH=/usr/bin/dot
//Path to a program.
LLVM_PATH_DOTTY:FILEPATH=/usr/bin/dotty
//Path to a program.
LLVM_PATH_FDP:FILEPATH=/usr/bin/fdp
//Path to a program.
LLVM_PATH_GRAPHVIZ:FILEPATH=LLVM_PATH_GRAPHVIZ-NOTFOUND
//Path to a program.
LLVM_PATH_GV:FILEPATH=/usr/bin/gv
//Path to a program.
LLVM_PATH_NEATO:FILEPATH=/usr/bin/neato
//Path to a program.
LLVM_PATH_TWOPI:FILEPATH=/usr/bin/twopi
//Path to a program.
LLVM_PATH_XDOT:FILEPATH=LLVM_PATH_XDOT-NOTFOUND
//Build LLVM with Polly
LLVM_POLLY_BUILD:BOOL=OFF
//Statically link Polly into too...