mirror of https://github.com/ArduPilot/ardupilot
Tools: ardupilotwaf: build SITL binaries for x86_64-linux-gnu and arm-linux-gnueabihf
This commit is contained in:
parent
1a81da4a26
commit
780e0e2eba
|
@ -743,3 +743,13 @@ class rst_zynq(linux):
|
|||
CONFIG_HAL_BOARD_SUBTYPE = 'HAL_BOARD_SUBTYPE_LINUX_RST_ZYNQ',
|
||||
)
|
||||
|
||||
class SITL_static(sitl):
|
||||
def configure_env(self, cfg, env):
|
||||
super(SITL_static, self).configure_env(cfg, env)
|
||||
cfg.env.STATIC_LINKING = True
|
||||
|
||||
class SITL_x86_64_linux_gnu(SITL_static):
|
||||
toolchain = 'x86_64-linux-gnu'
|
||||
|
||||
class SITL_arm_linux_gnueabihf(SITL_static):
|
||||
toolchain = 'arm-linux-gnueabihf'
|
||||
|
|
Loading…
Reference in New Issue