search for: expanded_compon

Displaying 4 results from an estimated 4 matches for "expanded_compon".

2012 Jul 07
1
[LLVMdev] Problem in LLVM CMake modules
...es but a list of > required components. This patch *seems* to fix the problem (cmake regexps are not thoroughly documented): --- a/cmake/modules/LLVM-Config.cmake +++ b/cmake/modules/LLVM-Config.cmake @@ -160,7 +160,7 @@ function(explicit_map_components_to_libraries out_libs) list(REVERSE expanded_components) list(APPEND processed ${lib}) # Find the maximum index that doesn't have to be re-processed: - while(NOT "${expanded_components}" MATCHES "^${processed}.*" ) + while(NOT "${expanded_components}" MATCHES "^${processed}(;)|(.*)")...
2012 Aug 03
1
[LLVMdev] Problem in LLVM CMake modules
...oblem (cmake regexps are not thoroughly > />/ documented): > />/ > />/ --- a/cmake/modules/LLVM-Config.cmake > />/ +++ b/cmake/modules/LLVM-Config.cmake > />/ @@ -160,7 +160,7 @@ function(explicit_map_components_to_libraries out_libs) > />/ list(REVERSE expanded_components) > />/ list(APPEND processed ${lib}) > />/ # Find the maximum index that doesn't have to be re-processed: > />/ - while(NOT "${expanded_components}" MATCHES "^${processed}.*" ) > />/ + while(NOT "${expanded_components}&quo...
2012 Jul 07
0
[LLVMdev] Problem in LLVM CMake modules
Eli Gottlieb <eligottlieb at gmail.com> writes: > I'm trying to upgrade my LLVM bindings in Java from 2.9 to 3.1. To > do so, I regenerated the JNI bindings from fresh LLVM 3.1 headers, and > did a slight rewrite of my CMakeLists.txt file for building the C > code. > > Problem is, cmake no longer finishes at all. I receive the > following output, and then
2012 Jul 07
2
[LLVMdev] Problem in LLVM CMake modules
Hi again, I'm trying to upgrade my LLVM bindings in Java from 2.9 to 3.1. To do so, I regenerated the JNI bindings from fresh LLVM 3.1 headers, and did a slight rewrite of my CMakeLists.txt file for building the C code. Problem is, cmake no longer finishes at all. I receive the following output, and then it just runs forever (while still responding to a CTRL-C): > eli at