summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorGeir Magnusson Jr <geir@pobox.com>2009-01-28 06:41:31 -0500
committerGeir Magnusson Jr <geir@pobox.com>2009-01-28 06:41:31 -0500
commit81d41617fd01c2852cd80e583e73dd234e2204aa (patch)
tree0b178b8e103197ad4e0ebf785511d26b3ee3ea79 /README
parentba0da242618cbbae88c3371c0a35659a3dcb669e (diff)
downloadmongo-81d41617fd01c2852cd80e583e73dd234e2204aa.tar.gz
README : small update, info on v8 and using scons
Still more work needs to be done
Diffstat (limited to 'README')
-rw-r--r--README23
1 files changed, 20 insertions, 3 deletions
diff --git a/README b/README
index d05ad458c2b..b0deb1c0bec 100644
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ Mongo Database README
DOCUMENTATION
-http://www.10gen.com/wiki/db
+http://mongodb.onconfluence.com/display/DOCS/Mongo+Documentation
ORGANIZATION
@@ -12,8 +12,25 @@ util/ : util classes
BUILDING
-cd db
-make clean && make
+- Pre-requisite for 'mongo', the MongoDB interactive shell:
+
+ The shell requires the library ../v8/libv8. There is no v8 binary distro, so
+ we recommend you install and build V8 as follows:
+
+ $ cd ..
+ $ svn checkout http://v8.googlecode.com/svn/trunk/ v8
+ $ cd v8
+ $ scons libv8.a
+
+- Then use scons to build.
+
+ If you want to build everything (mongod, mongo, tools, etc):
+
+ $ scons .
+
+ If you only want to build the database:
+
+ $ scons
RUNNING