mirror of https://github.com/ArduPilot/ardupilot
AP_Filesystem: enable posix compat functions if romfs compiled in
vast numbers of these otherwise: /home/pbarker/gcc/gcc-arm-none-eabi-10-2020-q4-major/bin/../lib/gcc/arm-none-eabi/10.2.1/../../../../arm-none-eabi/bin/ld: lib/libArduCopter_libs.a(liolib.c.0.o): in function `read_all': liolib.c:(.text.read_all+0x20): undefined reference to `apfs_fread' /home/pbarker/gcc/gcc-arm-none-eabi-10-2020-q4-major/bin/../lib/gcc/arm-none-eabi/10.2.1/../../../../arm-none-eabi/bin/ld: lib/libArduCopter_libs.a(liolib.c.0.o): in function `read_line': liolib.c:(.text.read_line+0x24): undefined reference to `apfs_getc' /home/pbarker/gcc/gcc-arm-none-eabi-10-2020-q4-major/bin/../lib/gcc/arm-none-eabi/10.2.1/../../../../arm-none-eabi/bin/ld: lib/libArduCopter_libs.a(liolib.c.0.o): in function `io_fclose': liolib.c:(.text.io_fclose+0xe): undefined reference to `apfs_fclose' /home/pbarker/gcc/gcc-arm-none-eabi-10-2020-q4-major/bin/../lib/gcc/arm-none-eabi/10.2.1/../../../../arm-none-eabi/bin/ld: lib/libArduCopter_libs.a(liolib.c.0.o): in function `io_open':
This commit is contained in:
parent
890c0844d0
commit
a5c248d7a4
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "AP_Filesystem.h"
|
||||
|
||||
#if AP_FILESYSTEM_FATFS_ENABLED || AP_FILESYSTEM_POSIX_ENABLED || AP_FILESYSTEM_ESP32_ENABLED
|
||||
#if AP_FILESYSTEM_FATFS_ENABLED || AP_FILESYSTEM_POSIX_ENABLED || AP_FILESYSTEM_ESP32_ENABLED || AP_FILESYSTEM_ROMFS_ENABLED
|
||||
|
||||
#include "posix_compat.h"
|
||||
#include <stdarg.h>
|
||||
|
|
Loading…
Reference in New Issue