File tree Expand file tree Collapse file tree 1 file changed +22
-7
lines changed Expand file tree Collapse file tree 1 file changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ Systems (ICPADS) 2017.
25
25
# Requirement
26
26
* A C++ compiler: supports C++ 11
27
27
* MPI implementation: supports MPI 3.0
28
- * Automake tools
29
28
30
29
# Getting Started
31
- * git clone https://github.com/TauferLab/Mimir.git
32
- * cd Mimir
33
- * autoreconf -i
34
- * ./configure --perfix=/mimir/install/directory
35
- * make
36
- * make install
30
+ Mimir can be build and install from release tarball as follow.
31
+
32
+ ``` sh
33
+ ./configure
34
+ make
35
+ make install
36
+ ```
37
37
38
38
# Programming with Mimir
39
39
Mimir implements the MapReduce programming model. Here we use wordcount as an
@@ -179,3 +179,18 @@ progress pushing during nonblocking communication
179
179
* MIMIR_OUTPUT_TRACE (default: off) --- output trace file
180
180
* MIMIR_STAT_FILE (default: NULL) --- stat file name
181
181
* MIMIR_DBG_ALL (default: off) --- enable/disable debug message
182
+
183
+ # Notes for Developers
184
+
185
+ For developers working on the project, please follow these steps to
186
+ build the library.
187
+
188
+ ``` sh
189
+ git clone https://github.com/TauferLab/Mimir.git
190
+ cd Mimir
191
+
192
+ ./autogen.sh
193
+ ./configure
194
+ make
195
+ make install
196
+ ```
You can’t perform that action at this time.
0 commit comments