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

Reply via email to