aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/SConstruct')
-rw-r--r--deps/v8/SConstruct13
1 files changed, 13 insertions, 0 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct
index 34d0efc5ff..b0d1344700 100644
--- a/deps/v8/SConstruct
+++ b/deps/v8/SConstruct
@@ -1601,4 +1601,17 @@ except:
pass
+def WarnAboutDeprecation():
+ print """
+#######################################################
+# WARNING: Building V8 with SCons is deprecated and #
+# will not work much longer. Please switch to using #
+# the GYP-based build now. Instructions are at #
+# http://code.google.com/p/v8/wiki/BuildingWithGYP. #
+#######################################################
+ """
+
+WarnAboutDeprecation()
+import atexit
+atexit.register(WarnAboutDeprecation)
Build()