Displaying 3 results from an estimated 3 matches for "llvmsupportregex".
2009 Aug 24
1
[LLVMdev] configure/cmake help :)
...;ll replicate
> them on the cmake build.
Ok. I'm trying to decide where the cleanest place to slot the lib in
so it can conditionally be part of Support. I'm thinking of something
like putting it in lib/Support/Regex, which would only be part of the
build if needed, and would compile to LLVMSupportRegex which
llvm-config would know to add to the link line. Chris, does this seem
ok?
- Daniel
2009 Aug 24
0
[LLVMdev] configure/cmake help :)
Chris Lattner <clattner at apple.com> writes:
> 1. Config/Alloca.h is now dead. Once configure and cmake support is
> removed, we can zap it. Can someone remove the cmake/autoconf stuff
> that pokes at Config/Alloca.h?
AFAIK, there is nothing specific for include/llvm/Config/alloca.h on the
cmake build and it works fine after removing the file (checked on Linux
x86_64).
2009 Aug 23
2
[LLVMdev] configure/cmake help :)
Hi All,
I have two small things that I would appreciate some help with:
1. Config/Alloca.h is now dead. Once configure and cmake support is
removed, we can zap it. Can someone remove the cmake/autoconf stuff
that pokes at Config/Alloca.h?
2. Daniel's regex email. I think the right answer is to just
autodetect whether regcomp/regexec etc are available (his #2). Could
someone add