2019-04-28 03:38:23 -04:00
|
|
|
idf_component_register(SRCS "cxx_exception_stubs.cpp"
|
2019-09-17 06:07:47 -04:00
|
|
|
"cxx_guards.cpp"
|
|
|
|
# Make sure that pthread is in component list
|
|
|
|
PRIV_REQUIRES pthread)
|
2018-01-11 21:49:13 -05:00
|
|
|
|
2019-06-04 07:05:33 -04:00
|
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC stdc++ gcc)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u __cxa_guard_dummy")
|
2018-01-11 21:49:13 -05:00
|
|
|
|
2019-09-17 06:07:47 -04:00
|
|
|
# Force pthread to also appear later than stdc++ in link line
|
|
|
|
add_library(stdcpp_pthread INTERFACE)
|
|
|
|
idf_component_get_property(pthread pthread COMPONENT_LIB)
|
|
|
|
target_link_libraries(stdcpp_pthread INTERFACE stdc++ $<TARGET_FILE:${pthread}>)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC stdcpp_pthread)
|
|
|
|
|
2019-04-24 09:02:25 -04:00
|
|
|
if(NOT CONFIG_COMPILER_CXX_EXCEPTIONS)
|
2019-06-04 07:05:33 -04:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u __cxx_fatal_exception")
|
2018-01-11 21:49:13 -05:00
|
|
|
endif()
|