mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- TactlitySDK updates fro TactilityFreeRtos - Enable auto-uploading of SDKs to the CDN when merging code
19 lines
667 B
C++
19 lines
667 B
C++
#include <private/elf_symbol.h>
|
|
#include <cstddef>
|
|
|
|
#include <symbols/stl.h>
|
|
|
|
#include <bits/functexcept.h>
|
|
|
|
const esp_elfsym stl_symbols[] = {
|
|
// Note: You have to use the mangled names here
|
|
{ "_ZSt17__throw_bad_allocv", (void*)&(std::__throw_bad_alloc) },
|
|
{ "_ZSt28__throw_bad_array_new_lengthv", (void*)&(std::__throw_bad_array_new_length) },
|
|
{ "_ZSt25__throw_bad_function_callv", (void*)&(std::__throw_bad_function_call) },
|
|
{ "_ZSt20__throw_length_errorPKc", (void*)&(std::__throw_length_error) },
|
|
{ "_ZSt19__throw_logic_errorPKc", (void*)&std::__throw_logic_error },
|
|
// { "", (void*)&(std::) },
|
|
// delimiter
|
|
ESP_ELFSYM_END
|
|
};
|