Displaying 3 results from an estimated 3 matches for "find_lib_and_headers".
2013 Sep 26
0
[LLVMdev] [Polly] Update lit config for Cloog
...IB_FOUND@"
> config.cloog_found = "@CLOOG_FOUND@"
I think the problem is:
lit.site.cfg.in:config.cloog_found = "@CLOOG_FOUND@"
it should be lower case letters as in:
Makefile.config.in:CLOOG_FOUND := @cloog_found@
because when we detect cloog, we use the function in find_lib_and_headers.m4
find_lib_and_headers([cloog], [cloog/isl/cloog.h], [cloog-isl])
./autoconf/m4/find_lib_and_headers.m4: AC_SUBST([$1_found],["yes"])
and this will be instantiated as AC_SUBST([cloog_found],["yes"]).
A patch that changes lit.site.cfg.in
- config.enable_gpgpu_codegen = &...
2013 Sep 27
1
[LLVMdev] [Polly] Update lit config for Cloog
...= "@CLOOG_FOUND@"
>
>I think the problem is:
>
>lit.site.cfg.in:config.cloog_found = "@CLOOG_FOUND@"
>
>it should be lower case letters as in:
>
>Makefile.config.in:CLOOG_FOUND := @cloog_found@
>
>because when we detect cloog, we use the function in find_lib_and_headers.m4
>
>find_lib_and_headers([cloog], [cloog/isl/cloog.h], [cloog-isl])
>
>./autoconf/m4/find_lib_and_headers.m4: AC_SUBST([$1_found],["yes"])
>
>and this will be instantiated as AC_SUBST([cloog_found],["yes"]).
>
>A patch that changes lit.site.cfg.in
&g...
2013 Sep 02
2
[LLVMdev] [Polly] Update lit config for Cloog
At 2013-09-03 00:12:56,"Tobias Grosser" <tobias at grosser.es> wrote:
>On 09/02/2013 07:44 AM, Star Tan wrote:
>> At 2013-09-02 16:22:28,"Tobias Grosser" <tobias at grosser.es> wrote:
>>
>>> On 09/01/2013 08:02 PM, Star Tan wrote:
>>>> Hi all,
>>>>
>>>>
>>>> Attached patch file to update lit