Tribulations with an external Makefile driven library in ESP-IDF
Wasted time: 10 hours.
I wanted to include a library, which I maintain, inside an ESP-IDF project. There is a nasty set of interactions between idf_component_register()
and ExternalProject_Add()
which make this brutally fragile.
To find your .h
files in your project, you are going to have to have a INCLUDE_DIRS
in your idf_component_register()
. This is going to prevent you from using the download support built into ExternalProject_Add()
since the files won't exist when they are checked. – So you are going to put your library in as a git submodule.
I settled on this layout to balancing sane paths in the component's CMakeLists.txt file and polluting the library. (For purposes of this example, pretend my library is named tomlbed
, since it is.)
MyProject
components
tomlbed
CMakeLists.txt
tomlbed-upstream <<---- this is my submodule
This keeps the ESP-IDF stuff out of my library. Now for the results of 10 hours of googling and whacking about, the CMakeLists.txt file…
#
# We have to make the component know where its .h files are
# and where to find its .a file.
#
idf_component_register( INCLUDE_DIRS ${COMPONENT_DIR}/tomlbed-upstream/include )
target_link_libraries( ${COMPONENT_LIB} INTERFACE ${CMAKE_BINARY_DIR}/esp-idf/tomlbed/libtomlbed.a )
#
# Declare our external project.
# I believe the BUILD_BYPRODUCTS interacts with the
# 'target_link_libraries' above to force this to build.
#
ExternalProject_Add( tomlbed_build
PREFIX ${COMPONENT_DIR}
SOURCE_DIR ${COMPONENT_DIR}/tomlbed-upstream
DOWNLOAD_COMMAND ""
CONFIGURE_COMMAND ""
BUILD_IN_SOURCE 1
BUILD_COMMAND make CC=${CMAKE_C_COMPILER} CFLAGS=${CMAKE_C_FLAGS} AR=${CMAKE_AR} lib
INSTALL_COMMAND make CC=${CMAKE_C_COMPILER} CFLAGS=${CMAKE_C_FLAGS} AR=${CMAKE_AR} install libdir=${CMAKE_BINARY_DIR}/esp-idf/tomlbed includedir=${CMAKE_BINARY_DIR}/esp-idf/tomlbed
BUILD_BYPRODUCTS ${CMAKE_BINARY_DIR}/esp-idf/tomlbed/libtomlbed.a ${CMAKE_BINARY_DIR}/esp-idf/tomlbed/include
BUILD_ALWAYS 1
)
#
# Get that SOURCE_DIR variable hauled out so I can use it
#
ExternalProject_Get_Property( tomlbed_build SOURCE_DIR )
#
# Make our local 'build' directory get wiped on a Cmake 'clean'
#
set_directory_properties( PROPERTIES ADDITIONAL_CLEAN_FILES "${SOURCE_DIR}/build")
There's a lot in there that is finicky.
-
DOWNLOAD_COMMAND and CONFIGURE_COMMAND are disabled with the empty strings.
-
You must get the
CC
,CFLAGS
,AR
, and any other binutil type command and flag dredged out of CMake and sent down to your build command (and install if it could use them) or you will not be cross compiling. One symptom is your final link says it can't find your symbols, even though you can see them in the .a file and see the .a file passed in to the link. -
BUILD_BYPRODUCTS is telling CMake that you will produce these files. It lets you hook into the
idf_component_register()
and its target. -
COMPONENT_LIB
is the CMake target for the idf_component_register(). -
I am building in the source tree as far as ESP-IDF knows. The library has its own build tree support and uses that, then hauls its build products out into the ESP-IDF locations with its INSTALL_COMMAND.
-
I didn't find a place for a "clean" command. The
ADDITIONAL_CLEAN_FILES
lets me at least get my build directory wiped. Not a great solution. Be aware, there is also an obsolete variant of that name with "MAKE" in it, which silently fails since ninja ignores it. Don't copy and paste that one from other sources. -
If you do try to get the
idf_component_register
git download commands to work, be careful. It keeps getting into a detached head state for me, and I couldn't convince myself it wouldn't wipe out my work. For a while I was using DOWNLOAD_COMMAND, but it get trying to overwrite my work. Submodule seems safer since CMake will keep its fingers off.
Hey Jim,
Did that approach really work for you??
I am tryin to do the same with the C/C++ GNU Scientific Library (GSL) as an external library or component in an ESP-IDF project
Link GNU Scientific Library (GSL): https://www.gnu.org/software/gsl/