skale-me / node-parquet

NodeJS module to access apache parquet format files
Apache License 2.0
57 stars 11 forks source link

fatal error: 'cstdint' file not found #28

Closed filipefox closed 7 years ago

filipefox commented 7 years ago

Hi,

I'm trying to install node-parquet, using "npm install node-parquet" on my macOS Sierra. I installed all the dependencies, but i'm getting this error:

[100%] Built target parquet_static

node-parquet@0.2.4 install /Volumes/Data/Desenvolvimento/repositories/web/parquet_reader/node_modules/node-parquet node-gyp rebuild

CXX(target) Release/obj.target/parquet/src/parquet_binding.o In file included from ../src/parquet_binding.cc:3: In file included from ../src/parquet_reader.h:8: In file included from ../deps/parquet-cpp/src/parquet/api/reader.h:22: ../deps/parquet-cpp/src/parquet/column/reader.h:22:10: fatal error: 'cstdint' file not found

include

     ^

1 error generated. make: *** [Release/obj.target/parquet/src/parquet_binding.o] Error 1 gyp ERR! build error

mvertes commented 7 years ago

cstdint refers to a missing C++ standard library header. It seems that your C++ toolchain is not properly installed.

filipefox commented 7 years ago

Thanks, i will try to solve this.