build: (fixes #15) Fix build erroneous order constraint warnings

Patch based on original suggestion from ita1024 on updated constraints
This commit is contained in:
Tom Henderson
2019-04-21 11:52:53 -07:00
parent b823749325
commit 5396fc911e
4 changed files with 9 additions and 70 deletions

View File

@@ -212,7 +212,7 @@ def ns3_python_bindings(bld):
bindgen = bld(features='command', source=source, target=target, command=argv)
bindgen.env['FEATURES'] = ','.join(features)
bindgen.dep_vars = ['FEATURES', "GCC_RTTI_ABI_COMPLETE"]
bindgen.before = 'cxx'
bindgen.before = ['cxxprogram', 'cxxshlib', 'cxxstlib']
bindgen.after = 'gen_ns3_module_header'
bindgen.name = "pybindgen(ns3 module %s)" % module
bindgen.install_path = None