Skip to content

Instantly share code, notes, and snippets.

@tjfontaine
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjfontaine/9162923 to your computer and use it in GitHub Desktop.
Save tjfontaine/9162923 to your computer and use it in GitHub Desktop.
# 1 "/usr/include/sys/ucontext.h" 1 3 4
# 36 "/usr/include/sys/ucontext.h" 3 4
# 1 "/usr/include/sys/regset.h" 1 3 4
# 39 "/usr/include/sys/regset.h" 3 4
extern "C" {
# 158 "/usr/include/sys/regset.h" 3 4
typedef int greg_t;
# 168 "/usr/include/sys/regset.h" 3 4
typedef greg_t gregset_t[19];
# 189 "/usr/include/sys/regset.h" 3 4
struct fnsave_state {
uint16_t f_fcw;
uint16_t __f_ign0;
uint16_t f_fsw;
uint16_t __f_ign1;
uint16_t f_ftw;
uint16_t __f_ign2;
uint32_t f_eip;
uint16_t f_cs;
uint16_t f_fop;
uint32_t f_dp;
uint16_t f_ds;
uint16_t __f_ign3;
union {
uint16_t fpr_16[5];
} f_st[8];
};
#elif (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE_EXTENDED - 0 == 1)
#define _XPG4_2
#define _XPG4
#define _XPG3
/* X/Open CAE Specification, Issue 5 */
#elif (_XOPEN_SOURCE - 0 == 500)
#define _XPG5
#define _XPG4_2
#define _XPG4
#define _XPG3
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 199506L
/* Open Group Technical Standard , Issue 6 */
#elif (_XOPEN_SOURCE - 0 == 600) || (_POSIX_C_SOURCE - 0 == 200112L)
#define _XPG6
#define _XPG5
#define _XPG4_2
#define _XPG4
#define _XPG3
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200112L
#undef _XOPEN_SOURCE
#define _XOPEN_SOURCE 600
#endif
In file included from ../deps/v8/src/parser.h:36:0,
from ../deps/v8/src/api.cc:54:
../deps/v8/src/preparser.h:619:21: error: expected nested-name-specifier before numeric constant
../deps/v8/src/preparser.h:619:21: error: expected '>' before numeric constant
../deps/v8/src/preparser.h:620:38: error: 'function_state' was not declared in this scope
../deps/v8/src/preparser.h:620:54: error: expected primary-expression before 'void'
../deps/v8/src/preparser.h:620:59: error: variable or field 'SetUpFunctionState' declared void
../deps/v8/src/preparser.h:621:21: error: expected nested-name-specifier before numeric constant
../deps/v8/src/preparser.h:621:21: error: expected '>' before numeric constant
../deps/v8/src/preparser.h:622:41: error: 'function_state' was not declared in this scope
../deps/v8/src/preparser.h:622:55: error: variable or field 'TearDownFunctionState' declared void
In file included from ../deps/v8/src/api.cc:54:0:
../deps/v8/src/parser.h:429:21: error: expected nested-name-specifier before numeric constant
../deps/v8/src/parser.h:429:21: error: expected '>' before numeric constant
../deps/v8/src/parser.h:430:38: error: 'function_state' was not declared in this scope
../deps/v8/src/parser.h:430:58: error: expected primary-expression before '*' token
../deps/v8/src/parser.h:430:60: error: 'zone' was not declared in this scope
../deps/v8/src/parser.h:430:64: error: variable or field 'SetUpFunctionState' declared void
../deps/v8/src/parser.h:437:21: error: expected nested-name-specifier before numeric constant
../deps/v8/src/parser.h:437:21: error: expected '>' before numeric constant
../deps/v8/src/parser.h:438:41: error: 'function_state' was not declared in this scope
../deps/v8/src/parser.h:438:55: error: variable or field 'TearDownFunctionState' declared void
In file included from ../deps/v8/src/parser.h:36:0,
from ../deps/v8/src/api.cc:54:
../deps/v8/src/preparser.h: In constructor 'v8::internal::ParserBase<Traits>::FunctionState::FunctionState(v8::internal::ParserBase<Traits>::FunctionState**, typename Traits::Type::Scope**, typename Traits::Type::Scope*, typename Traits::Type::Zone*) [with Traits = v8::internal::PreParserTraits, v8::internal::ParserBase<Traits>::FunctionState = v8::internal::ParserBase<v8::internal::PreParserTraits>::FunctionState, typename Traits::Type::Scope = v8::internal::PreParserScope, typename Traits::Type::Zone = void]':
../deps/v8/src/preparser.h:722:68: instantiated from here
../deps/v8/src/preparser.h:905:3: error: 'SetUpFunctionState' is not a member of 'v8::internal::PreParserTraits'
../deps/v8/src/preparser.h: In destructor 'v8::internal::ParserBase<Traits>::FunctionState::~FunctionState() [with Traits = v8::internal::PreParserTraits]':
../deps/v8/src/preparser.h:722:68: instantiated from here
../deps/v8/src/preparser.h:913:3: error: 'TearDownFunctionState' is not a member of 'v8::internal::PreParserTraits'
make[1]: *** [/root/tj-node/out/Release/obj.target/v8_base.ia32/deps/v8/src/api.o] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment