Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(751)

Delta Between Two Patch Sets: src/mpi/wscript

Issue 109068: Ns-3 MPI Distributed Simulation (Closed)
Left Patch Set: Merge with ns-3.7 Created 14 years, 2 months ago
Right Patch Set: Fix valgrind and merged Created 14 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/mpi/waf ('k') | src/routing/global-routing/global-route-manager-impl.cc » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- 1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2 import sys 2 import sys
3 3
4 import Options 4 import Options
5 5
6 6
7 def build(bld): 7 def build(bld):
8 env = bld.env_of_name('default') 8 env = bld.env_of_name('default')
9 sim = bld.create_ns3_module('mpi', ['core']) 9 sim = bld.create_ns3_module('mpi', ['core', 'simulator'])
10 sim.source = [ 10 sim.source = [
11 'distributed-simulator-impl.cc', 11 'distributed-simulator-impl.cc',
12 'mpi-interface.cc', 12 'mpi-interface.cc',
13 ] 13 ]
14 14
15 headers = bld.new_task_gen('ns3header') 15 headers = bld.new_task_gen('ns3header')
16 headers.module = 'mpi' 16 headers.module = 'mpi'
17 headers.source = [ 17 headers.source = [
18 'distributed-simulator-impl.h', 18 'distributed-simulator-impl.h',
19 'mpi-interface.h', 19 'mpi-interface.h',
20 ] 20 ]
21 21
22 if env['ENABLE_MPI']: 22 if env['ENABLE_MPI']:
23 sim.uselib = 'MPI' 23 sim.uselib = 'MPI'
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b