mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
The toolchain_* files are target OS specific so they were moved to the target OS subdir. The gcc_version.* files are only cleared once per make instantiation so a build that creates multiple HW targets will try to link with an incompatible .o file (i.e. x86 build linking ARM .o). I created posix-arm as a separate target to fix this problem. Signed-off-by: Mark Charlebois <charlebm@gmail.com>
12 lines
210 B
Makefile
12 lines
210 B
Makefile
#
|
|
# Board-specific definitions for the POSIX port of PX4
|
|
#
|
|
|
|
#
|
|
# Configure the toolchain
|
|
#
|
|
CONFIG_ARCH = CORTEXA8
|
|
CONFIG_BOARD = EAGLE
|
|
|
|
include $(PX4_MK_DIR)/posix-arm/toolchain_gnu-arm-linux-gnueabihf.mk
|