|
|
| 73 |
conf.report_optional_feature("python", "Python Bindings", False, |
73 |
conf.report_optional_feature("python", "Python Bindings", False, |
| 74 |
"disabled by user request") |
74 |
"disabled by user request") |
| 75 |
return |
75 |
return |
|
|
76 |
# Disable python in x86-64 static builds until bug 1253 is fixed |
| 77 |
if ((conf.env['ENABLE_STATIC_NS3']) or \ |
| 78 |
(conf.env['ENABLE_SHARED_AND_STATIC_NS3'])) and \ |
| 79 |
conf.env['CXX_NAME'] in ['gcc', 'icc'] and \ |
| 80 |
os.uname()[4] == 'x86_64': |
| 81 |
conf.report_optional_feature("python", "Python Bindings", False, |
| 82 |
"incompatible with x86_64 static build") |
| 83 |
return |
| 76 |
|
84 |
|
| 77 |
enabled_modules = list(conf.env['NS3_ENABLED_MODULES']) |
85 |
enabled_modules = list(conf.env['NS3_ENABLED_MODULES']) |
| 78 |
enabled_modules.sort() |
86 |
enabled_modules.sort() |