mirror of https://github.com/ArduPilot/ardupilot
waf: allow boards to tweak build
We define a function build() that can be overrode by Board subclasses.
This commit is contained in:
parent
1fe795f283
commit
8664c0344d
|
@ -99,6 +99,9 @@ class Board:
|
||||||
'-Wl,--gc-sections',
|
'-Wl,--gc-sections',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
def build(self, bld):
|
||||||
|
pass
|
||||||
|
|
||||||
Board = BoardMeta('Board', Board.__bases__, dict(Board.__dict__))
|
Board = BoardMeta('Board', Board.__bases__, dict(Board.__dict__))
|
||||||
|
|
||||||
def get_boards_names():
|
def get_boards_names():
|
||||||
|
|
Loading…
Reference in New Issue