Chromium Code Reviews| Index: include/v8config.h |
| diff --git a/include/v8config.h b/include/v8config.h |
| index 631ad0d0479cb915a153a57778d98a83b21460ef..8661a0d0c79de33757785bce9bea04b9adab7c7f 100644 |
| --- a/include/v8config.h |
| +++ b/include/v8config.h |
| @@ -88,6 +88,7 @@ |
| // V8_OS_NETBSD - NetBSD |
| // V8_OS_OPENBSD - OpenBSD |
| // V8_OS_POSIX - POSIX compatible (mostly everything except Windows) |
| +// V8_OS_QNX - QNX Neutrino |
| // V8_OS_SOLARIS - Sun Solaris and OpenSolaris |
| // V8_OS_WIN - Microsoft Windows |
| @@ -127,6 +128,9 @@ |
| # define V8_OS_BSD 1 |
| # define V8_OS_OPENBSD 1 |
| # define V8_OS_POSIX 1 |
| +#elif defined(__QNXNTO__) |
| +# define V8_OS_POSIX 1 |
| +# define V8_OS_QNX 1 |
| #elif defined(_WIN32) |
| # define V8_OS_WIN 1 |
| #endif |