View | Details | Raw Unified | Return to bug 980
Collapse All | Expand All

(-)a/build.py (-2 / +4 lines)
 Lines 10-17    Link Here 
10
10
11
def build_nsc():
11
def build_nsc():
12
    # XXX: Detect gcc major version(s) available to build supported stacks
12
    # XXX: Detect gcc major version(s) available to build supported stacks
13
    for kernel in ['linux-2.6.18', 'linux-2.6.26']:
13
    #  - we could just issue "python scons.py" and have NSC decide what it can
14
        run_command(['python', 'scons.py', kernel])
14
    #    build. This might be more sane?
15
    kernels = ['liblinux2.6.18.so', 'liblinux2.6.26.so']
16
    run_command(['python', 'scons.py'] + kernels)
15
    
17
    
16
18
17
def build_ns3(config):
19
def build_ns3(config):

Return to bug 980