summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2014-10-27 12:39:19 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2014-10-27 18:24:06 +0100
commit081e94a90d82359ababd12b4cda913467284a40d (patch)
treed276e7689283473f76f257472c171ac5b1422946
parentb105f6f74190c11dcb27d4c8cb8225b71b154580 (diff)
downloadnode-new-081e94a90d82359ababd12b4cda913467284a40d.tar.gz
doc: update compiler requirements in README
The latest V8 upgrade and the C++11-ification of the source code in src/ requires a recent compiler. Update the requirements in the README. Fixes node-forward/node#35. PR-URL: https://github.com/node-forward/node/pull/36 Reviewed-By: Fedor Indutny <fedor@indutny.com>
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0032c63c07..b157ddd3f2 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,8 @@ Evented I/O for V8 javascript.
Prerequisites (Unix only):
- * GCC 4.2 or newer
- * G++ 4.2 or newer
+ * `gcc` and `g++` 4.8 or newer, or
+ * `clang` and `clang++` 3.3 or newer
* Python 2.6 or 2.7
* GNU Make 3.81 or newer
* libexecinfo (FreeBSD and OpenBSD only)
@@ -32,7 +32,8 @@ make install
Prerequisites (Windows only):
* Python 2.6 or 2.7
- * Visual Studio 2010 or 2012
+ * Visual Studio 2013 for Windows Desktop, or
+ * Visual Studio Express 2013 for Windows Desktop
Windows: