2011-08-20 00:20:52 +02:00
|
|
|
# Building on Debian etch on Amazon EC2
|
2010-07-13 17:45:22 -04:00
|
|
|
|
2009-12-01 17:40:18 -05:00
|
|
|
ami-f2f6159b
|
|
|
|
|
|
2011-08-20 00:20:52 +02:00
|
|
|
apt-get update
|
|
|
|
|
apt-get install git-core "g++-4.1"
|
|
|
|
|
apt-get install python-setuptools libpcre3-dev
|
|
|
|
|
apt-get install libboost-filesystem-dev libboost-dev libboost-thread-dev libboost-program-options-dev libboost-date-time-dev
|
2009-12-01 17:40:18 -05:00
|
|
|
|
2012-06-20 15:42:31 -04:00
|
|
|
See: http://dochub.mongodb.org/core/buildingspidermonkey
|
2009-12-01 17:40:18 -05:00
|
|
|
|
2011-08-20 00:20:52 +02:00
|
|
|
ln -s /usr/bin/g++-4.1 /usr/bin/g++
|
|
|
|
|
ln -s /usr/bin/gcc-4.1 /usr/bin/gcc
|
2009-12-01 17:40:18 -05:00
|
|
|
|
2011-08-20 00:20:52 +02:00
|
|
|
easy_install scons
|
2009-12-01 17:40:18 -05:00
|
|
|
|
2011-08-20 00:20:52 +02:00
|
|
|
git clone git://github.com/mongodb/mongo.git
|
|
|
|
|
cd mongo
|
2012-06-20 15:42:31 -04:00
|
|
|
scons all
|