waf: boards: load toolchain and compiler before configuring env

This commit is contained in:
Francisco Ferreira 2016-03-15 17:07:37 +00:00 committed by Lucas De Marchi
parent da2a71a3de
commit 3b3d59efd1
1 changed files with 3 additions and 3 deletions

View File

@ -26,6 +26,9 @@ class Board:
abstract = True
def configure(self, cfg):
cfg.load('toolchain')
cfg.load('compiler_cxx compiler_c')
env = waflib.ConfigSet.ConfigSet()
self.configure_env(cfg, env)
@ -46,9 +49,6 @@ class Board:
else:
cfg.env[k] = val
cfg.load('toolchain')
cfg.load('compiler_cxx compiler_c')
def configure_env(self, cfg, env):
# Use a dictionary instead of the convetional list for definitions to
# make easy to override them. Convert back to list before consumption.