2022-10-19 03:57:24 -04:00
|
|
|
| Supported Targets | ESP32-C2 | ESP32-C3 | ESP32-H4 |
|
2022-06-23 03:48:18 -04:00
|
|
|
| ----------------- | -------- | -------- | -------- |
|
|
|
|
|
|
|
|
# Building and running
|
|
|
|
|
|
|
|
The main goal of this test is to check whether the compiler/linker generates non-empty sections `.eh_frame` and `.eh_frame_hdr`.
|
2022-10-19 03:57:24 -04:00
|
|
|
|
2022-06-23 03:48:18 -04:00
|
|
|
Thus, as soon as this example compiles we can considered it passed. However, it will also print the addresses of both sections on the UART.
|
|
|
|
|
|
|
|
In order to build and run the example, use the following commands:
|
|
|
|
|
|
|
|
```
|
2022-10-19 03:57:24 -04:00
|
|
|
idf.py set-target <esp32c3/esp32h4/esp32c2>
|
2022-06-23 03:48:18 -04:00
|
|
|
idf.py build
|
|
|
|
idf.py flash monitor
|
2022-10-19 03:57:24 -04:00
|
|
|
```
|