summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Dirolf <mike@10gen.com>2009-04-03 10:29:01 -0400
committerMike Dirolf <mike@10gen.com>2009-04-03 10:29:01 -0400
commitab9d016282cf75884fd627b519fea200175c66da (patch)
tree2a70beb580c1a2d2d13b4f6172458a1348ca2cea
parent39337b56449540034c1b46898b747dfc0132ebbd (diff)
downloadmongo-ab9d016282cf75884fd627b519fea200175c66da.tar.gz
fix build instructions for unittest
-rw-r--r--README15
1 files changed, 8 insertions, 7 deletions
diff --git a/README b/README
index 9500fe9e031..977d993d82f 100644
--- a/README
+++ b/README
@@ -28,10 +28,11 @@ BUILDING
$ cd ..
$ svn co http://svn.red-bean.com/unittest/trunk/ unittest
$ cd unittest
+ $ ./configure
$ make
$ sudo make install
-- Then use scons to build.
+- Then use scons to build.
If you want to build everything (mongod, mongo, tools, etc):
@@ -52,14 +53,14 @@ of GCC may not be happy.
NOTES
-Mongo uses the 10gen appserver and the Java Virtual Machine to execute
-user program code in the database. This feature is optional -- if you would
-like to run the database without these installed, run with the --nojni
-option. With --nojni specified, the db.eval() and $where features are no
+Mongo uses the 10gen appserver and the Java Virtual Machine to execute
+user program code in the database. This feature is optional -- if you would
+like to run the database without these installed, run with the --nojni
+option. With --nojni specified, the db.eval() and $where features are no
longer available. You may still need JVM libraries which are statically linked.
-Mongo uses memory mapped files. If built as a 32 bit executable, you will
-not be able to work with large (multi-gigabyte) databases. However, 32 bit
+Mongo uses memory mapped files. If built as a 32 bit executable, you will
+not be able to work with large (multi-gigabyte) databases. However, 32 bit
builds work fine with small development databases.
--- WINDOWS ---