mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-04 11:00:58 +02:00
Previously suggested parser command pattern: xtensa-esp32-elf-(g?cc)|([gc]\+\+)|(clang) was incorrect for compilation of c++ files, as it is expanded by Eclipse into or between: xtensa-esp32-elf-(g?cc) ([gc]\+\+) (clang) Additional grouping around existing pattern solves that issue, and helps Eclipse to correctly find ESP-IDF includes. Merges https://github.com/espressif/esp-idf/pull/1005