Displaying 2 results from an estimated 2 matches for "govost".
Did you mean:
govest
2015 Apr 05
4
[LLVMdev] Format of special case list for sanitizers
The documentation for the sanitizer special case list format[0] says,
> The meanining of * in regular expression for entity names is different - it is treated as in shell wildcarding.
In SpecialCaseList::parse, we see that this is just replacing * with .*:
// Replace * with .*
for (size_t pos = 0; (pos = Regexp.find("*", pos)) != std::string::npos;
pos +=
2012 Nov 14
2
[LLVMdev] Linking Clang with an optional external library
Hi,
I'd like to link Clang against the STP theorem prover. Since Clang is built by the LLVM build system, I hope this is the correct place to ask for advice.
The attached patch allows me to pass `configure` a --with-stp option and provide a path to the install prefix for STP. However, I am not familiar with autoconf, so I am not confident that my changes are the correct way to do this. I