Hi,

Strange.

>> From testing, other 64-bit code does work:

Are you building 32-bit or 64-bit version of V8?

If you are building 32-bit version of V8 please try

$ gcc -o test test.c -Wall -m32

to check that gcc on MINIX provides 64-bit integers even when compiling
32-bit code.

--
Vyacheslav Egorov


On Tue, Jul 6, 2010 at 7:01 PM, pikpik <[email protected]> wrote:

> Hi,
>
> I'm building with SCons, and I'm getting errors about "int64_t" and
> "uint64_t," among other things.
>
> $ scons
>
> ...later...
>
> In file included from src/v8.b:55,
>                      from src/accessors.cc:28:
> src/../include/v8.h:938: error:  'int64_t' does not name a type
> src/../include/v8.h:1303: error:  'int64_t' does not name a type
>
> ...varied errors (int64_t, uint64_t, start_time_, and stop_time_) from
> other files...
>
>
> From testing, other 64-bit code does work:
>
> File: test.c, code: #include <stdint.h> \n int main() { int64_t bla;
> bla = 10; return 0; }
>
> $ gcc -o test test.c -Wall  (Nothing returned.)
> $ ./test
> $ _ (Nothing returned.)
>
> Is there any way of solving this problem for V8?
>
> Thank you,
> pikpik
>
> --
> v8-users mailing list
> [email protected]
> http://groups.google.com/group/v8-users
>

-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to