Closed
Description
I'm trying to compile nodejs v4.1.0 with gcc version 4.8 for arm v7 platform. but I've got an error:
../deps/v8/src/base/lazy-instance.h:96:10: error: field 'T' has incomplete type
struct V8_ALIGNAS(T, 16) StorageType {
^
V8_ALIGNAS is defined in deps/v8/include/v8config.h
...
#if V8_HAS_CXX11_ALIGNAS
# define V8_ALIGNAS(type, alignment) alignas(type)
#elif V8_HAS_ATTRIBUTE_ALIGNED
...