Displaying 4 results from an estimated 4 matches for "tablegenstep".
2008 Oct 23
4
[LLVMdev] Windows build broken?
Folks,
It appears the Windows build has regressed over the past week.
The build fails quite early (during the "Performing TableGenStep"
phase).
Any help/pointers would be appreciated.
Thanks,
snaroff (a clang developer)
2008 Oct 23
0
[LLVMdev] Windows build broken?
steve naroff <snaroff at apple.com> writes:
> Folks,
>
> It appears the Windows build has regressed over the past week.
>
> The build fails quite early (during the "Performing TableGenStep"
> phase).
>
> Any help/pointers would be appreciated.
It breaks for me because the usage of INT64_C, which was introduced on
r57663 and 57668.
Some googling around indicates that, on Windows, one should
#define INT64_C(val) val##i64
It is present on TableGen/DAGISelEmitter.cpp...
2008 Oct 23
2
[LLVMdev] Windows build broken?
Óscar Fuentes <ofv at wanadoo.es> writes:
>> It appears the Windows build has regressed over the past week.
>>
>> The build fails quite early (during the "Performing TableGenStep"
>> phase).
>>
>> Any help/pointers would be appreciated.
>
> It breaks for me because the usage of INT64_C, which was introduced on
> r57663 and 57668.
>
> Some googling around indicates that, on Windows, one should
r/Windows/MSVC++
This patch brings the b...
2008 Oct 23
0
[LLVMdev] Windows build broken?
...you do a svn update and see if it
works ?
-Argiris
Óscar Fuentes wrote:
> Óscar Fuentes <ofv at wanadoo.es> writes:
>
>
>>> It appears the Windows build has regressed over the past week.
>>>
>>> The build fails quite early (during the "Performing TableGenStep"
>>> phase).
>>>
>>> Any help/pointers would be appreciated.
>>>
>> It breaks for me because the usage of INT64_C, which was introduced on
>> r57663 and 57668.
>>
>> Some googling around indicates that, on Windows, one should...