Displaying 4 results from an estimated 4 matches for "r57663".
Did you mean:
57663
2008 Oct 23
0
[LLVMdev] Windows build broken?
...ks,
>
> 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 and TableGen/Record.cpp.
--
Oscar
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
2
[LLVMdev] Windows build broken?
...ws 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 build fordward:
Index: utils/TableGen/Record.cpp
===================================================================
--- utils/TableGen/Record.cpp (revision 58037)
+++ utils/Ta...
2008 Oct 23
0
[LLVMdev] Windows build broken?
...>>>
>>> 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 build fordward:
>
> Index: utils/TableGen/Record.cpp
> ===================================================================
>...